/* =================================================================
   Keck Feuerwerk – Stylesheet
   Aufbau:
   1. Schriften (selbst gehostet, DSGVO-konform)
   2. Design-Tokens (Custom Properties)
   3. Reset & Grundlagen
   4. Layout-Helfer
   5. Buttons & Komponenten
   6. Header / Navigation
   7. Hero
   8. Sektionen (Anlässe, Leistungen, Ganzjahr, Über, Kontakt)
   9. Footer
   10. Rechtstexte (Impressum / Datenschutz)
   11. Animationen & Reduced Motion
   12. Responsive Anpassungen
   ================================================================= */

/* ---------- 1. Schriften ---------- */
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../assets/fonts/cormorant-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../assets/fonts/cormorant-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- 2. Design-Tokens ---------- */
:root {
  /* Farben – tiefe Nachthimmel-Basis mit warmem Gold */
  --bg:            #0a0c12;
  --bg-soft:       #0f121b;
  --bg-elevated:   #141826;
  --surface:       rgba(255, 255, 255, 0.025);
  --line:          rgba(233, 224, 204, 0.10);
  --line-strong:   rgba(233, 224, 204, 0.18);

  --ink:           #f4efe4;
  --ink-soft:      #cfc8ba;
  --muted:         #968f80;

  --gold:          #eb5e12;
  --gold-bright:   #f8a24e;
  --gold-deep:     #bf430f;
  --ember:         #d93332;

  --grad-gold:     linear-gradient(135deg, #f8a24e 0%, #eb5e12 50%, #bf430f 100%);
  --grad-text:     linear-gradient(100deg, #fbc07a 0%, #f2892e 50%, #eb5e12 100%);

  /* Typografie */
  --font-display:  "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:     "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Maße */
  --container:     1180px;
  --container-narrow: 760px;
  --radius:        18px;
  --radius-sm:     12px;
  --radius-pill:   999px;

  --shadow:        0 24px 60px -20px rgba(0, 0, 0, 0.65);
  --shadow-soft:   0 12px 36px -16px rgba(0, 0, 0, 0.55);

  --header-h:      104px;
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- 3. Reset & Grundlagen ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

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

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.7;
  color: var(--ink-soft);
  background-color: var(--bg);
  background-image:
    radial-gradient(120% 90% at 50% -10%, rgba(235, 94, 18, 0.10) 0%, transparent 55%),
    radial-gradient(80% 60% at 85% 8%, rgba(217, 51, 50, 0.08) 0%, transparent 60%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: 0.005em;
}

p { text-wrap: pretty; }

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: rgba(235, 94, 18, 0.28);
  color: #fff;
}

/* Skip-Link für Screenreader / Tastaturnutzer */
.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  background: var(--gold);
  color: #1a1206;
  padding: 0.7rem 1.3rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  z-index: 1000;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- 4. Layout-Helfer ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.section {
  position: relative;
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--grad-gold);
}
.section-head.center .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--grad-gold);
}

.section-title {
  font-size: clamp(2rem, 1.4rem + 2.8vw, 3.25rem);
  margin-bottom: 1.1rem;
}

.section-lead {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem);
  color: var(--ink-soft);
}

.text-gold {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.divider {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

/* ---------- 5. Buttons & Komponenten ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1;
  padding: 1rem 1.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, #f9a43f 0%, #f3801f 55%, #ee6a14 100%);
  color: #1a1206;
  box-shadow: 0 10px 30px -10px rgba(235, 94, 18, 0.55);
}
.btn--primary:hover { box-shadow: 0 16px 40px -12px rgba(235, 94, 18, 0.7); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--gold);
  background: rgba(235, 94, 18, 0.06);
}

.btn .icon { width: 18px; height: 18px; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: var(--surface);
}
.tag .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--grad-gold);
  box-shadow: 0 0 10px 1px rgba(235, 94, 18, 0.7);
}

/* Karten-Raster */
.card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.1rem);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(235,94,18,0.45), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-soft);
}
.card:hover::after { opacity: 1; }

.card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: radial-gradient(120% 120% at 30% 20%, rgba(248,162,78,0.22), rgba(235,94,18,0.06));
  border: 1px solid var(--line-strong);
  color: var(--gold-bright);
  margin-bottom: 1.3rem;
}
.card__icon svg { width: 26px; height: 26px; }

.card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.55rem;
}
.card p { font-size: 0.98rem; color: var(--ink-soft); }

.grid {
  display: grid;
  gap: clamp(1.1rem, 2.5vw, 1.6rem);
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* ---------- 6. Header / Navigation ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 12, 18, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.brand__logo { width: auto; height: clamp(58px, 6.4vw, 76px); }
.footer__brand .brand__logo { height: 56px; }
.brand span small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-pill);
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav a:hover,
.nav a.active { color: var(--ink); }
.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0.9rem; right: 0.9rem; bottom: 0.35rem;
  height: 1.5px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav a:not(.btn):hover::after,
.nav a:not(.btn).active::after { transform: scaleX(1); }
.nav .btn { padding: 0.7rem 1.25rem; margin-left: 0.5rem; }
.nav a.btn--primary,
.nav a.btn--primary:hover,
.nav a.btn--primary.active { color: #1a1206; }

/* Burger */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  padding: 0;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  margin-inline: auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; left: 0; }
.nav-toggle span::after  { position: absolute; top:  6px; left: 0; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(80% 70% at 50% 30%, transparent 0%, rgba(10,12,18,0.35) 70%, var(--bg) 100%),
    linear-gradient(180deg, transparent 55%, var(--bg) 100%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero__inner { max-width: 760px; }

.hero h1 {
  font-size: clamp(2.7rem, 1.6rem + 5.2vw, 5.4rem);
  line-height: 1.02;
  margin: 1.4rem 0 1.3rem;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
}
.hero__lead {
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.4rem);
  color: var(--ink-soft);
  max-width: 580px;
  margin-bottom: 2.2rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2.2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta dt {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.hero__meta dd {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 0.4rem;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-cue .mouse {
  width: 24px; height: 38px;
  border: 1.5px solid var(--line-strong);
  border-radius: 14px;
  position: relative;
}
.scroll-cue .mouse::after {
  content: "";
  position: absolute;
  left: 50%; top: 7px;
  width: 3px; height: 7px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: wheel 1.8s var(--ease) infinite;
}
@keyframes wheel {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  70%, 100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* ---------- 8. Sektionen ---------- */
/* Anlässe – Karten mit großen Icons */
#anlaesse .card { text-align: left; }

/* Leistungen / Ablauf – nummerierte Schritte */
.steps { counter-reset: step; }
.step {
  display: flex;
  gap: 1.5rem;
  padding: 1.7rem 0;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__num {
  counter-increment: step;
  flex: none;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-width: 56px;
}
.step__num::before { content: "0" counter(step); }
.step h3 { font-size: 1.5rem; margin-bottom: 0.35rem; }
.step p { color: var(--ink-soft); max-width: 60ch; }

/* Feuerwerk das ganze Jahr – Feature-Band */
.feature {
  position: relative;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(235,94,18,0.14), transparent 55%),
    linear-gradient(180deg, var(--bg-elevated), var(--bg-soft));
  padding: clamp(2rem, 5vw, 3.75rem);
  overflow: hidden;
}
.feature__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.feature h2 {
  font-size: clamp(1.8rem, 1.3rem + 2.2vw, 2.8rem);
  margin-bottom: 1.1rem;
}
.feature p { color: var(--ink-soft); margin-bottom: 1rem; }
.feature .btn { margin-top: 1rem; }
.feature__aside {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
}
.feature__aside h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.checklist { list-style: none; padding: 0; display: grid; gap: 0.9rem; }
.checklist li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 0.97rem;
  color: var(--ink-soft);
}
.checklist svg {
  flex: none;
  width: 22px; height: 22px;
  color: var(--gold);
  margin-top: 1px;
}

/* Über uns */
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(90% 70% at 50% 0%, rgba(235,94,18,0.18), transparent 60%),
    linear-gradient(180deg, #161a28, #0d1019);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.portrait__badge {
  text-align: center;
  padding: 2rem;
}
.portrait__badge .seal {
  width: 96px; height: 96px;
  margin: 0 auto 1.2rem;
  color: var(--gold-bright);
}
.portrait__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
}
.portrait__badge span { font-size: 0.85rem; color: var(--muted); letter-spacing: 0.04em; }

.about__grid p { margin-bottom: 1.1rem; }
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

/* Kontakt */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}
.contact__card {
  background: linear-gradient(180deg, var(--bg-elevated), var(--bg-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.6rem);
}
.contact-list { list-style: none; padding: 0; display: grid; gap: 1.3rem; }
.contact-list a, .contact-list address {
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--ink);
  font-size: 1.05rem;
  transition: color 0.2s var(--ease);
}
.contact-list a:hover { color: var(--gold-bright); }
.contact-list .ic {
  flex: none;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--gold);
}
.contact-list .ic svg { width: 20px; height: 20px; }
.contact-list small {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.contact__cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}
.contact__cta h3 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.3rem); }

/* ---------- 9. Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer__brand .brand { margin-bottom: 1.1rem; }
.footer__brand p { font-size: 0.95rem; color: var(--muted); max-width: 38ch; }
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer ul { list-style: none; padding: 0; display: grid; gap: 0.7rem; }
.footer ul a, .footer address {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
}
.footer ul a:hover { color: var(--gold-bright); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}
.footer__bottom nav { display: flex; gap: 1.4rem; }
.footer__bottom nav a:hover { color: var(--ink); }

/* ---------- 10. Rechtstexte ---------- */
.legal {
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 8vw, 6rem);
}
.legal .container { max-width: var(--container-narrow); }
.legal h1 {
  font-size: clamp(2.2rem, 1.6rem + 2.8vw, 3.4rem);
  margin-bottom: 0.6rem;
}
.legal .lead { color: var(--muted); margin-bottom: 2.5rem; }
.legal h2 {
  font-size: 1.6rem;
  margin: 2.6rem 0 0.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.legal h3 { font-size: 1.2rem; margin: 1.6rem 0 0.5rem; color: var(--ink); }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 0.9rem; }
.legal ul { padding-left: 1.2rem; margin-bottom: 1rem; }
.legal a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--gold); }
.legal .back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-decoration: none;
}
.legal .back:hover { color: var(--gold-bright); }
.legal .note {
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 1.1rem 1.3rem;
  font-size: 0.9rem;
  color: var(--muted);
  margin: 1.5rem 0;
}

/* ---------- 11. Animationen & Reduced Motion ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

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

/* ---------- 12. Responsive ---------- */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .feature__grid,
  .about__grid,
  .contact__grid { grid-template-columns: 1fr; }
  .about__grid .portrait { max-width: 420px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --header-h: 86px; }

  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 1rem clamp(1.25rem, 5vw, 2.5rem) 1.6rem;
    background: rgba(10, 12, 18, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  }
  .nav.open { transform: none; opacity: 1; visibility: visible; }
  .nav a { padding: 0.85rem 0.6rem; font-size: 1.05rem; }
  .nav a:not(.btn)::after { display: none; }
  .nav .btn { margin: 0.6rem 0 0; padding: 0.95rem; }

  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .hero__meta { gap: 1.2rem 1.8rem; }
  .hero__meta dt { font-size: 1.7rem; }
  .step { flex-direction: column; gap: 0.4rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; }
}

@media (max-width: 420px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
}
