/* ============================================================
   autoflow.ki — Landingpage  |  "Forest & Brass" Dark-Enterprise
   Design-Spec: ./design.md
   ============================================================ */

/* ---------- Fonts (lokal, kein CDN) ---------- */
@font-face {
  font-family: "Anton";
  src: url("./fonts/Anton-Regular.woff2") format("woff2"),
       url("./fonts/Anton-Regular.ttf") format("truetype");
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("./fonts/Inter-Variable.woff2") format("woff2"),
       url("./fonts/Inter-Variable.ttf") format("truetype");
  font-weight: 100 900; font-display: swap;
}
@font-face {
  font-family: "Caveat";
  src: url("./fonts/Caveat-VariableFont_wght.woff2") format("woff2"),
       url("./fonts/Caveat-VariableFont_wght.ttf") format("truetype");
  font-weight: 400 700; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --bg: #12160F;
  --bg-2: #171D15;
  --surface: #1C2620;
  --surface-2: #232E26;
  --forest: #233028;
  --brass: #C99A3A;
  --brass-bright: #E0B968;
  --cream: #EEE9DD;
  --body: #C3C8BC;
  --muted: #8B917F;
  --line: rgba(238, 233, 221, 0.10);
  --sage: #8A9A6B;

  --container: 1200px;
  --radius-card: 20px;
  --shadow-card: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 12px 40px -8px rgba(201, 154, 58, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}
.section { padding-block: clamp(4.5rem, 10vw, 8rem); position: relative; }
.section--alt { background: var(--bg-2); }
.section__head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brass);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--brass);
  display: inline-block; border-radius: 2px;
}
.center .eyebrow { justify-content: center; }

h1, h2, h3 { color: var(--cream); }
.display {
  font-family: "Anton", "Inter", sans-serif; font-weight: 400;
  text-transform: uppercase; line-height: 0.98; letter-spacing: -0.01em;
}
.h1 { font-size: clamp(2.75rem, 6vw, 5.5rem); }
.h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
.script { font-family: "Caveat", cursive; color: var(--brass); text-transform: none; font-weight: 700; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--body); }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 0.85rem; --pad-x: 1.6rem;
  position: relative; display: inline-flex; align-items: center; gap: 0.5rem;
  padding: var(--pad-y) var(--pad-x); border-radius: 999px;
  font-weight: 600; font-size: 0.98rem; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
              border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  overflow: hidden; white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--brass-bright); outline-offset: 3px; }
.btn--primary { background: var(--brass); color: #1a1408; }
.btn--primary:hover { background: var(--brass-bright); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
/* Shine sweep */
.btn--primary::after {
  content: ""; position: absolute; top: 0; left: -75%; width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg); animation: shine 5.5s ease-in-out infinite;
}
.btn--primary:hover::after { animation-duration: 1.2s; }
@keyframes shine { 0%, 60% { left: -75%; } 85%, 100% { left: 130%; } }

.btn--ghost { background: transparent; border-color: var(--line); color: var(--cream); }
.btn--ghost:hover { border-color: var(--brass); background: rgba(201, 154, 58, 0.08); transform: translateY(-2px); }
.btn--lg { --pad-y: 1.05rem; --pad-x: 2rem; font-size: 1.05rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Scroll progress ---------- */
.progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--brass), var(--brass-bright));
  z-index: 200; transition: width 0.1s linear;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(18, 22, 15, 0.72); backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding-block: 1rem; }
.brand { display: flex; align-items: center; gap: 0.6rem; font-weight: 700; color: var(--cream); font-size: 1.05rem; }
.brand__dot { width: 12px; height: 12px; border-radius: 50%; background: var(--brass); box-shadow: 0 0 14px var(--brass); }
.brand__dot { animation: pulse 3s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 8px var(--brass); } 50% { box-shadow: 0 0 20px var(--brass); } }
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a.link { color: var(--body); font-size: 0.95rem; transition: color 0.2s; }
.nav__links a.link:hover { color: var(--cream); }
.nav__cta { display: flex; align-items: center; gap: 1rem; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(4rem, 9vw, 7rem); padding-bottom: clamp(4rem, 9vw, 7rem); overflow: hidden; }
.hero__aurora {
  position: absolute; inset: -20% -10% auto -10%; height: 140%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(38% 42% at 20% 25%, rgba(201, 154, 58, 0.22), transparent 70%),
    radial-gradient(34% 40% at 78% 20%, rgba(35, 48, 40, 0.9), transparent 70%),
    radial-gradient(40% 46% at 65% 75%, rgba(138, 154, 107, 0.14), transparent 70%);
  filter: blur(20px); animation: drift 22s ease-in-out infinite alternate;
}
@keyframes drift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-3%, 2%, 0) scale(1.08); }
  100% { transform: translate3d(3%, -2%, 0) scale(1.04); }
}
.hero__grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(75% 60% at 50% 40%, #000 20%, transparent 85%);
  -webkit-mask-image: radial-gradient(75% 60% at 50% 40%, #000 20%, transparent 85%);
}
.hero__inner { position: relative; z-index: 1; max-width: 860px; }
.hero .pill {
  display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.4rem 0.9rem;
  border: 1px solid var(--line); border-radius: 999px; font-size: 0.82rem; color: var(--body);
  margin-bottom: 1.75rem; background: rgba(255, 255, 255, 0.02);
}
.hero .pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 10px var(--sage); }
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .script { display: inline-block; font-size: 1.15em; line-height: 0.8; }
.hero__sub { font-size: clamp(1.1rem, 1.8vw, 1.4rem); color: var(--body); max-width: 640px; margin-bottom: 2.25rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero__note { font-size: 0.9rem; color: var(--muted); margin-top: 1.25rem; }

/* ---------- Problem → Lösung ---------- */
.split { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: stretch; }
.split__col { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-card); padding: clamp(1.5rem, 3vw, 2.25rem); }
.split__col h3 { font-size: 1.15rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem; }
.split__col ul { list-style: none; display: grid; gap: 0.9rem; }
.split__col li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 1rem; }
.split__col li .mk { flex: none; margin-top: 2px; color: var(--muted); }
.split--chaos li .mk { color: #9a5b4b; }
.split--flow { border-color: rgba(201, 154, 58, 0.3); }
.split--flow li .mk { color: var(--brass); }
.split__arrow { display: flex; align-items: center; color: var(--brass); font-size: 2rem; }

/* ---------- Angebote (Anchoring) ---------- */
.offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.offer {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: 2rem 1.75rem; display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.offer:hover { transform: translateY(-6px); background: var(--surface-2); border-color: rgba(201, 154, 58, 0.35); box-shadow: var(--shadow-card); }
.offer--featured { border-color: var(--brass); background: linear-gradient(180deg, rgba(201, 154, 58, 0.08), var(--surface) 55%); box-shadow: 0 0 0 1px rgba(201, 154, 58, 0.25), var(--shadow-card); }
.offer__badge { position: absolute; top: -0.75rem; left: 1.75rem; background: var(--brass); color: #1a1408; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 0.3rem 0.75rem; border-radius: 999px; }
.offer__tag { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.75rem; }
.offer h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.offer__desc { font-size: 0.98rem; color: var(--body); margin-bottom: 1.5rem; }
.offer__price { font-family: "Anton", sans-serif; color: var(--brass); font-size: 2.6rem; line-height: 1; letter-spacing: 0; margin-bottom: 0.25rem; }
.offer__price small { font-family: "Inter", sans-serif; font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.offer__price .cur { font-size: 1.4rem; vertical-align: 0.35em; margin-right: 0.1rem; }
.offer__feats { list-style: none; display: grid; gap: 0.7rem; margin: 1.5rem 0; }
.offer__feats li { display: flex; gap: 0.6rem; font-size: 0.95rem; align-items: flex-start; }
.offer__feats .ck { flex: none; color: var(--brass); margin-top: 3px; }
.offer .btn { margin-top: auto; }

/* ---------- Prozess ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 2rem 1.75rem; }
.step__no { font-family: "Anton", sans-serif; font-size: 2.4rem; color: rgba(201, 154, 58, 0.35); line-height: 1; margin-bottom: 1rem; }
.step h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.step p { font-size: 0.96rem; }

/* ---------- Training ---------- */
.training { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.training__card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-card); padding: clamp(1.75rem, 3vw, 2.5rem); }
.training__card ul { list-style: none; display: grid; gap: 0.85rem; margin: 1.5rem 0; }
.training__card li { display: flex; gap: 0.6rem; font-size: 1rem; }
.training__card li .ck { color: var(--brass); flex: none; margin-top: 3px; }
.training__price { font-family: "Anton", sans-serif; color: var(--brass); font-size: 2.2rem; }
.training__price small { font-family: "Inter"; font-size: 0.85rem; color: var(--muted); font-weight: 500; }

/* ---------- Referenzen ---------- */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.case { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-card); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.case:hover { transform: translateY(-6px); border-color: rgba(201, 154, 58, 0.35); box-shadow: var(--shadow-card); }

/* App-/Browser-Frame für Screenshot */
.case__shot { position: relative; aspect-ratio: 16 / 10; background: var(--bg-2); border-bottom: 1px solid var(--line); overflow: hidden; }
.case__bar { position: absolute; top: 0; left: 0; right: 0; height: 30px; display: flex; align-items: center; gap: 6px; padding: 0 12px; background: rgba(18,22,15,0.85); backdrop-filter: blur(4px); z-index: 2; border-bottom: 1px solid var(--line); }
.case__bar span { width: 9px; height: 9px; border-radius: 50%; background: rgba(238,233,221,0.18); }
.case__bar span:first-child { background: rgba(201,154,58,0.55); }
.case__img { position: absolute; inset: 30px 0 0 0; width: 100%; height: calc(100% - 30px); object-fit: cover; object-position: top center; transition: transform 0.6s var(--ease); }
.case:hover .case__img { transform: scale(1.04); }
/* Platzhalter, solange kein Screenshot vorhanden (img[data-empty]) */
.case__ph { position: absolute; inset: 30px 0 0 0; display: grid; place-items: center; gap: 0.5rem; text-align: center; color: var(--muted); background:
  repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0 12px, transparent 12px 24px), var(--surface); }
.case__ph .ph-ic { font-size: 1.6rem; opacity: 0.6; }
.case__ph small { font-size: 0.72rem; letter-spacing: 0.04em; }

.case__body { padding: 1.5rem 1.5rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.case__client { font-size: 0.82rem; color: var(--brass); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.6rem; }
.case h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.case p { font-size: 0.95rem; }
.case__chips { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.case__chips span { font-size: 0.72rem; color: var(--body); border: 1px solid var(--line); border-radius: 999px; padding: 0.25rem 0.65rem; }

/* ---------- Logo-Wall ---------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; gap: 3.5rem; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee img { height: 30px; width: auto; opacity: 0.55; filter: grayscale(0.3); transition: opacity 0.3s, filter 0.3s; }
.marquee img:hover { opacity: 1; filter: grayscale(0); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Über Fab ---------- */
.about { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.about__portrait { position: relative; aspect-ratio: 1; border-radius: var(--radius-card); border: 1px solid var(--line); background: radial-gradient(circle at 50% 30%, var(--surface-2), var(--surface)); display: grid; place-items: center; overflow: hidden; }
.about__portrait .mono { font-family: "Anton", sans-serif; font-size: clamp(3rem, 8vw, 5rem); color: var(--brass); opacity: 0.85; }
.about__portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; transition: transform 0.6s var(--ease); }
.about__portrait:hover img { transform: scale(1.04); }
.about p + p { margin-top: 1.1rem; }
.about .sig { font-family: "Caveat"; color: var(--brass); font-size: 1.8rem; margin-top: 1rem; }

/* ---------- Final CTA ---------- */
.cta-final { position: relative; overflow: hidden; }
.cta-final .container { position: relative; z-index: 1; text-align: center; }
.cta-final__glow { position: absolute; inset: 0; z-index: 0; background: radial-gradient(50% 70% at 50% 20%, rgba(201, 154, 58, 0.18), transparent 70%); }
.cta-final h2 { margin-bottom: 1.25rem; }
.cta-final .lead { max-width: 560px; margin: 0 auto 2.25rem; }
.cta-final .hero__actions { justify-content: center; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding-block: 3.5rem 2.5rem; }
.footer__grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; margin-bottom: 2.5rem; }
.footer__col h4 { color: var(--cream); font-size: 0.95rem; margin-bottom: 0.9rem; }
.footer__col a, .footer__col p { display: block; font-size: 0.92rem; color: var(--muted); margin-bottom: 0.5rem; transition: color 0.2s; }
.footer__col a:hover { color: var(--brass); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: 0.85rem; color: var(--muted); }

/* ---------- Reveal animation ---------- */
/* Fallback: blendet Inhalt auch ohne JS ein (Adblocker, Script-Fehler) */
@keyframes reveal-fallback { to { opacity: 1; transform: none; } }
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  animation: reveal-fallback 0.7s var(--ease) 2.2s forwards;
}
.reveal.in { opacity: 1; transform: none; animation: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .offers, .steps, .cases { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split__arrow { transform: rotate(90deg); justify-content: center; }
  .training, .about { grid-template-columns: 1fr; }
  .nav__links { display: none; }
}
@media (max-width: 520px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

/* ---------- Brand-Logo (Bild statt Text) ---------- */
.brand__logo { height: 34px; width: auto; display: block; }
.footer .brand__logo { height: 30px; }
@media (max-width: 520px) { .brand__logo { height: 28px; } }

/* ---------- Hero-Visual (kie.ai) ---------- */
.hero__visual {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-size: cover; background-position: center right;
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.35) 30%, #000 65%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.35) 30%, #000 65%);
  will-change: transform;
}
.hero__visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,22,15,0.25), transparent 30%, transparent 70%, var(--bg));
}

/* ---------- Sektions-Illustration (kie.ai) ---------- */
.illus {
  border-radius: var(--radius-card); border: 1px solid var(--line);
  overflow: hidden; margin-bottom: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-card); position: relative;
}
.illus img { width: 100%; height: clamp(160px, 24vw, 260px); object-fit: cover; display: block; }
.illus::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(18,22,15,0.55));
}
.training__card .illus { margin: -0.25rem -0.25rem 1.25rem; box-shadow: none; }
.training__card .illus img { height: 150px; }

/* ---------- Cursor-Glow (nur Desktop / feiner Pointer) ---------- */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 520px; height: 520px;
  margin: -260px 0 0 -260px; pointer-events: none; z-index: 1;
  background: radial-gradient(circle, rgba(201, 154, 58, 0.07), transparent 65%);
  opacity: 0; transition: opacity 0.5s ease;
  will-change: transform;
}
body.glow-on .cursor-glow { opacity: 1; }
@media (pointer: coarse) { .cursor-glow { display: none; } }

/* ---------- 3D-Tilt (JS setzt --rx/--ry) ---------- */
.tilt {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--lift, 0px));
  transition: transform 0.35s var(--ease), border-color 0.3s var(--ease),
              background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.tilt:hover { --lift: -6px; }
.offer.tilt:hover, .case.tilt:hover, .step.tilt:hover { transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-6px); }

/* Glanzpunkt, der dem Cursor über der Karte folgt */
.tilt::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(201, 154, 58, 0.08), transparent 55%);
  opacity: 0; transition: opacity 0.35s var(--ease); z-index: 0;
}
.tilt:hover::before { opacity: 1; }
.tilt > * { position: relative; z-index: 1; }

/* ---------- Magnetische Buttons (JS setzt translate) ---------- */
.btn { will-change: transform; }

/* ---------- Legal-Seiten (Impressum / Datenschutz) ---------- */
.legal { max-width: 760px; }
.legal h1 { margin-bottom: 2rem; }
.legal h2 { font-size: 1.15rem; margin: 2.25rem 0 0.75rem; color: var(--cream); }
.legal p { margin-bottom: 0.9rem; }
.legal a { color: var(--brass); }
.legal a:hover { color: var(--brass-bright); }
.legal em { color: var(--sage); font-style: normal; background: rgba(138,154,107,0.1); border-radius: 6px; padding: 0.1rem 0.4rem; }
.footer__bottom a:hover { color: var(--brass); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
