/* =========================================================
   Arndt Webdesign — Stylesheet
   Farbwelt: Waldgrün / Bone / Messing
   Keine externen Ressourcen (DSGVO: keine Google Fonts o. ä.)
   ========================================================= */

:root {
  --ink:        #08110C;
  --forest:     #0F2318;
  --forest-2:   #16341F;
  --moss:       #2C6B45;
  --sage:       #86AE95;
  --bone:       #F5F2EA;
  --bone-dim:   #DAD5C7;
  --brass:      #C9A961;
  --brass-lt:   #E2C88A;

  --fg:         var(--bone);
  --bg:         var(--ink);

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;

  --maxw: 1240px;
  --gut: clamp(1.25rem, 5vw, 4rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
  line-height: 1.65;
  letter-spacing: -0.011em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; }

::selection { background: var(--brass); color: var(--ink); }

/* Körnung über allem — gibt dem Flat-Design Tiefe */
.grain {
  position: fixed;
  inset: -50%;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 8s steps(6) infinite;
}
@keyframes grainShift {
  0%,100% { transform: translate(0,0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 1%); }
}

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}

/* Damit Ankerspruenge nicht unter dem festen Kopfbereich landen */
section[id] { position: relative; scroll-margin-top: 5.5rem; }
section { position: relative; }

.section-pad { padding-block: clamp(5rem, 12vh, 10rem); }

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--brass);
  opacity: 0.6;
}

h1, h2, h3, h4 {
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
}

h2 { font-size: clamp(2rem, 1.2rem + 3.6vw, 4rem); }
h3 { font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem); letter-spacing: -0.025em; }

.lede {
  font-size: clamp(1.1rem, 1rem + 0.55vw, 1.4rem);
  line-height: 1.55;
  color: var(--bone-dim);
  max-width: 46ch;
  text-wrap: pretty;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--brass);
  --btn-fg: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.75rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  will-change: transform;
}
.btn span { position: relative; z-index: 1; }
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brass-lt);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
}
.btn:hover::after { transform: translateY(0); }
.btn:hover { box-shadow: 0 1rem 2.5rem -0.75rem rgba(201,169,97,0.45); }
/* Sichtbarer Fokusrahmen fuer Tastaturbedienung.
   Gilt fuer alles Bedienbare, nicht nur fuer Schaltflaechen. */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--brass-lt);
  outline-offset: 4px;
  border-radius: 4px;
}
.faq summary:focus-visible { outline-offset: -2px; }
#cmp:focus-visible { outline-offset: 3px; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--bone);
  border-color: rgba(245,242,234,0.25);
}
.btn--ghost::after { background: rgba(245,242,234,0.08); }
.btn--ghost:hover { box-shadow: none; border-color: rgba(245,242,234,0.5); }

.btn .arr { transition: transform 0.4s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 1.25rem;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-head.stuck {
  background: rgba(8,17,12,0.78);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: rgba(245,242,234,0.08);
  padding-block: 0.85rem;
}
.head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 1.02rem;
}
.brand-mark {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--moss), var(--forest-2));
  border: 1px solid rgba(201,169,97,0.35);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--brass-lt);
  flex: none;
}
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--bone-dim);
  position: relative;
  padding-block: 0.25rem;
  transition: color 0.3s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav a:hover { color: var(--bone); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav .btn { padding: 0.7rem 1.3rem; font-size: 0.88rem; }
.nav .btn::after { display: none; }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: clamp(6.5rem, 13vh, 8.5rem) clamp(3rem, 8vh, 5rem);
  position: relative;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  will-change: transform;
}
.orb-1 {
  width: 46vw; height: 46vw;
  background: radial-gradient(circle, var(--moss), transparent 68%);
  top: -12%; right: -8%;
  animation: float1 22s ease-in-out infinite;
}
.orb-2 {
  width: 34vw; height: 34vw;
  background: radial-gradient(circle, rgba(201,169,97,0.5), transparent 68%);
  bottom: -14%; left: -6%;
  animation: float2 27s ease-in-out infinite;
}
.orb-3 {
  width: 26vw; height: 26vw;
  background: radial-gradient(circle, var(--forest-2), transparent 70%);
  top: 42%; left: 42%;
  animation: float1 19s ease-in-out infinite reverse;
}
@keyframes float1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-6%, 8%) scale(1.12); }
}
@keyframes float2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(9%, -7%) scale(0.9); }
}

.hero-grid {
  display: grid;
  gap: clamp(1.75rem, 4vh, 4rem);
  align-items: end;
}
@media (min-width: 62rem) {
  .hero-grid { grid-template-columns: 1.35fr 0.85fr; }
}

h1.hero-title {
  font-size: clamp(2.5rem, 1.1rem + 5.2vw, 5.75rem);
  line-height: 1;
  margin-bottom: clamp(1.25rem, 2.5vh, 2rem);
}
.hero-title .ln { display: block; overflow: hidden; }
.hero-title .ln > span {
  display: block;
  transform: translateY(105%);
  animation: lineUp 1.1s var(--ease) forwards;
}
.hero-title .ln:nth-child(1) > span { animation-delay: 0.15s; }
.hero-title .ln:nth-child(2) > span { animation-delay: 0.27s; }
.hero-title .ln:nth-child(3) > span { animation-delay: 0.39s; }
@keyframes lineUp { to { transform: translateY(0); } }

.hero-title em {
  font-style: normal;
  font-family: var(--font-serif);
  color: var(--brass-lt);
}

.fade-up-late {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease) 0.72s forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: none; } }

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: clamp(1.5rem, 3.5vh, 2.5rem); }

.hero-facts {
  display: grid;
  gap: clamp(1rem, 2.2vh, 1.5rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(245,242,234,0.12);
}
@media (min-width: 36rem) and (max-width: 61.99rem) {
  .hero-facts { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.fact .n {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 1.5rem + 1.8vw, 3rem);
  line-height: 1;
  color: var(--brass-lt);
  display: block;
}
.fact .l {
  font-size: 0.86rem;
  color: var(--sage);
  margin-top: 0.4rem;
  line-height: 1.4;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.3s forwards;
}
@media (max-width: 61.99rem), (max-height: 46rem) {
  .scroll-hint { display: none; }
}
.scroll-hint .line {
  width: 1px; height: 3rem;
  background: linear-gradient(var(--brass), transparent);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 0.35; transform: scaleY(0.8); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid rgba(245,242,234,0.1);
  padding-block: 1.4rem;
  overflow: hidden;
  background: var(--forest);
}
.marquee-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: scrollX 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scrollX { to { transform: translateX(-50%); } }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
  font-size: 0.95rem;
  color: var(--sage);
  white-space: nowrap;
}
.marquee-item::after {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brass);
  opacity: 0.7;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.09s; }
.reveal[data-d="2"] { transition-delay: 0.18s; }
.reveal[data-d="3"] { transition-delay: 0.27s; }
.reveal[data-d="4"] { transition-delay: 0.36s; }

/* ---------- Vergleich (Before/After) ---------- */
.compare-shell { background: var(--forest); }

.compare {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(245,242,234,0.12);
  cursor: ew-resize;
  /* Beim Ziehen darf sich kein Text markieren — sonst wird beim Wischen
     der halbe Abschnitt blau hinterlegt. */
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  touch-action: pan-y;
  box-shadow: 0 2.5rem 5rem -1.5rem rgba(0,0,0,0.7);
}
.cmp-pane { position: absolute; inset: 0; user-select: none; -webkit-user-select: none; }
.compare * { user-select: none; -webkit-user-select: none; }
/* Waehrend gezogen wird, keine Markierung irgendwo auf der Seite */
body.dragging, body.dragging * { user-select: none !important; -webkit-user-select: none !important; cursor: ew-resize !important; }
.cmp-after { clip-path: inset(0 0 0 var(--pos, 50%)); }

.cmp-tag {
  position: absolute;
  bottom: 0.9rem;
  z-index: 4;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  pointer-events: none;
}
.cmp-tag--old { left: 0.9rem; background: rgba(120,40,40,0.55); color: #ffd9d9; }
.cmp-tag--new { right: 0.9rem; background: rgba(44,107,69,0.6); color: #d6f5e2; }

@media (min-width: 48rem) { .compare { aspect-ratio: 16 / 10; } }
@media (max-width: 32rem) {
  .cmp-tag { font-size: 0.6rem; padding: 0.25rem 0.55rem; letter-spacing: 0.1em; bottom: 0.6rem; }
  .cmp-tag--old { left: 0.6rem; }
  .cmp-tag--new { right: 0.6rem; }
  .cmp-handle::after { width: 38px; height: 38px; }
}

.cmp-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos, 50%);
  width: 2px;
  background: var(--bone);
  z-index: 5;
  pointer-events: none;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}
.cmp-handle::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--bone);
  box-shadow: 0 6px 22px rgba(0,0,0,0.5);
}
.cmp-handle .grip {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
  color: var(--ink);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

/* Mock-Websites (rein per CSS gezeichnet, keine Bilder nötig) */
.mock { position: absolute; inset: 0; overflow: hidden; }

.mock-old {
  background: #ffffff;
  font-family: "Times New Roman", Times, serif;
  color: #000;
  padding: 0;
}
.mock-old .old-bar {
  background: linear-gradient(#00309c, #001f66);
  color: #fff;
  padding: 6px 10px;
  font-size: clamp(9px, 1.5cqw, 15px);
  display: flex; gap: 14px;
  border-bottom: 2px solid #ffcc00;
}
.mock-old .old-hero {
  background: #d9d9d9;
  border: 3px ridge #999;
  margin: 10px;
  padding: 10px;
  text-align: center;
}
.mock-old .old-title {
  font-size: clamp(13px, 2.6cqw, 30px);
  color: #00309c;
  text-shadow: 1px 1px 0 #aaa;
  font-weight: 700;
  margin-bottom: 6px;
}
.mock-old .old-cols { display: flex; gap: 8px; margin: 10px; }
.mock-old .old-col {
  flex: 1;
  border: 2px inset #bbb;
  background: #efefef;
  padding: 6px;
  font-size: clamp(7px, 1.3cqw, 12px);
  line-height: 1.35;
}
.mock-old .old-btn {
  display: inline-block;
  background: linear-gradient(#fafafa, #cfcfcf);
  border: 2px outset #ccc;
  padding: 3px 10px;
  font-size: clamp(8px, 1.4cqw, 13px);
  margin-top: 6px;
}
.mock-old .old-foot {
  border-top: 1px solid #999;
  margin: 10px 10px clamp(30px, 5.5cqw, 52px);
  padding-top: 6px;
  font-size: clamp(7px, 1.2cqw, 11px);
  color: #555;
  display: flex; justify-content: space-between;
}
.blink { animation: blink 1.1s steps(2) infinite; color: #c00; font-weight: 700; }
@keyframes blink { 50% { opacity: 0; } }

.mock-new {
  background:
    radial-gradient(70% 55% at 50% 30%, rgba(44,107,69,0.35), transparent 70%),
    linear-gradient(160deg, #0F2318, #08110C 65%);
  color: var(--bone);
  padding: clamp(10px, 2.4cqw, 26px) clamp(10px, 2.4cqw, 26px) clamp(34px, 6cqw, 58px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(8px, 1.8cqw, 18px);
}
.mock-new .new-bar {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  font-size: clamp(7px, 1.15cqw, 12px);
  color: var(--sage);
}
.mock-new .new-dot { width: clamp(12px,2cqw,20px); aspect-ratio:1; border-radius: 6px; background: linear-gradient(145deg,var(--moss),var(--forest-2)); border: 1px solid rgba(201,169,97,.4); }
.mock-new .new-nav { display: flex; gap: clamp(6px,1.3cqw,14px); }
.mock-new .new-h {
  font-size: clamp(15px, 3.6cqw, 46px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin-top: auto;
}
.mock-new .new-h em { font-style: normal; font-family: var(--font-serif); color: var(--brass-lt); }
.mock-new .new-sub { font-size: clamp(7px,1.3cqw,14px); color: var(--bone-dim); max-width: 34ch; }
.mock-new .new-row { display: flex; gap: clamp(5px,1cqw,10px); align-items: center; justify-content: center; margin-bottom: auto; }
.mock-new .new-meta {
  width: 100%;
  margin-top: auto;
  display: flex; justify-content: space-between;
  font-size: clamp(6px,1.05cqw,11px);
  color: var(--sage);
  border-top: 1px solid rgba(245,242,234,.12);
  padding-top: clamp(6px,1.2cqw,12px);
}
.mock-new .new-pill {
  padding: clamp(3px,0.7cqw,8px) clamp(7px,1.5cqw,16px);
  border-radius: 100px;
  background: var(--brass);
  color: var(--ink);
  font-size: clamp(6px,1.1cqw,12px);
  font-weight: 600;
}
.mock-new .new-pill--g { background: transparent; color: var(--bone); border: 1px solid rgba(245,242,234,.25); }

.compare { container-type: inline-size; }

.cmp-note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--sage);
  text-align: center;
}

/* ---------- Leistungen ---------- */
.svc-grid {
  display: grid;
  gap: 1px;
  background: rgba(245,242,234,0.1);
  border: 1px solid rgba(245,242,234,0.1);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 3.5rem;
}
@media (min-width: 48rem) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }

.svc {
  background: var(--ink);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  position: relative;
  transition: background 0.5s var(--ease);
  overflow: hidden;
}
.svc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50rem 22rem at var(--mx,50%) var(--my,0%), rgba(44,107,69,0.22), transparent 65%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.svc:hover::before { opacity: 1; }
.svc > * { position: relative; }
.svc .num {
  font-family: var(--font-serif);
  color: var(--brass);
  opacity: 0.65;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  display: block;
}
.svc h3 { margin-bottom: 0.85rem; }
.svc p { color: var(--bone-dim); margin: 0; font-size: 0.97rem; }

/* ---------- Prozess ---------- */
.proc-shell { background: var(--forest); }
.proc-list { margin-top: 3.5rem; border-top: 1px solid rgba(245,242,234,0.12); }
.proc {
  display: grid;
  gap: 0.75rem 2.5rem;
  padding-block: clamp(1.75rem, 3.5vw, 2.75rem);
  border-bottom: 1px solid rgba(245,242,234,0.12);
  position: relative;
  transition: padding-left 0.55s var(--ease);
}
@media (min-width: 52rem) {
  .proc { grid-template-columns: 5rem 1fr 1.1fr; align-items: start; }
  .proc:hover { padding-left: 1.25rem; }
}
.proc::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--brass);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.55s var(--ease);
}
.proc:hover::before { transform: scaleY(1); }
.proc .step {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--brass);
  line-height: 1;
}
.proc h3 { margin: 0; }
.proc p { margin: 0; color: var(--bone-dim); font-size: 0.97rem; }

/* ---------- Preise ---------- */
.price-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3.5rem;
}
@media (min-width: 52rem) { .price-grid { grid-template-columns: repeat(3, 1fr); } }

.price {
  border: 1px solid rgba(245,242,234,0.14);
  border-radius: 16px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: linear-gradient(180deg, rgba(245,242,234,0.035), transparent);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.price:hover { transform: translateY(-6px); border-color: rgba(201,169,97,0.45); }
.price--feature {
  border-color: rgba(201,169,97,0.5);
  background: linear-gradient(180deg, rgba(201,169,97,0.09), transparent 60%);
  position: relative;
}
.price--feature::after {
  content: "Am häufigsten";
  position: absolute;
  top: -0.7rem; left: 50%;
  transform: translateX(-50%);
  background: var(--brass);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  white-space: nowrap;
}
.price h3 { margin: 0; }
.price .amount {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 1.5rem + 1.4vw, 2.6rem);
  color: var(--brass-lt);
  line-height: 1;
}
.price .amount small { font-size: 0.85rem; color: var(--sage); font-family: var(--font-sans); display: block; margin-top: 0.4rem; letter-spacing: 0; }
.price ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; font-size: 0.94rem; color: var(--bone-dim); }
.price li { display: flex; gap: 0.65rem; align-items: flex-start; }
.price li::before { content: "→"; color: var(--brass); flex: none; }
.price .btn { margin-top: auto; justify-content: center; }

.price-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--sage);
  text-align: center;
  max-width: 60ch;
  margin-inline: auto;
}

/* ---------- Über mich ---------- */
.about-shell { background: var(--forest); }
.about-grid { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 58rem) { .about-grid { grid-template-columns: 0.85fr 1.15fr; } }

.portrait {
  aspect-ratio: 4/5;
  margin: 0 auto;
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(245,242,234,0.14);
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--forest-2), var(--ink));
  box-shadow: 0 1.75rem 4rem -1.5rem rgba(0,0,0,0.65);
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}
/* Bindet das graue Studiofoto farblich an das Waldgruen an,
   ohne die Hauttoene zu verfaelschen. */
.portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(15,35,24,0) 52%, rgba(8,17,12,0.72) 100%),
    linear-gradient(145deg, rgba(44,107,69,0.20), transparent 55%);
}

/* Einspaltig (Handy/Tablet): Bild begrenzen, sonst erschlaegt es die Seite.
   Ueber die Breite statt ueber die Hoehe, damit das 4:5-Format erhalten bleibt. */
@media (max-width: 57.99rem) {
  .portrait { max-width: 20rem; }
}

.about-body p { color: var(--bone-dim); }
.about-body p + p { margin-top: 1.25rem; }
.about-body strong { color: var(--bone); font-weight: 600; }

.creds { display: grid; gap: 1rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(245,242,234,0.12); }
@media (min-width: 34rem) { .creds { grid-template-columns: repeat(2, 1fr); } }
.cred { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.93rem; color: var(--bone-dim); }
.cred .ic { color: var(--brass); flex: none; }

/* ---------- FAQ ---------- */
.faq { margin-top: 3.5rem; border-top: 1px solid rgba(245,242,234,0.12); }
.faq details {
  border-bottom: 1px solid rgba(245,242,234,0.12);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
  letter-spacing: -0.02em;
  transition: color 0.3s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brass-lt); }
.faq summary .pm {
  flex: none;
  width: 1.6rem; height: 1.6rem;
  border-radius: 50%;
  border: 1px solid rgba(245,242,234,0.25);
  display: grid; place-items: center;
  transition: transform 0.45s var(--ease), background 0.35s, border-color 0.35s;
  font-size: 1rem;
  line-height: 1;
}
.faq details[open] summary .pm { transform: rotate(45deg); background: var(--brass); border-color: var(--brass); color: var(--ink); }
.faq .ans { padding-bottom: 1.75rem; color: var(--bone-dim); max-width: 68ch; font-size: 0.98rem; }
.faq details[open] .ans { animation: fadeUp 0.55s var(--ease); }

/* ---------- Kontakt ---------- */
.contact-shell {
  background:
    radial-gradient(70% 90% at 50% 0%, rgba(44,107,69,0.3), transparent 70%),
    var(--ink);
  text-align: center;
}
.contact-shell h2 { max-width: 18ch; margin-inline: auto; }
.contact-shell .lede { margin-inline: auto; margin-top: 1.5rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.75rem; }
.contact-meta { margin-top: 2.5rem; font-size: 0.9rem; color: var(--sage); }
.contact-meta a { color: var(--brass-lt); text-decoration: none; border-bottom: 1px solid rgba(201,169,97,0.35); }
.contact-meta a:hover { border-bottom-color: var(--brass-lt); }

/* ---------- Footer ---------- */
.site-foot {
  border-top: 1px solid rgba(245,242,234,0.1);
  padding-block: 3rem 2.5rem;
  font-size: 0.88rem;
  color: var(--sage);
}
.foot-inner { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between; }
.foot-nav { display: flex; flex-wrap: wrap; gap: 1.75rem; }
.foot-nav a { text-decoration: none; transition: color 0.3s; }
.foot-nav a:hover { color: var(--bone); }

/* ---------- Rechtsseiten ---------- */
.legal { padding-block: 10rem 6rem; }
.legal h1 { font-size: clamp(2rem, 1.5rem + 2.5vw, 3.25rem); margin-bottom: 2.5rem; }
.legal h2 { font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.6rem); margin-top: 3rem; margin-bottom: 0.85rem; letter-spacing: -0.02em; }
.legal h3 { font-size: 1.05rem; margin-top: 1.75rem; margin-bottom: 0.5rem; }
.legal p, .legal li { color: var(--bone-dim); max-width: 72ch; font-size: 0.98rem; }
.legal ul { padding-left: 1.2rem; display: grid; gap: 0.5rem; }
.legal a { color: var(--brass-lt); }
.legal .todo {
  border: 1px dashed rgba(201,169,97,0.55);
  background: rgba(201,169,97,0.07);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-block: 2rem;
  font-size: 0.93rem;
  color: var(--brass-lt);
}
.legal .todo strong { color: var(--bone); }
.back-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  text-decoration: none; color: var(--sage);
  font-size: 0.9rem; margin-bottom: 2.5rem;
  transition: color 0.3s, gap 0.3s;
}
.back-link:hover { color: var(--bone); gap: 0.8rem; }

/* Kopfbereich der Rechtsseiten: auf schmalen Geraeten sonst zu gedraengt */
.legal-nav { display: flex; align-items: center; gap: 2rem; }
.legal-nav a { text-decoration: none; font-size: 0.92rem; color: var(--bone-dim); }
.legal-nav a:hover { color: var(--bone); }
@media (max-width: 30rem) {
  .legal-nav a .lang { display: none; }
  .site-head .brand span:not(.brand-mark) { font-size: 0.95rem; }
}

/* ---------- Mobile Navigation ---------- */
@media (max-width: 52rem) {
  .nav-toggle {
    display: grid;
    place-items: center;
    width: 44px; height: 44px;
    background: none;
    border: 1px solid rgba(245,242,234,0.2);
    border-radius: 10px;
    color: var(--bone);
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }
  .nav-toggle .bar { width: 18px; height: 1.5px; background: currentColor; transition: transform 0.4s var(--ease), opacity 0.3s; }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.75rem;
    height: 100svh;
    background: rgba(8,17,12,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateY(-100%);
    /* Ausgeblendet auch fuer Tastatur und Screenreader unerreichbar machen,
       sonst tabbt man durch 5 unsichtbare Links. */
    visibility: hidden;
    transition: transform 0.6s var(--ease), visibility 0s linear 0.6s;
    font-size: 1.4rem;
  }
  .nav.open {
    transform: none;
    visibility: visible;
    transition: transform 0.6s var(--ease), visibility 0s;
  }
  .nav a { font-size: 1.35rem; color: var(--bone); }
  .nav .btn { font-size: 1rem; padding: 0.9rem 1.75rem; }
  .site-head { z-index: 200; }
  .head-inner { position: relative; z-index: 210; }
}

/* ---------- Barrierefreiheit ---------- */
@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; }
  .hero-title .ln > span { transform: none; }
  .fade-up-late, .scroll-hint { opacity: 1; }
  .grain { display: none; }
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brass);
  color: var(--ink);
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip:focus { left: 0; }


/* =========================================================
   AUSBAUSTUFE 2 — Editorial-Rhythmus, Selbst-Check,
   Arbeitsprobe, Lesefortschritt
   ========================================================= */

/* ---------- Lesefortschritt ---------- */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  z-index: 300;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--moss), var(--brass));
  pointer-events: none;
}

/* ---------- Lichtkegel unter dem Zeiger ---------- */
.spot {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  background: radial-gradient(28rem 28rem at var(--sx,50%) var(--sy,50%),
              rgba(44,107,69,0.16), transparent 70%);
}
@media (hover: hover) and (pointer: fine) {
  .has-spot:hover .spot { opacity: 1; }
}

/* ---------- Editorial-Abschnittskopf ---------- */
.sec-head {
  display: grid;
  gap: 1.25rem 3rem;
  align-items: end;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(245,242,234,0.12);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 56rem) {
  .sec-head { grid-template-columns: 5.5rem 1fr auto; }
  .sec-head.center { grid-template-columns: 5.5rem 1fr; }
}
.sec-no {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 1.3rem + 1vw, 2.1rem);
  color: var(--brass);
  line-height: 1;
  opacity: 0.8;
}
.sec-head h2 { margin: 0; }
.sec-aside {
  color: var(--sage);
  font-size: 0.92rem;
  max-width: 26ch;
  line-height: 1.6;
}

/* Wortweise Enthuellung fuer Kernaussagen */
.wr { display: inline-block; overflow: hidden; vertical-align: bottom; }
.wr > i {
  display: inline-block;
  font-style: inherit;
  transform: translateY(105%);
  transition: transform 0.85s var(--ease);
}
.in .wr > i, .wr.on > i { transform: translateY(0); }

/* ---------- Selbst-Check ---------- */
.check-shell { background: var(--forest); position: relative; overflow: hidden; }

.check {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (min-width: 58rem) { .check { grid-template-columns: 1.2fr 0.8fr; } }

.check-list { display: grid; gap: 0; }
.check-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(245,242,234,0.1);
  cursor: pointer;
  background: none;
  border-left: 0; border-right: 0; border-top: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  width: 100%;
  transition: padding-left 0.4s var(--ease), color 0.3s;
}
.check-item:first-child { border-top: 1px solid rgba(245,242,234,0.1); }
.check-item:hover { padding-left: 0.6rem; color: var(--bone); }

.check-box {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 8px;
  border: 1.5px solid rgba(245,242,234,0.3);
  display: grid; place-items: center;
  transition: background 0.35s var(--ease), border-color 0.35s, transform 0.35s var(--ease);
}
.check-box svg { width: 14px; height: 14px; opacity: 0; transform: scale(0.5); transition: opacity 0.3s, transform 0.35s var(--ease); }
.check-item[aria-pressed="true"] .check-box {
  background: var(--moss);
  border-color: var(--moss);
  transform: scale(1.06);
}
.check-item[aria-pressed="true"] .check-box svg { opacity: 1; transform: scale(1); }
.check-item[aria-pressed="true"] .check-txt { color: var(--bone); }
.check-txt { color: var(--bone-dim); font-size: 1rem; line-height: 1.45; transition: color 0.3s; }

.check-panel {
  border: 1px solid rgba(245,242,234,0.14);
  border-radius: 18px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: linear-gradient(180deg, rgba(245,242,234,0.04), transparent);
  text-align: center;
  position: sticky;
  top: 7rem;
}
.ring-wrap { position: relative; width: 168px; margin: 0 auto 1.5rem; }
.ring { transform: rotate(-90deg); overflow: visible; }
.ring circle { fill: none; stroke-width: 9; stroke-linecap: round; }
.ring .bg { stroke: rgba(245,242,234,0.12); }
.ring .fg {
  stroke: var(--brass);
  transition: stroke-dashoffset 0.9s var(--ease), stroke 0.6s;
}
.ring-val {
  position: absolute; inset: 0;
  display: grid; place-content: center;
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--bone);
  line-height: 1;
}
.ring-val small { display: block; font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); margin-top: 0.4rem; }
.check-verdict { font-size: 1.05rem; color: var(--bone); margin: 0 0 0.6rem; letter-spacing: -0.02em; }
.check-hint { font-size: 0.92rem; color: var(--bone-dim); margin: 0 0 1.5rem; min-height: 3.2em; }
.check-panel .btn { width: 100%; justify-content: center; }

/* ---------- Arbeitsprobe ---------- */
.proof-shell { position: relative; overflow: hidden; }
.spec-grid {
  display: grid;
  gap: 1px;
  background: rgba(245,242,234,0.1);
  border: 1px solid rgba(245,242,234,0.1);
  border-radius: 14px;
  overflow: hidden;
}
@media (min-width: 40rem) { .spec-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 64rem) { .spec-grid { grid-template-columns: repeat(4,1fr); } }
.spec {
  background: var(--ink);
  padding: clamp(1.5rem, 2.6vw, 2.25rem);
}
.spec .v {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 1.5rem + 1.8vw, 2.9rem);
  color: var(--brass-lt);
  line-height: 1;
  display: block;
}
.spec .v em { font-style: normal; font-size: 0.42em; color: var(--sage); margin-left: 0.25rem; font-family: var(--font-sans); }
.spec .k { font-size: 0.9rem; color: var(--bone-dim); margin-top: 0.7rem; line-height: 1.5; }
.proof-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--sage);
  max-width: 68ch;
}
.proof-note strong { color: var(--bone-dim); font-weight: 500; }

/* ---------- Ablauf: Fortschrittslinie ---------- */
@media (min-width: 52rem) {
  .proc-list { position: relative; }
  .proc-rail {
    position: absolute;
    left: 1.6rem; top: 0; bottom: 0;
    width: 1px;
    background: rgba(245,242,234,0.12);
  }
  .proc-rail::after {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 1px;
    height: var(--fill, 0%);
    background: linear-gradient(var(--brass), var(--moss));
    transition: height 0.15s linear;
  }
  .proc { padding-left: 5rem; grid-template-columns: 1fr 1.1fr; }
  .proc:hover { padding-left: 5.6rem; }
  .proc .step {
    position: absolute;
    left: 0; top: clamp(1.75rem, 3.5vw, 2.75rem);
    width: 3.2rem;
    text-align: center;
    background: var(--forest);
    padding-block: 0.35rem;
    z-index: 1;
  }
  .proc::before { left: 3.4rem; }
}

/* ---------- Angebotskarten: mehr Hierarchie ---------- */
.price--feature { transform: translateY(-0.5rem); }
@media (max-width: 51.99rem) { .price--feature { transform: none; } }

/* ---------- Kontakt: grosse Adresse ---------- */
.mail-big {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 0.9rem + 1.9vw, 2.6rem);
  color: var(--brass-lt);
  text-decoration: none;
  letter-spacing: -0.02em;
  margin-top: 2.5rem;
  position: relative;
  word-break: break-word;
}
.mail-big::after {
  content: "";
  position: absolute;
  left: 0; bottom: -0.15em;
  width: 100%; height: 1px;
  background: currentColor;
  opacity: 0.45;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.mail-big:hover::after { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  .wr > i { transform: none !important; }
  .progress { display: none; }
  .spot { display: none; }
}


/* =========================================================
   AUSBAUSTUFE 3 — Feinheiten
   ========================================================= */

/* ---------- Magnetische Schaltflaechen ---------- */
@media (hover: hover) and (pointer: fine) {
  .btn { transition: transform 0.35s var(--ease), box-shadow 0.45s var(--ease); }
  .btn.mag { transition: transform 0.12s linear, box-shadow 0.45s var(--ease); }
}

/* ---------- Laufband reagiert auf das Scrollen ---------- */
.marquee-track { animation-duration: 38s; }
.marquee.fast .marquee-track { animation-duration: 14s; }
.marquee { transition: background 0.5s var(--ease); }

/* ---------- Portraet: leichte Tiefe beim Scrollen ---------- */
.portrait img { will-change: transform; }

/* ---------- Klebende Handy-Leiste ---------- */
.dock {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 150;
  padding: 0.75rem var(--gut) calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(8,17,12,0.9);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-top: 1px solid rgba(245,242,234,0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateY(110%);
  transition: transform 0.55s var(--ease);
}
.dock.up { transform: none; }
.dock-txt {
  flex: 1;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--sage);
}
.dock-txt b { display: block; color: var(--bone); font-weight: 600; font-size: 0.95rem; letter-spacing: -0.015em; }
.dock .btn { padding: 0.8rem 1.35rem; font-size: 0.88rem; flex: none; }
@media (min-width: 52rem) { .dock { display: none; } }

/* ---------- Zieh-Hinweis am Regler ---------- */
.cmp-pill {
  position: absolute;
  left: 50%; top: 1rem;
  transform: translateX(-50%);
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.9rem;
  border-radius: 100px;
  background: rgba(8,17,12,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(245,242,234,0.18);
  color: var(--bone);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  pointer-events: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.compare.touched .cmp-pill { opacity: 0; transform: translateX(-50%) translateY(-0.5rem); }

/* ---------- Sanftes Aufziehen der Abschnitte ---------- */
.reveal { will-change: opacity, transform; }

@media (prefers-reduced-motion: reduce) {
  .dock { transition: none; }
  .marquee.fast .marquee-track { animation-duration: 38s; }
}

/* Hinweis unter dem Check-Knopf */
.check-privacy {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--sage);
}


/* =========================================================
   AUSBAUSTUFE 4 — Spielereien mit Zweck
   ========================================================= */

/* ---------- Kapitel-Punkte am rechten Rand ---------- */
.dots {
  position: fixed;
  right: clamp(0.9rem, 2vw, 1.75rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: none;
  flex-direction: column;
  gap: 0.9rem;
  align-items: flex-end;
}
@media (min-width: 68rem) and (min-height: 34rem) { .dots { display: flex; } }

.dot {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: none;
  border: 0;
  padding: 0.2rem;
  cursor: pointer;
  color: var(--sage);
}
.dot .lbl {
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(0.4rem);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
}
.dot:hover .lbl, .dot:focus-visible .lbl { opacity: 1; transform: none; }
.dot .pip {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(245,242,234,0.28);
  transition: background 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  flex: none;
}
.dot:hover .pip { background: var(--bone-dim); transform: scale(1.25); }
.dot.here .pip {
  background: var(--brass);
  transform: scale(1.45);
  box-shadow: 0 0 0 4px rgba(201,169,97,0.16);
}
.dot.here .lbl { opacity: 1; transform: none; color: var(--bone-dim); }

/* ---------- Hero verabschiedet sich beim Scrollen ---------- */
.hero-grid { will-change: opacity, transform; }

/* ---------- Adresse kopieren ---------- */
.mail-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.mail-big { margin-top: 0; }
.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(245,242,234,0.22);
  background: none;
  color: var(--sage);
  font: inherit;
  font-size: 0.8rem;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}
.copy-btn:hover { color: var(--bone); border-color: rgba(245,242,234,0.5); }
.copy-btn.done { color: var(--ink); background: var(--brass); border-color: var(--brass); }

/* ---------- Angebotskarten mit leichter Neigung ---------- */
@media (hover: hover) and (pointer: fine) {
  .price { transform-style: preserve-3d; }
  .price.tilt { transition: transform 0.18s linear, border-color 0.5s var(--ease); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-grid { opacity: 1 !important; transform: none !important; }
  .dot .lbl { transition: none; }
}
