/* simonjans.de · Stylesheet */

/* Fonts (self-hosted, variable) */
@font-face {
  font-family: "Lora";
  src: url("../../fonts/Lora.ttf") format("truetype-variations"),
       url("../../fonts/Lora.ttf") format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("../../fonts/Lora-Italic.ttf") format("truetype-variations"),
       url("../../fonts/Lora-Italic.ttf") format("truetype");
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../../fonts/Jost.ttf") format("truetype-variations"),
       url("../../fonts/Jost.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --charcoal:   #1A1A1A;
  --sage:       #5B8C6A;
  --off-white:  #F7F7F5;
  --off-white-2:#F0F0ED;
  --sage-mid:   rgba(91,140,106,0.5);
  --sage-dim:   rgba(91,140,106,0.12);
  --sage-line:  rgba(91,140,106,0.25);
  --line:       rgba(26,26,26,0.09);
  --line-mid:   rgba(26,26,26,0.15);
  --muted:      rgba(26,26,26,0.38);
  --muted-2:    rgba(26,26,26,0.55);
  --muted-3:    rgba(26,26,26,0.72);

  --serif: "Lora", Georgia, "Times New Roman", serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  --max:   1100px;
  --pad-x: clamp(1.5rem, 7vw, 6rem);
  --pad-y: clamp(5rem, 10vh, 8rem);
  --nav-h: 4.5rem;
  --hair:  0.5px solid var(--line);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  scrollbar-width: thin;
  scrollbar-color: var(--sage-mid) transparent;
  -webkit-text-size-adjust: 100%;
}
::-webkit-scrollbar { width: 3px; height: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(91,140,106,0.5); }

body {
  margin: 0;
  background: var(--off-white);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--sage-dim); color: var(--charcoal); }

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

a { color: inherit; text-decoration-thickness: 0.5px; text-underline-offset: 0.2em; }
a:hover { color: var(--sage); }

:focus-visible {
  outline: 1.5px solid var(--sage);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--charcoal);
  color: var(--off-white);
  font-size: 0.8rem;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; color: var(--off-white); }

.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;
}

/* Layout */
.wrap {
  max-width: calc(var(--max) + 2 * var(--pad-x));
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section {
  padding-block: var(--pad-y);
  border-top: var(--hair);
}
.section--tint { background: var(--off-white-2); }

/* Typography */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -0.012em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.05rem, 5.4vw, 4.25rem); }
.nowrap { white-space: nowrap; }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: 1.4rem; line-height: 1.3; }

h1 em, h2 em, h3 em, .prose em, .accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--sage);
}

p { margin: 0 0 1.25rem; }

.overline {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.7rem;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 1.75rem;
}
.overline--muted { color: var(--muted-2); }

.lead {
  font-size: clamp(1.1rem, 1.45vw, 1.25rem);
  line-height: 1.65;
  color: var(--muted-3);
  max-width: 44ch;
}

.prose { max-width: 70ch; color: var(--muted-3); }
.prose p { margin-bottom: 1.5rem; }
.prose strong { font-weight: 500; color: var(--charcoal); }

/* Buttons & Links */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.05rem 1.65rem;
  background: var(--charcoal);
  color: var(--off-white);
  border: 0.5px solid var(--charcoal);
  border-radius: 2px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}
.btn:hover { background: var(--sage); border-color: var(--sage); color: var(--off-white); }
.btn svg { width: 0.9rem; height: 0.9rem; transition: transform 0.35s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn--ghost { background: transparent; color: var(--charcoal); border-color: var(--line-mid); }
.btn--ghost:hover { background: transparent; color: var(--sage); border-color: var(--sage-line); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--charcoal);
}
.text-link svg { width: 0.8rem; height: 0.8rem; transition: transform 0.35s ease; }
.text-link:hover { color: var(--sage); }
.text-link:hover svg { transform: translate(2px, -2px); }

.icon-links { display: flex; align-items: center; gap: 0.5rem; list-style: none; margin: 0; padding: 0; }
.icon-link {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--muted-2);
  border: 0.5px solid var(--line-mid);
  border-radius: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.icon-link svg { width: 1rem; height: 1rem; fill: currentColor; }
.icon-link:hover { color: var(--sage); border-color: var(--sage-line); }

/* Navigation */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(247,247,245,0.90);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: var(--hair);
}
.nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__brand {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: -0.005em;
  text-decoration: none;
  color: var(--charcoal);
  white-space: nowrap;
}
.nav__brand span { color: var(--sage); font-style: italic; }

.nav__dots { display: flex; align-items: center; gap: 0.15rem; list-style: none; margin: 0; padding: 0; }
.nav__dot {
  display: block;
  padding: 0.9rem 0.3rem;
}
.nav__dot::before {
  content: "";
  display: block;
  width: 1.4rem;
  height: 1.5px;
  background: var(--line-mid);
  transition: width 0.4s ease, background-color 0.4s ease;
}
.nav__dot:hover::before { background: var(--sage-mid); }
.nav__dot.is-active::before { width: 2.4rem; background: var(--sage); }

.nav__links { display: flex; align-items: center; gap: 1.75rem; }
.nav__link {
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted-3);
}
.nav__link[aria-current="page"] { color: var(--sage); }
.nav .btn { padding: 0.8rem 1.15rem; font-size: 0.68rem; }

@media (max-width: 900px) { .nav__dots { display: none; } }
@media (max-width: 520px) {
  .nav__links { gap: 1rem; }
  .nav__link { display: none; }
  .nav .btn { padding: 0.75rem 0.85rem; letter-spacing: 0.08em; font-size: 0.62rem; white-space: nowrap; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 6rem;
}
.hero { overflow: hidden; }
.hero__grid {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero__text { max-width: min(34rem, 50%); }
.hero h1 { margin-bottom: 2rem; }
.hero .lead { margin-bottom: 2.75rem; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem 2rem; }

/* Portrait füllt die rechte Hero-Hälfte vollflächig, der Bildhintergrund
   läuft per Farbverlauf nach links in das Off-White aus. */
.hero__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 58%;
  margin: 0;
}
/* Fläche links neben dem Foto in der Farbe des Studiohintergrunds */
.hero__media {
  background: linear-gradient(to bottom, #C6C9CE 0%, #CFD2D8 45%, #D3D6DC 100%);
}
.hero__media picture { display: block; width: 100%; height: 100%; }
.hero__media img {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  max-width: none;
  /* linke Bildkante weich in die Hintergrundfläche auslaufen lassen */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 22%);
          mask-image: linear-gradient(to right, transparent 0%, #000 22%);
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: -2px 0 -2px -2px;
  pointer-events: none;
  background: linear-gradient(to right,
    var(--off-white) 0%,
    var(--off-white) 2%,
    rgba(247,247,245,0.92) 10%,
    rgba(247,247,245,0.6) 22%,
    rgba(247,247,245,0.22) 34%,
    rgba(247,247,245,0) 46%);
}

.scroll-hint {
  position: absolute;
  left: max(var(--pad-x), calc((100% - var(--max)) / 2));
  bottom: 1.75rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}
.scroll-hint__line {
  position: relative;
  width: 0.5px;
  height: 3rem;
  background: var(--line-mid);
  overflow: hidden;
}
.scroll-hint__line::after {
  content: "";
  position: absolute;
  left: 0;
  top: -40%;
  width: 100%;
  height: 40%;
  background: var(--sage);
  animation: scroll-line 2.2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { top: -40%; }
  100% { top: 100%; }
}

@media (max-width: 860px) {
  .hero {
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    padding-top: var(--nav-h);
    padding-bottom: var(--pad-y);
  }
  .hero__media {
    position: relative;
    order: -1;
    width: 100%;
    height: min(62vh, 34rem);
  }
  .hero__media { background: none; }
  .hero__media img {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 18%;
    -webkit-mask-image: none;
            mask-image: none;
  }
  .hero__media::after {
    background: linear-gradient(to bottom,
      rgba(247,247,245,0) 55%,
      rgba(247,247,245,0.6) 78%,
      var(--off-white) 100%);
  }
  .hero__grid { margin-top: -2.5rem; }
  .hero__text { max-width: none; }
  .scroll-hint { display: none; }
}

/* Split layout (Überschrift links, Inhalt rechts) */
.split {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
}
.split__head { align-self: start; }
@media (min-width: 861px) {
  .split__head { position: sticky; top: calc(var(--nav-h) + 3rem); }
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* Philosophie */
.statement {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
  line-height: 1.38;
  color: var(--charcoal);
  border-left: 0.5px solid var(--sage);
  padding-left: 1.75rem;
  margin: 3rem 0;
  max-width: 30ch;
}

.anaphor {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.9vw, 1.45rem);
  line-height: 1.5;
  color: var(--charcoal);
  margin: 2.5rem 0;
}
.anaphor span { display: block; }

.motif {
  margin-top: 3rem;
  padding-top: 2.25rem;
  border-top: 0.5px solid var(--sage-line);
}

.dimensions { margin-top: clamp(4rem, 8vw, 6rem); }
.dimensions__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: var(--hair);
}
.dimensions__list li { padding: 1.75rem 1.5rem 0 0; }
.dimensions__list li + li { border-left: var(--hair); padding-left: 1.5rem; }
.dimensions__num {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.dimensions__term { font-family: var(--serif); font-size: 1.3rem; color: var(--charcoal); }
@media (max-width: 700px) {
  .dimensions__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dimensions__list li:nth-child(3) { border-left: 0; padding-left: 0; }
  .dimensions__list li:nth-child(n+3) { border-top: var(--hair); margin-top: 1.75rem; }
}

/* Profil */
.ventures { margin-top: clamp(4rem, 8vw, 6rem); }
.ventures__list { list-style: none; margin: 0; padding: 0; border-top: var(--hair); }
.venture {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 5fr) max-content;
  gap: 1.25rem 2.5rem;
  align-items: baseline;
  padding: 2.1rem 0;
  border-bottom: var(--hair);
}
.venture__name { font-size: 1.35rem; }
.venture__role {
  margin: 0.45rem 0 0;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.venture__text { margin: 0; color: var(--muted-3); }
.venture__link { justify-self: end; white-space: nowrap; }
.venture__link--none { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--muted); }
@media (max-width: 860px) {
  .venture { grid-template-columns: 1fr; gap: 0.75rem; }
  .venture__link { justify-self: start; margin-top: 0.25rem; }
}

/* Zusammenarbeit */
.steps {
  list-style: none;
  margin: clamp(3.5rem, 7vw, 5rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: var(--hair);
}
.step { padding: 2.25rem 2rem 0 0; }
.step + .step { border-left: var(--hair); padding-left: 2rem; }
.step__num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  color: var(--sage);
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}
.step h3 { margin-bottom: 0.9rem; }
.step p { color: var(--muted-3); margin: 0; }
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; }
  .step, .step + .step { border-left: 0; padding: 2rem 0; }
  .step + .step { border-top: var(--hair); }
}

/* Kontakt */
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(3rem, 7vw, 6rem);
  margin-top: clamp(3rem, 6vw, 4.5rem);
}
@media (max-width: 860px) { .contact__grid { grid-template-columns: 1fr; } }

.form { position: relative; }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 2.5rem; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }

.field { margin-bottom: 2rem; }
.field label {
  display: block;
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 0.35rem;
}
.field label .opt { font-weight: 300; letter-spacing: 0.08em; text-transform: none; color: var(--muted); }

.field input,
.field textarea {
  width: 100%;
  font: inherit;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--charcoal);
  background: transparent;
  border: 0;
  border-bottom: 0.5px solid var(--line-mid);
  border-radius: 0;
  padding: 0.7rem 0.25rem;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { min-height: 9.5rem; resize: vertical; line-height: 1.65; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:hover, .field textarea:hover { border-bottom-color: var(--muted); }
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--sage); background: var(--sage-dim); }
.field input:focus-visible, .field textarea:focus-visible { outline: 1.5px solid var(--sage); outline-offset: 2px; }
.field.is-invalid input, .field.is-invalid textarea { border-bottom-color: var(--charcoal); }
.field__hint { display: none; margin: 0.45rem 0 0; font-size: 0.82rem; color: var(--charcoal); }
.field.is-invalid .field__hint { display: block; }

.consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted-3);
  margin: 0.5rem 0 2.25rem;
}
.consent input {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.2rem 0 0;
  accent-color: var(--sage);
}
.consent.is-invalid { color: var(--charcoal); }
.consent.is-invalid .field__hint { display: block; grid-column: 2; margin-top: 0; }

.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.form__note { margin: 1.25rem 0 0; font-size: 0.82rem; color: var(--muted-2); }

.form-state {
  border: 0.5px solid var(--sage-line);
  background: var(--off-white);
  padding: clamp(2rem, 4vw, 2.75rem);
}
.form-state h3 { margin-bottom: 1rem; }
.form-state p { color: var(--muted-3); margin-bottom: 0; max-width: 52ch; }
.form-state p + p { margin-top: 1rem; }
.form-state--error { border-color: var(--line-mid); }

.connect { border-left: var(--hair); padding-left: clamp(2rem, 4vw, 3rem); align-self: start; }
.connect h3 { margin-bottom: 1rem; }
.connect p { color: var(--muted-3); }
.connect__list { list-style: none; margin: 2rem 0 0; padding: 0; border-top: var(--hair); }
.connect__list a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: var(--hair);
  text-decoration: none;
  color: var(--charcoal);
  transition: color 0.3s ease;
}
.connect__list a:hover { color: var(--sage); }
.connect__list svg { width: 1rem; height: 1rem; fill: currentColor; flex: none; color: var(--sage); }
.connect__list .arrow { margin-left: auto; width: 0.8rem; height: 0.8rem; fill: none; stroke: currentColor; color: var(--muted); }
@media (max-width: 860px) { .connect { border-left: 0; padding-left: 0; border-top: var(--hair); padding-top: 3rem; } }

/* Unterseiten */
.page-head {
  padding-top: calc(var(--nav-h) + clamp(4rem, 12vh, 7.5rem));
  padding-bottom: clamp(3rem, 7vh, 5rem);
}
.page-head h1 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); max-width: 18ch; margin-bottom: 2rem; }

.legal { max-width: 70ch; color: var(--muted-3); }
.legal h2 { font-size: clamp(1.4rem, 2.2vw, 1.75rem); color: var(--charcoal); margin: 3.5rem 0 1.25rem; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.15rem; color: var(--charcoal); margin: 2.25rem 0 0.75rem; }
.legal ul { padding-left: 1.1rem; margin: 0 0 1.5rem; }
.legal li { margin-bottom: 0.5rem; }
.legal li::marker { color: var(--sage); }
.legal address { font-style: normal; margin-bottom: 1.25rem; }
.legal .stand { margin-top: 3.5rem; font-size: 0.85rem; color: var(--muted-2); }

/* Substack */
.posts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.post {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 3vw, 2.5rem);
  background: var(--off-white-2);
  border: 0.5px solid var(--line);
  border-radius: 2px;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.35s ease;
}
.post:hover { border-color: var(--sage-line); color: inherit; }
.post time {
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 1.25rem;
}
.post h3 { margin-bottom: 1rem; }
.post p {
  color: var(--muted-3);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 2rem;
}
.post .text-link { margin-top: auto; color: var(--sage); }
.post:hover .text-link svg { transform: translate(2px, -2px); }

.posts-empty { border: var(--hair); padding: 2.5rem; color: var(--muted-3); }

.subscribe {
  max-width: 600px;
  margin: 0 auto;
  border: 0.5px solid var(--sage-line);
  padding: clamp(2rem, 5vw, 3.25rem);
  text-align: center;
}
.subscribe h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 1.25rem; }
.subscribe > p { color: var(--muted-3); margin-inline: auto; max-width: 46ch; }
.subscribe .btn { margin-top: 1rem; }
.embed-slot {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: var(--hair);
}
.embed-slot p { font-size: 0.85rem; color: var(--muted-2); max-width: 46ch; margin: 0 auto 1.25rem; }
.embed-slot iframe {
  display: block;
  width: 100%;
  max-width: 480px;
  height: 320px;
  margin: 0 auto;
  border: 0;
  background: #fff;
}

/* Footer */
.footer { border-top: var(--hair); padding-block: 2.5rem; }
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  font-size: 0.8rem;
  color: var(--muted-2);
}
.footer__links { display: flex; flex-wrap: wrap; gap: 0.5rem 1.75rem; list-style: none; margin: 0; padding: 0; }
.footer__links a { text-decoration: none; color: var(--muted-3); }
.footer__links a:hover { color: var(--sage); }

/* Scroll-Reveal */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal.is-visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s !important; }
.d2 { transition-delay: 0.2s !important; }
.d3 { transition-delay: 0.3s !important; }

/* Custom Cursor */
.has-cursor, .has-cursor a, .has-cursor button, .has-cursor label, .has-cursor [role="button"] { cursor: none; }
.has-cursor input, .has-cursor textarea { cursor: text; }
.has-cursor input[type="checkbox"] { cursor: none; }

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cursor.is-visible { opacity: 1; }
.cursor::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}
.cursor.is-hover::before { width: 40px; height: 40px; background: var(--sage-mid); }

/* Reduzierte Bewegung */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-hint__line::after { animation: none; top: 0; height: 100%; opacity: 0.5; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
