/* ==========================================================================
   Studio Sera — Creator Management
   Design-Sprache angelehnt an tesla.com: vollflächige Panels, zentrierte
   Typografie oben, Pill-Buttons unten, viel Weißraum, kein Zierrat.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Farben */
  --ink: #171a20;          /* Primärtext / dunkle Flächen */
  --ink-soft: #3e4045;
  --muted: #5c5e62;
  --paper: #ffffff;
  --paper-2: #f4f4f4;
  --line: rgba(23, 26, 32, 0.12);
  --line-light: rgba(255, 255, 255, 0.24);

  /* Buttons (Tesla-Logik: halbtransparent + Blur) */
  --btn-dark-bg: rgba(23, 26, 32, 0.8);
  --btn-dark-bg-hover: rgba(23, 26, 32, 1);
  --btn-light-bg: rgba(244, 244, 244, 0.65);
  --btn-light-bg-hover: rgba(255, 255, 255, 0.95);

  /* Maße */
  --header-h: 56px;
  --gutter: clamp(20px, 5vw, 48px);
  --content-max: 1200px;
  --btn-min: 265px;
  --radius-pill: 100px;
  --radius-soft: 6px;

  /* Bewegung */
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
  --dur: 0.45s;

  /* Grain-Overlay – liegt über allen Panel-Hintergründen */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   2. Reset / Basis
   -------------------------------------------------------------------------- */

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

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

body {
  margin: 0;
  font-family: "Montserrat", "Gotham SSm A", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

p { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

button { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
  border-radius: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: 8px; left: 50%;
  transform: translate(-50%, -200%);
  z-index: 200;
  padding: 10px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 13px;
  text-decoration: none;
  transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

/* --------------------------------------------------------------------------
   3. Header
   -------------------------------------------------------------------------- */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  color: var(--ink);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease),
              backdrop-filter 0.3s var(--ease);
}

/* Panels können den Header per data-Attribut auf hell/dunkel schalten */
.header[data-tone="light"] { color: #fff; }

.header.is-stuck {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  color: var(--ink);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55em;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  padding: 6px 4px;
}
.wordmark span:last-child { font-weight: 400; }

.nav { display: flex; gap: 2px; }

.nav a {
  display: inline-block;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-soft);
  transition: background-color 0.2s var(--ease);
}
.nav a:hover { background: rgba(0, 0, 0, 0.07); }
.header[data-tone="light"]:not(.is-stuck) .nav a:hover { background: rgba(255, 255, 255, 0.18); }
.nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: 5px; }

.header-right { display: flex; align-items: center; gap: 2px; }

.menu-btn,
.header-right .nav-link {
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  background: none;
  border: 0;
  border-radius: var(--radius-soft);
  cursor: pointer;
  transition: background-color 0.2s var(--ease);
}
.menu-btn:hover,
.header-right .nav-link:hover { background: rgba(0, 0, 0, 0.07); }
.header[data-tone="light"]:not(.is-stuck) .menu-btn:hover,
.header[data-tone="light"]:not(.is-stuck) .header-right .nav-link:hover { background: rgba(255, 255, 255, 0.18); }

@media (max-width: 480px) {
  .header-right .nav-link { display: none; }
}

@media (max-width: 900px) {
  .nav { display: none; }
}

/* --------------------------------------------------------------------------
   4. Slide-in-Menü
   -------------------------------------------------------------------------- */

.scrim {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.scrim.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0;
  z-index: 120;
  width: min(360px, 88vw);
  height: 100%;
  padding: 18px 14px 40px;
  background: var(--paper);
  transform: translateX(102%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.drawer.is-open { transform: translateX(0); }

.drawer-close {
  align-self: flex-end;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  background: none;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s var(--ease);
}
.drawer-close:hover { background: rgba(0, 0, 0, 0.07); }

.drawer-nav { margin-top: 12px; }
.drawer-nav a {
  display: block;
  padding: 11px 14px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-soft);
  transition: background-color 0.2s var(--ease);
}
.drawer-nav a:hover { background: var(--paper-2); }

.drawer-meta {
  margin-top: auto;
  padding: 24px 14px 0;
  font-size: 12px;
  color: var(--muted);
}
.drawer-meta a { color: var(--muted); }

/* --------------------------------------------------------------------------
   5. Panels (vollflächige Sektionen)
   -------------------------------------------------------------------------- */

.snap { scroll-snap-type: y proximity; }

.panel {
  position: relative;
  min-height: 100svh;
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: start;
  padding: calc(var(--header-h) + 10svh) var(--gutter) 6svh;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--paper-2);
  background-size: cover;
  background-position: center;
}

/* Grain über jedem Panel */
.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--grain);
  background-size: 160px 160px;
  opacity: 0.16;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.panel--dark::after { mix-blend-mode: overlay; opacity: 0.22; }

.panel--dark { color: #fff; }
.panel--dark .panel-sub { color: rgba(255, 255, 255, 0.86); }

.panel-head { max-width: 780px; margin: 0 auto; }

.panel-eyebrow {
  display: block;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.7;
}

.panel-title {
  font-size: clamp(34px, 5.2vw, 54px);
  font-weight: 500;
}

.panel-sub {
  max-width: 620px;
  margin: 12px auto 0;
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--ink-soft);
}
.panel-sub a { text-underline-offset: 3px; }

.panel-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

/* Hintergründe der einzelnen Panels – alle sechs mit Foto.
   Der Verlauf liegt immer ÜBER dem Bild (erste Ebene) und hält den Text lesbar:
   dunkles Panel = schwarzer Scrim und weiße Schrift, helles Panel = weißer Scrim
   und dunkle Schrift. Wird ein Bild ausgetauscht, muss der Kontrast in der
   Textzone neu geprüft werden – Ziel ist mindestens 4,5:1 (WCAG AA). */

.panel--hero {
  background-color: #0c0d10;
  background-image:
    linear-gradient(180deg, rgba(8, 9, 11, 0.62) 0%, rgba(8, 9, 11, 0.12) 42%, rgba(8, 9, 11, 0.72) 100%),
    url("../img/hero.webp");
}

/* Hochformat: das Ringlicht sitzt rechts der Mitte und würde beim
   `cover`-Zuschnitt aus dem Bild fallen. */
@media (max-width: 700px) {
  .panel--hero { background-position: 66% center; }
}

.panel--talents {
  background-color: #ece7e1;
  background-image:
    linear-gradient(180deg, rgba(252, 250, 247, 0.55) 0%, rgba(252, 250, 247, 0.18) 45%, rgba(252, 250, 247, 0.66) 100%),
    url("../img/talents.webp");
}

/* Hochformat: Vase und Hocker stehen an den Bildrändern, der `cover`-Zuschnitt
   würde beide abschneiden. Der Versatz hält den Hocker im Bild. */
@media (max-width: 700px) {
  .panel--talents { background-position: 72% center; }
}

/* Die Pendelleuchte ist nahezu reinweiß und sitzt genau hinter der Headline.
   Der Verlauf bleibt deshalb bis 40 % kräftig (gemessen nötig: 55 %) und öffnet
   sich erst darunter, damit Tisch und Stühle ihre Zeichnung behalten. */
.panel--deals {
  background-color: #14161a;
  background-image:
    linear-gradient(180deg,
      rgba(8, 9, 11, 0.74) 0%,
      rgba(8, 9, 11, 0.64) 40%,
      rgba(8, 9, 11, 0.24) 60%,
      rgba(8, 9, 11, 0.74) 100%),
    url("../img/kooperationen.webp");
}

/* Hochformat: Tisch und Pendelleuchte sitzen links der Mitte. */
@media (max-width: 700px) {
  .panel--deals { background-position: 38% center; }
}

.panel--legal {
  background-color: #f1f2f4;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.2) 45%, rgba(255, 255, 255, 0.68) 100%),
    url("../img/recht.webp");
}

.panel--tax {
  background-color: #101215;
  background-image:
    linear-gradient(180deg, rgba(8, 9, 11, 0.58) 0%, rgba(8, 9, 11, 0.12) 42%, rgba(8, 9, 11, 0.7) 100%),
    url("../img/steuern.webp");
}

.panel--brands {
  background-color: #efe9e3;
  background-image:
    linear-gradient(180deg, rgba(252, 250, 247, 0.5) 0%, rgba(252, 250, 247, 0.16) 45%, rgba(252, 250, 247, 0.6) 100%),
    url("../img/marken.webp");
}

.panel--page {
  min-height: auto;
  padding-block: calc(var(--header-h) + 12svh) 10svh;
  grid-template-rows: auto;
  scroll-snap-align: none;
}

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */

.btn-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  width: 100%;
  max-width: 560px;
}

.btn {
  flex: 1 1 var(--btn-min);
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease),
              transform 0.2s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--btn-dark-bg); color: #fff; }
.btn--primary:hover { background: var(--btn-dark-bg-hover); }

.btn--ghost { background: var(--btn-light-bg); color: var(--ink); }
.btn--ghost:hover { background: var(--btn-light-bg-hover); }

/* Auf dunklen Panels drehen sich die Rollen um */
.panel--dark .btn--primary { background: rgba(244, 244, 244, 0.92); color: var(--ink); }
.panel--dark .btn--primary:hover { background: #fff; }
.panel--dark .btn--ghost { background: rgba(0, 0, 0, 0.34); color: #fff; }
.panel--dark .btn--ghost:hover { background: rgba(0, 0, 0, 0.6); }

.btn--wide { flex: 0 1 320px; }

@media (max-width: 600px) {
  .btn-row { flex-direction: column; max-width: 320px; }
  .btn { flex: 1 1 auto; width: 100%; }
}

/* Scroll-Hinweis */
.scroll-cue {
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  opacity: 0.75;
  animation: cue 2.4s var(--ease) infinite;
}
.scroll-cue:hover { opacity: 1; }

@keyframes cue {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* --------------------------------------------------------------------------
   7. Inhaltsbausteine
   -------------------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.wrap--narrow { max-width: 760px; }

.section {
  padding: clamp(64px, 10vw, 120px) 0;
  border-top: 1px solid var(--line);
}
.section--flush { border-top: 0; }
.section--tint { background: var(--paper-2); border-top: 0; }

.section-head { max-width: 720px; margin: 0 auto clamp(36px, 5vw, 64px); text-align: center; }
.section-title { font-size: clamp(26px, 3.4vw, 38px); }
.section-lead { margin-top: 14px; color: var(--muted); font-size: 16px; }

/* Kacheln */
.grid {
  display: grid;
  gap: clamp(16px, 2.4vw, 28px);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Vier gleichwertige Karten: auf breiten Schirmen eine Reihe, sonst zwei mal zwei –
   sonst bliebe die vierte Karte allein in der letzten Reihe stehen. */
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
@media (min-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  padding: clamp(24px, 3vw, 36px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.card:hover { border-color: rgba(23, 26, 32, 0.34); transform: translateY(-2px); }
.card-index {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--muted);
}
.card-title { margin-top: 14px; font-size: 20px; }
.card-text { margin-top: 10px; color: var(--muted); font-size: 14.5px; }

.ticks { margin-top: 18px; display: grid; gap: 9px; }
.ticks li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--ink-soft);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 9px; height: 5px;
  border-left: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
  opacity: 0.55;
}

/* Kennzahlen */
.stats {
  display: grid;
  gap: clamp(20px, 4vw, 48px);
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  text-align: center;
}
.stat-value {
  font-size: clamp(32px, 4.6vw, 50px);
  font-weight: 500;
  letter-spacing: -0.03em;
}
.stat-label {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Kundenstimme – ruhiger Block ohne Anführungsgrafik, damit das Zitat
   selbst trägt und nicht die Dekoration. */
.quote {
  max-width: 760px;
  margin: clamp(40px, 6vw, 64px) auto 0;
  text-align: center;
}

.quote blockquote {
  margin: 0;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.62;
  color: var(--ink);
}

.quote figcaption {
  margin-top: 22px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Ablauf / Prozess */
.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step::before {
  content: "0" counter(step);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--muted);
  padding-top: 4px;
}
.step-title { font-size: 19px; }
.step-text { margin-top: 8px; color: var(--muted); font-size: 14.5px; max-width: 62ch; }

@media (max-width: 560px) {
  .step { grid-template-columns: 1fr; gap: 8px; }
}

/* Akkordeon */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  background: none;
  border: 0;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
.acc-icon {
  flex: none;
  width: 14px; height: 14px;
  position: relative;
  opacity: 0.6;
}
.acc-icon::before,
.acc-icon::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}
.acc-icon::after { transform: rotate(90deg); }
.acc-trigger[aria-expanded="true"] .acc-icon::after { transform: rotate(0deg); }

.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.acc-panel[data-open="true"] { grid-template-rows: 1fr; }
.acc-panel > div { overflow: hidden; }
.acc-panel p {
  padding-bottom: 22px;
  color: var(--muted);
  font-size: 15px;
  max-width: 72ch;
}

/* Prosa (Impressum, Datenschutz, Leistungsdetails) */
.prose h2 { margin-top: 44px; font-size: 22px; }
.prose h3 { margin-top: 28px; font-size: 17px; }
.prose p, .prose li { margin-top: 12px; color: var(--ink-soft); font-size: 15px; line-height: 1.68; }
.prose ul { margin-top: 12px; display: grid; gap: 8px; padding-left: 20px; list-style: disc; }
.prose a { color: var(--ink); }
.prose .note {
  margin-top: 22px;
  padding: 18px 20px;
  background: var(--paper-2);
  border-left: 2px solid var(--ink);
  border-radius: 0 var(--radius-soft) var(--radius-soft) 0;
  font-size: 14px;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   8. Formular
   -------------------------------------------------------------------------- */

.form { display: grid; gap: 20px; }

.field { display: grid; gap: 7px; }
.field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; }

.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23171a20' stroke-width='1.4' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(23, 26, 32, 0.08);
}
.field-error {
  font-size: 12.5px;
  color: #b3261e;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  min-height: 0;
}
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea { border-color: #b3261e; }

.form-row {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  font-size: 13.5px;
  color: var(--muted);
}
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--ink); }

.form-note { font-size: 12.5px; color: var(--muted); }

/* Spam-Köder: aus dem Blickfeld, aber nicht display:none – manche Bots
   ignorieren ausgeblendete Felder. Für Screenreader per aria-hidden weg. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  padding: 16px 18px;
  border-radius: var(--radius-soft);
  background: var(--paper-2);
  font-size: 14.5px;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-ok { background: #eef3ee; box-shadow: inset 2px 0 0 #2e7d32; }
.form-status.is-error { background: #fbeeed; box-shadow: inset 2px 0 0 #b3261e; }
.form-status a { color: inherit; }

.btn[disabled] { opacity: 0.55; pointer-events: none; }

/* --------------------------------------------------------------------------
   9. Footer
   -------------------------------------------------------------------------- */

.footer {
  padding: 26px var(--gutter) 34px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 26px;
  font-size: 12px;
  color: var(--muted);
}
.footer-inner a { text-decoration: none; }
.footer-inner a:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer-legal { flex-basis: 100%; text-align: center; margin-top: 4px; }

/* --------------------------------------------------------------------------
   10. Reveal-Animation
   -------------------------------------------------------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .snap { scroll-snap-type: none; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
