/* ==========================================================================
   BalkanHandwerker — Design System
   Warm craft-editorial: Papier, Tinte, Kupfer. Selbst gehostete Schriften,
   keine externen Requests. Mobile-first, prefers-reduced-motion respektiert.
   ========================================================================== */

/* ---------- Fonts (selbst gehostet, latin subset, variable) ---------- */

@font-face {
  font-family: 'Fraunces';
  src: url('fonts/fraunces-var-latin.woff2') format('woff2');
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2212, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Instrument Sans';
  src: url('fonts/instrument-sans-var-latin.woff2') format('woff2');
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2212, U+FEFF, U+FFFD;
}

/* ---------- Tokens ---------- */

:root {
  /* Farbwelt */
  --paper: #FAF6F0;
  --paper-2: #F2EBE0;
  --card: #FFFCF7;
  --sand: #E4D9C8;
  --sand-soft: #EFE7DA;
  --ink: #211D19;
  --ink-2: #2C2620;
  --ink-3: #3A332B;
  --text: #2B251E;
  --text-soft: #5C5348;
  --copper: #C25E1E;        /* dekorativ, grosse Flaechen */
  --copper-strong: #B04E12; /* Buttons auf hell (AA mit Papier-Text) */
  --copper-deep: #9C4A15;   /* Textlinks auf hell (AA) */
  --copper-light: #E8935B;  /* Akzent auf dunkel (AA mit Tinte) */
  --pine: #3E5C4B;
  --pine-soft: #E3EAE2;
  --on-ink: #F2EAE0;
  --on-ink-soft: #C9BDAC;
  --line-on-ink: rgba(242, 234, 224, 0.14);

  /* Typografie */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Instrument Sans', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

  /* Layout */
  --container: 72.5rem;
  --gutter: clamp(1.25rem, 4.5vw, 2.5rem);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-card: 0 1px 2px rgba(43, 30, 16, 0.05), 0 10px 30px -18px rgba(43, 30, 16, 0.25);
  --shadow-lift: 0 2px 4px rgba(43, 30, 16, 0.06), 0 22px 44px -20px rgba(43, 30, 16, 0.33);

  /* Koernung (Inline-SVG, kein externer Request) */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

/* ---------- Reset & Basis ---------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  overflow-wrap: break-word;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 1.2rem + 4vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.65rem, 1.2rem + 2vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.45rem); }

p { margin: 0 0 1em; }

a { color: var(--copper-deep); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--copper-strong); }

:focus-visible {
  outline: 3px solid var(--copper-strong);
  outline-offset: 2px;
  border-radius: 3px;
}
/* Auf dunklen Sektionen helleres Kupfer für sichtbaren Fokusring (AA) */
.section--ink :focus-visible,
.hero :focus-visible,
.page-hero :focus-visible,
.cta-band :focus-visible { outline-color: var(--copper-light); }

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

ul, ol { padding-left: 1.35em; margin: 0 0 1em; }
li { margin-bottom: 0.35em; }

strong { font-weight: 600; color: var(--ink); }

hr { border: 0; border-top: 1px solid var(--sand); margin: 2rem 0; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--on-ink);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout-Helfer ---------- */

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(3.5rem, 4vw + 2rem, 6rem); }
.section--alt { background: var(--paper-2); }
.section--ink {
  background: var(--ink);
  color: var(--on-ink);
}
.section--ink h2, .section--ink h3 { color: var(--on-ink); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-deep);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 2px;
  background: var(--copper);
  border-radius: 2px;
}
.section--ink .eyebrow { color: var(--copper-light); }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 3vw, 3rem); }
.section-head p { color: var(--text-soft); font-size: 1.1rem; margin-bottom: 0; }
.section--ink .section-head p { color: var(--on-ink-soft); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}
.btn svg { flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--copper-strong);
  color: #FFF9F2;
  box-shadow: 0 10px 24px -12px rgba(176, 78, 18, 0.65);
}
.btn--primary:hover { background: var(--copper-deep); color: #FFF9F2; box-shadow: 0 14px 28px -12px rgba(176, 78, 18, 0.75); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--sand);
}
.btn--ghost:hover { border-color: var(--copper); color: var(--copper-deep); }

.section--ink .btn--primary,
.hero .btn--primary,
.page-hero .btn--primary,
.cta-band .btn--primary {
  background: var(--copper-light);
  color: var(--ink);
  box-shadow: 0 12px 28px -12px rgba(232, 147, 91, 0.55);
}
.section--ink .btn--primary:hover,
.hero .btn--primary:hover,
.page-hero .btn--primary:hover,
.cta-band .btn--primary:hover { background: #F0A470; color: var(--ink); }

.section--ink .btn--ghost,
.hero .btn--ghost,
.page-hero .btn--ghost,
.cta-band .btn--ghost {
  color: var(--on-ink);
  border-color: rgba(242, 234, 224, 0.35);
}
.section--ink .btn--ghost:hover,
.hero .btn--ghost:hover,
.page-hero .btn--ghost:hover,
.cta-band .btn--ghost:hover { border-color: var(--copper-light); color: var(--copper-light); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(33, 29, 25, 0.96);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
@supports (backdrop-filter: blur(8px)) {
  .site-header { background: rgba(33, 29, 25, 0.82); backdrop-filter: blur(10px); }
}
.site-header.is-scrolled {
  border-bottom-color: var(--line-on-ink);
  box-shadow: 0 12px 32px -20px rgba(0, 0, 0, 0.6);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--on-ink);
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.brand svg { width: 2.1rem; height: 2.1rem; }
.brand .brand-accent { color: var(--copper-light); }
.brand:hover { color: var(--on-ink); }

.site-nav { display: none; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.5rem 0.9rem;
  background: transparent;
  border: 1.5px solid rgba(242, 234, 224, 0.3);
  border-radius: 999px;
  color: var(--on-ink);
  font: 600 0.95rem var(--font-body);
  text-decoration: none;
  cursor: pointer;
}
.nav-toggle:hover { border-color: var(--copper-light); color: var(--copper-light); }

/* Mobile-Panel */
.mobile-nav {
  display: none;
  background: var(--ink);
  border-top: 1px solid var(--line-on-ink);
  padding: 1.25rem var(--gutter) 2rem;
  max-height: calc(100dvh - 4.25rem);
  overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.7rem 0.25rem;
  color: var(--on-ink);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--line-on-ink);
}
.mobile-nav a:hover { color: var(--copper-light); }
.mobile-nav .mobile-nav-group {
  margin: 1rem 0 0.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-ink-soft);
}
.mobile-nav .mobile-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1rem;
}
.mobile-nav .btn { margin-top: 1.25rem; width: 100%; }

@media (min-width: 61em) {
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }

  .site-nav { display: flex; align-items: center; gap: 0.25rem; }
  .site-nav > ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .site-nav a:not(.btn), .nav-sub-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    color: var(--on-ink);
    font: 500 0.98rem var(--font-body);
    text-decoration: none;
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  .site-nav a:not(.btn):hover, .nav-sub-toggle:hover { color: var(--copper-light); }
  .site-nav .btn { margin-left: 0.75rem; min-height: 2.75rem; padding: 0.6rem 1.3rem; }

  .has-sub { position: relative; }
  .nav-sub-toggle svg { transition: transform 0.2s ease; }
  .has-sub.open .nav-sub-toggle svg { transform: rotate(180deg); }

  .nav-dropdown {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 30rem;
    background: var(--card);
    border: 1px solid var(--sand);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lift);
    padding: 0.9rem;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0.15rem 0.75rem;
  }
  .has-sub:hover .nav-dropdown,
  .has-sub:focus-within .nav-dropdown,
  .has-sub.open .nav-dropdown { display: grid; }
  .nav-dropdown::before {
    content: "";
    position: absolute;
    top: -0.6rem;
    left: 0;
    right: 0;
    height: 0.6rem;
  }
  .site-nav .nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.7rem;
    border-radius: var(--radius-sm);
    color: var(--ink);
    font-weight: 500;
  }
  .site-nav .nav-dropdown a:hover { background: var(--paper-2); color: var(--copper-deep); }
  .nav-dropdown a svg { color: var(--copper); flex: none; }
  .site-nav .nav-dropdown a.nav-dropdown-all {
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: 0.35rem;
    border-top: 1px solid var(--sand-soft);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    color: var(--copper-deep);
    font-weight: 600;
  }
}

/* ---------- Hero (Startseite) ---------- */

.hero {
  position: relative;
  background: var(--ink);
  color: var(--on-ink);
  overflow: hidden;
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  pointer-events: none;
  z-index: 1;
}
.aurora {
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
}
.aurora span {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  will-change: transform;
}
.aurora span:nth-child(1) {
  width: 44vw; height: 44vw; min-width: 22rem; min-height: 22rem;
  left: 4%; top: 8%;
  background: radial-gradient(circle at 30% 30%, #D96F28, transparent 65%);
  animation: drift-a 26s ease-in-out infinite alternate;
}
.aurora span:nth-child(2) {
  width: 38vw; height: 38vw; min-width: 20rem; min-height: 20rem;
  right: 2%; bottom: 4%;
  background: radial-gradient(circle at 60% 40%, #4C7A5E, transparent 65%);
  animation: drift-b 32s ease-in-out infinite alternate;
}
.aurora span:nth-child(3) {
  width: 26vw; height: 26vw; min-width: 15rem; min-height: 15rem;
  right: 28%; top: -6%;
  background: radial-gradient(circle at 50% 50%, #8A5A33, transparent 70%);
  animation: drift-a 40s ease-in-out infinite alternate-reverse;
}
@keyframes drift-a {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(6%, 9%, 0) scale(1.12); }
}
@keyframes drift-b {
  from { transform: translate3d(0, 0, 0) scale(1.08); }
  to   { transform: translate3d(-7%, -6%, 0) scale(0.96); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(4rem, 9vw, 8.5rem) clamp(3.5rem, 7vw, 7rem);
  max-width: 54rem;
}
.hero h1 {
  color: var(--on-ink);
  font-size: clamp(2.5rem, 1.4rem + 5.5vw, 4.6rem);
  margin-bottom: 0.5em;
}
.hero h1 em {
  font-style: normal;
  color: var(--copper-light);
}
.hero .hero-lead {
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.3rem);
  color: var(--on-ink-soft);
  max-width: 40rem;
  margin-bottom: 2rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.75rem;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero-chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line-on-ink);
  border-radius: 999px;
  background: rgba(242, 234, 224, 0.06);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--on-ink-soft);
}
.hero-chips svg { color: var(--copper-light); flex: none; }

/* ---------- Page-Hero (Unterseiten) ---------- */

.page-hero {
  position: relative;
  background: var(--ink);
  color: var(--on-ink);
  overflow: hidden;
  isolation: isolate;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  pointer-events: none;
}
.page-hero .aurora span { opacity: 0.4; }
.page-hero-inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(2.75rem, 5vw, 4.5rem) clamp(2.5rem, 4vw, 4rem);
  max-width: 50rem;
}
.page-hero h1 { color: var(--on-ink); margin-bottom: 0.4em; }
.page-hero .page-lead {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem);
  color: var(--on-ink-soft);
  margin-bottom: 0;
  max-width: 42rem;
}

.breadcrumbs {
  position: relative;
  z-index: 2;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumbs li { display: inline-flex; align-items: center; gap: 0.35rem; margin: 0; }
.breadcrumbs li + li::before { content: "/"; color: var(--on-ink-soft); opacity: 0.6; }
.breadcrumbs a { color: var(--on-ink-soft); text-decoration: none; }
.breadcrumbs a:hover { color: var(--copper-light); }
.breadcrumbs [aria-current="page"] { color: var(--on-ink); font-weight: 500; }

/* ---------- Karten & Raster ---------- */

.grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 40em) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 52em) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--card);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-card);
}
.card h3 { margin-bottom: 0.4em; }
.card p:last-child { margin-bottom: 0; }
.card .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(140deg, #F7E3D2, #F2D4BA);
  color: var(--copper-deep);
  margin-bottom: 1.1rem;
}

a.card { text-decoration: none; color: inherit; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
a.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: #D9B896;
}
a.card:hover h3 { color: var(--copper-deep); }
.card-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--copper-deep);
  margin-top: 0.75rem;
}

/* Bento (Startseite Vorteile) */
.bento { display: grid; gap: 1.25rem; }
@media (min-width: 52em) {
  .bento { grid-template-columns: repeat(6, 1fr); }
  .bento > :nth-child(1) { grid-column: span 4; }
  .bento > :nth-child(2) { grid-column: span 2; }
  .bento > :nth-child(3) { grid-column: span 2; }
  .bento > :nth-child(4) { grid-column: span 2; }
  .bento > :nth-child(5) { grid-column: span 2; }
}
.bento .card--feature {
  background: linear-gradient(150deg, #2C2620, #211D19 60%);
  border-color: #46392C;
  color: var(--on-ink);
}
.bento .card--feature h3 { color: var(--on-ink); }
.bento .card--feature p { color: var(--on-ink-soft); }
.bento .card--feature .card-icon {
  background: rgba(232, 147, 91, 0.14);
  color: var(--copper-light);
}

/* ---------- Schritte ---------- */

.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.25rem; }
@media (min-width: 52em) { .steps--row { grid-template-columns: repeat(3, 1fr); } }
.step {
  position: relative;
  background: var(--card);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 1.6rem;
  margin: 0;
  box-shadow: var(--shadow-card);
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--copper);
  display: block;
  margin-bottom: 0.75rem;
}
.step h3 { font-size: 1.2rem; }
.step p { color: var(--text-soft); margin-bottom: 0; }
.step .step-meta {
  display: inline-block;
  margin-top: 0.9rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--pine-soft);
  color: var(--pine);
  font-size: 0.82rem;
  font-weight: 600;
}

/* ---------- Statistiken ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
}
@media (min-width: 52em) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: left; }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 1.6rem + 2.4vw, 3.4rem);
  font-weight: 700;
  color: var(--copper-light);
  line-height: 1.05;
  display: block;
  font-variant-numeric: tabular-nums;
}
.stat-label { color: var(--on-ink-soft); font-size: 0.95rem; margin-top: 0.4rem; display: block; }

/* ---------- Zwei Wege (Self-Service vs. Betreuung) ---------- */

.paths { display: grid; gap: 1.25rem; }
@media (min-width: 52em) { .paths { grid-template-columns: 1fr 1fr; } }
.path {
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1px solid var(--sand);
  background: var(--card);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.path--highlight {
  background: linear-gradient(155deg, #2E2113, #211D19 55%);
  border-color: #5A4128;
  color: var(--on-ink);
}
.path--highlight h3 { color: var(--on-ink); }
.path--highlight p, .path--highlight li { color: var(--on-ink-soft); }
.path-badge {
  align-self: flex-start;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
  background: var(--pine-soft);
  color: var(--pine);
}
.path--highlight .path-badge { background: rgba(232, 147, 91, 0.16); color: var(--copper-light); }
.path ul { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.path li {
  padding-left: 1.7rem;
  position: relative;
  margin-bottom: 0.55rem;
}
.path li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: var(--pine-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5 7 11l5-6' fill='none' stroke='%233E5C4B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/70% no-repeat;
}
.path--highlight li::before {
  background-color: rgba(232, 147, 91, 0.16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5 7 11l5-6' fill='none' stroke='%23E8935B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.path .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Checkliste (Fachseiten) ---------- */

.checklist { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.checklist li {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 3rem;
  background: var(--card);
  border: 1px solid var(--sand);
  border-radius: var(--radius-sm);
  margin-bottom: 0.6rem;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--pine-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5 7 11l5-6' fill='none' stroke='%233E5C4B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/65% no-repeat;
}

/* ---------- Editorial / Prose ---------- */

.prose { max-width: 46rem; }
.prose h2 { margin-top: 2.2em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.6em; }
.prose p, .prose li { color: var(--text); }
.prose .lead { font-size: 1.15rem; color: var(--text-soft); }

.note {
  display: flex;
  gap: 0.85rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--sand-soft);
  border: 1px solid var(--sand);
  font-size: 0.95rem;
  color: var(--text-soft);
  margin: 1.75rem 0;
}
.note svg { flex: none; color: var(--copper-deep); margin-top: 0.15rem; }
.note p { margin: 0; }

.callout {
  border-left: 4px solid var(--copper);
  background: var(--card);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  box-shadow: var(--shadow-card);
}
.callout p:last-child { margin-bottom: 0; }

/* ---------- FAQ ---------- */

.faq { max-width: 50rem; }
.faq details {
  background: var(--card);
  border: 1px solid var(--sand);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  min-height: 3rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--sand-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 3.5v9M3.5 8h9' stroke='%239C4A15' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") center/60% no-repeat;
  transition: transform 0.25s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--copper-deep); }
.faq .faq-body { padding: 0 1.3rem 1.2rem; color: var(--text-soft); }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* ---------- CTA-Band ---------- */

.cta-band {
  position: relative;
  background: var(--ink);
  color: var(--on-ink);
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 90% at 12% 10%, rgba(194, 94, 30, 0.4), transparent 65%),
    radial-gradient(55% 85% at 90% 92%, rgba(62, 92, 75, 0.45), transparent 65%);
  z-index: 0;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  pointer-events: none;
  z-index: 1;
}
.cta-band .container {
  position: relative;
  z-index: 2;
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
  text-align: center;
}
.cta-band h2 {
  color: var(--on-ink);
  max-width: 32ch;
  margin-inline: auto;
}
.cta-band p {
  color: var(--on-ink-soft);
  max-width: 52ch;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}
.cta-band .hero-cta { justify-content: center; margin-bottom: 0; }
.cta-band .cta-note { font-size: 0.9rem; margin: 1.25rem auto 0; color: var(--on-ink-soft); }

/* ---------- Formular (Kontakt) ---------- */

.form-grid { display: grid; gap: 1.1rem; }
@media (min-width: 40em) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .form-field--full { grid-column: 1 / -1; }
}
.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  min-height: 3rem;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  background: var(--card);
  font: 400 1rem var(--font-body);
  color: var(--text);
}
.form-field textarea { min-height: 9rem; resize: vertical; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: 3px solid rgba(176, 78, 18, 0.35);
  outline-offset: 0;
  border-color: var(--copper-strong);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--on-ink-soft);
  padding-block: clamp(3rem, 5vw, 4.5rem) 2rem;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  gap: 2.25rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 52em) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.site-footer .brand { font-size: 1.15rem; margin-bottom: 0.9rem; }
.footer-tagline { max-width: 26rem; }
.footer-col h2 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-ink);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.site-footer a { color: var(--on-ink-soft); text-decoration: none; }
.site-footer a:hover { color: var(--copper-light); }
.footer-bottom {
  border-top: 1px solid var(--line-on-ink);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
  justify-content: space-between;
  font-size: 0.875rem;
}
.footer-bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-bottom li { margin: 0; }

/* ---------- Scroll-Reveal (nur mit JS aktiv) ---------- */

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}
html.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Reduzierte Bewegung ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html.js [data-reveal] { opacity: 1; transform: none; }
  .aurora span { animation: none; }
  .btn:hover, a.card:hover { transform: none; }
}

/* ---------- Druck ---------- */

@media print {
  .site-header, .site-footer, .cta-band, .mobile-nav, .aurora { display: none; }
  body { background: #fff; color: #000; }
}
