/* ==========================================================================
   Klare Zahlen – Sylvia Mayrhuber
   Zentrale Stylesheet-Datei
   --------------------------------------------------------------------------
   Aufbau:
   0. Self-hosted Fonts (DSGVO-konform, kein Google-CDN)
   1. Design Tokens (Farben, Typografie, Spacing, Radien, Schatten)
   2. Reset & Basis
   3. Layout-Primitives (Container, Grid, Sektionen)
   4. Typografie
   5. Komponenten (Buttons, Karten, Formulare, Badges)
   6. Header & Navigation
   7. Footer
   8. Seiten-spezifische Sektionen (Hero, Leistungen, etc.)
   9. Utilities
   10. Responsive (Mobile-first bzw. Anpassungen)
   ========================================================================== */


/* 0. SELF-HOSTED FONTS
   --------------------------------------------------------------------------
   Fraunces (Serif, Headlines) + Inter (Sans, Body) — lokal gehostet statt
   Google Fonts CDN, damit keine IP-Adressen an Google übermittelt werden.
   ------------------------------------------------------------------------- */

/* Fraunces — normal (variable: 400–500) */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('assets/fonts/fraunces-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('assets/fonts/fraunces-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Fraunces — italic 400 */
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/fraunces-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/fraunces-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Inter — normal (variable: 400–600) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


/* 1. DESIGN TOKENS
   ------------------------------------------------------------------------- */
:root {
  /* Farbpalette — moosgrün / salbeigrün / warmes Off-White */
  --color-moss:         #3D5A40;   /* Hauptfarbe */
  --color-moss-dark:    #2A3F2B;   /* Dunkles Moosgrün — Hover / Footer */
  --color-moss-deeper:  #1F2F20;
  --color-moss-soft:    #6B8E6F;   /* helle Variante */

  --color-sage:         #A8B89E;   /* Salbeigrün — Akzent */
  --color-sage-light:   #D4DBCD;   /* Hintergrundakzent */
  --color-sage-50:      #EFF2EB;

  --color-off-white:    #FAF8F3;   /* Haupt-Hintergrund */
  --color-cream:        #F5F1E8;   /* Sektionsakzent */
  --color-white:        #FFFFFF;

  --color-text:         #2A2E29;   /* Fließtext */
  --color-text-muted:   #5C635A;   /* Subtext */
  --color-text-light:   #8A8F87;
  --color-border:       #E4E2DA;
  --color-border-soft:  #EFEDE5;

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

  --fs-base:     1rem;           /* 16px */
  --fs-sm:       0.875rem;
  --fs-xs:       0.8125rem;
  --fs-lg:       1.125rem;
  --fs-xl:       1.375rem;

  /* Fluid Headlines (clamp: min, preferred, max) */
  --fs-h1:       clamp(2.25rem, 1.4rem + 3.5vw, 4rem);
  --fs-h2:       clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
  --fs-h3:       clamp(1.25rem, 1rem + 1vw, 1.625rem);
  --fs-hero:     clamp(2.75rem, 1.6rem + 4.5vw, 4.75rem);

  /* Line heights & tracking */
  --lh-tight:    1.15;
  --lh-snug:     1.3;
  --lh-body:     1.65;
  --lh-relaxed:  1.75;

  /* Spacing Skala */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 880px;
  --container-wide: 1320px;

  /* Radien */
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* Schatten — dezent, nie aggressiv */
  --shadow-sm: 0 1px 2px rgba(42, 63, 43, 0.04), 0 1px 1px rgba(42, 63, 43, 0.03);
  --shadow:    0 4px 16px rgba(42, 63, 43, 0.06), 0 1px 2px rgba(42, 63, 43, 0.04);
  --shadow-lg: 0 16px 40px rgba(42, 63, 43, 0.08), 0 4px 10px rgba(42, 63, 43, 0.04);

  /* Transitions */
  --ease:        cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-fast:      150ms var(--ease);
  --t-base:      220ms var(--ease);
  --t-slow:      360ms var(--ease);

  /* Header */
  --header-h:    80px;
}


/* 2. RESET & BASIS
   ------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--color-text);
  background-color: var(--color-off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--color-moss);
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover {
  color: var(--color-moss-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-moss);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: inherit;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0 0 var(--space-4);
}

/* Skip-Link für Screenreader */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-4);
  padding: var(--space-3) var(--space-5);
  background: var(--color-moss);
  color: var(--color-white);
  border-radius: var(--radius);
  z-index: 1000;
  transition: top var(--t-base);
}

.skip-link:focus {
  top: var(--space-4);
  color: var(--color-white);
}


/* 3. LAYOUT-PRIMITIVES
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.container--wide {
  max-width: var(--container-wide);
}

.section {
  padding-block: var(--space-20);
}

.section--tight {
  padding-block: var(--space-16);
}

.section--spacious {
  padding-block: var(--space-24);
}

.section--cream {
  background-color: var(--color-cream);
}

.section--sage {
  background-color: var(--color-sage-50);
}

.section--moss {
  background-color: var(--color-moss);
  color: var(--color-sage-light);
}

.section-header {
  max-width: 720px;
  margin-bottom: var(--space-12);
}

.section-header--center {
  margin-inline: auto;
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: var(--space-4);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-moss);
}

.section-title {
  margin: 0 0 var(--space-5);
  font-family: var(--font-serif);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: var(--lh-snug);
  letter-spacing: -0.01em;
  color: var(--color-moss-deeper);
}

.section-lead {
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  color: var(--color-text-muted);
  margin: 0;
}

.grid {
  display: grid;
  gap: var(--space-8);
}

.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }


/* 4. TYPOGRAFIE
   ------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: var(--lh-snug);
  color: var(--color-moss-deeper);
  margin: 0 0 var(--space-4);
  letter-spacing: -0.01em;
}

h1 { font-size: var(--fs-h1); line-height: var(--lh-tight); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-xl); font-weight: 500; }

.lead {
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  color: var(--color-text-muted);
}


/* 5. KOMPONENTEN
   ------------------------------------------------------------------------- */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.95rem 1.75rem;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.005em;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background-color var(--t-base),
    color var(--t-base),
    border-color var(--t-base),
    transform var(--t-fast),
    box-shadow var(--t-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--color-moss);
  outline-offset: 3px;
}

.btn--primary {
  background-color: var(--color-moss);
  color: var(--color-white);
}

.btn--primary:hover {
  background-color: var(--color-moss-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-moss);
  border-color: var(--color-moss);
}

.btn--secondary:hover {
  background-color: var(--color-moss);
  color: var(--color-white);
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-moss);
  padding-inline: var(--space-3);
}

.btn--ghost:hover {
  color: var(--color-moss-dark);
  background-color: var(--color-sage-50);
}

.btn--light {
  background-color: var(--color-white);
  color: var(--color-moss-dark);
}

.btn--light:hover {
  background-color: var(--color-sage-50);
  color: var(--color-moss-deeper);
}

.btn .arrow {
  transition: transform var(--t-base);
}

.btn:hover .arrow {
  transform: translateX(3px);
}

/* Karten */
.card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition:
    transform var(--t-base),
    box-shadow var(--t-base),
    border-color var(--t-base);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-sage);
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background-color: var(--color-sage-50);
  color: var(--color-moss);
  margin-bottom: var(--space-5);
}

.card__icon svg {
  width: 24px;
  height: 24px;
}

.card__title {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: 500;
  margin: 0 0 var(--space-3);
  color: var(--color-moss-deeper);
}

.card__text {
  margin: 0;
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
  font-weight: 500;
  color: var(--color-moss);
}

.card__link .arrow {
  transition: transform var(--t-base);
}

.card:hover .card__link .arrow {
  transform: translateX(4px);
}

/* Feature-Karte (Leistungsbereich-Variante, etwas größer) */
.feature-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--t-base),
    box-shadow var(--t-base),
    border-color var(--t-base);
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-sage);
}

.feature-card__label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-moss);
  margin-bottom: var(--space-4);
}

.feature-card__title {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 400;
  line-height: var(--lh-snug);
  margin: 0 0 var(--space-4);
  color: var(--color-moss-deeper);
}

.feature-card__text {
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
  margin: 0 0 var(--space-6);
  flex: 1;
}

.feature-card__list {
  margin: var(--space-4) 0 0;
  padding: 0;
  list-style: none;
}

.feature-card__list li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-2);
  color: var(--color-text);
  font-size: var(--fs-sm);
}

.feature-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 2px;
  background-color: var(--color-moss-soft);
  border-radius: 2px;
}

/* Vertrauenselemente (Hero-Chips) */
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}

.trust-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-moss);
  display: inline-block;
}

/* Formulare */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.form-label {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-text);
}

.form-label .required {
  color: var(--color-moss);
  margin-left: 2px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: var(--fs-base);
  color: var(--color-text);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-moss);
  box-shadow: 0 0 0 3px rgba(61, 90, 64, 0.12);
}

/* Server-seitig invalidiert (via ?fields=... aus contact.php) */
.form-input.is-invalid,
.form-textarea.is-invalid,
.form-select.is-invalid {
  border-color: #C46B3C;
  background-color: #FDF7F2;
}

.form-input.is-invalid:focus,
.form-textarea.is-invalid:focus,
.form-select.is-invalid:focus {
  border-color: #C46B3C;
  box-shadow: 0 0 0 3px rgba(196, 107, 60, 0.15);
}

.form-textarea {
  min-height: 160px;
  resize: vertical;
}

.form-hint {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
}

.form-consent {
  display: flex;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: var(--space-5);
}

.form-consent.is-invalid {
  color: #C46B3C;
}

.form-consent input[type="checkbox"] {
  margin-top: 0.25rem;
  accent-color: var(--color-moss);
  width: 16px;
  height: 16px;
}

/* Badges / Chips */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.35rem 0.85rem;
  background-color: var(--color-sage-50);
  color: var(--color-moss);
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.04em;
}


/* 6. HEADER & NAVIGATION
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 248, 243, 0.88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base), background-color var(--t-base);
}

.site-header.is-scrolled {
  border-bottom-color: var(--color-border-soft);
  background-color: rgba(250, 248, 243, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  line-height: 1;
  transition: opacity 160ms ease;
}

.logo:hover {
  opacity: 0.82;
}

.logo-img {
  display: block;
  width: auto;
  height: 44px;
  max-width: 100%;
}

@media (max-width: 720px) {
  .logo-img { height: 38px; }
}

.footer-brand .logo-img { height: 42px; }

.logo-mark {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.logo-sub {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding-left: var(--space-3);
  border-left: 1px solid var(--color-border);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav-list a {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-pill);
  transition: background-color var(--t-fast), color var(--t-fast);
}

.nav-list a:hover {
  color: var(--color-moss);
  background-color: var(--color-sage-50);
}

.nav-list a.is-active {
  color: var(--color-moss);
  background-color: var(--color-sage-50);
}

/* Primary-Button in der Navigation — Override gegen `.nav-list a` Farbe/Padding,
   damit der Text auf moosgrünem Hintergrund weiß (statt dunkel) bleibt. */
.main-nav .nav-list .btn--primary {
  color: var(--color-white);
  background-color: var(--color-moss);
  padding: 0.65rem 1.25rem;
  font-size: var(--fs-sm);
}

.main-nav .nav-list .btn--primary:hover,
.main-nav .nav-list .btn--primary:focus-visible {
  color: var(--color-white);
  background-color: var(--color-moss-dark);
}

.nav-cta {
  margin-left: var(--space-2);
}

/* Mobile-Menü-Button */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: background-color var(--t-fast);
}

.nav-toggle:hover {
  background-color: var(--color-sage-50);
}

.nav-toggle__bar {
  position: relative;
  width: 22px;
  height: 2px;
  background-color: var(--color-moss-deeper);
  border-radius: 2px;
  transition: transform var(--t-base), background-color var(--t-base);
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background-color: var(--color-moss-deeper);
  border-radius: 2px;
  transition: transform var(--t-base), top var(--t-base);
}

.nav-toggle__bar::before { top: -7px; }
.nav-toggle__bar::after  { top: 7px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__bar {
  background-color: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after {
  top: 0;
  transform: rotate(-45deg);
}


/* 7. FOOTER
   ------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-moss-deeper);
  color: var(--color-sage-light);
  padding-block: var(--space-20) var(--space-8);
  margin-top: var(--space-24);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

.footer-brand .logo-mark {
  color: var(--color-white);
  font-size: 1.5rem;
}

.footer-brand .logo-sub {
  color: var(--color-sage);
  border-left-color: rgba(255,255,255,0.15);
}

.footer-about {
  margin-top: var(--space-5);
  color: rgba(255,255,255,0.7);
  line-height: var(--lh-relaxed);
  max-width: 32ch;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-sage);
  margin-bottom: var(--space-5);
}

.footer-col ul li {
  margin-bottom: var(--space-3);
}

.footer-col a {
  color: rgba(255,255,255,0.75);
  font-size: var(--fs-sm);
  transition: color var(--t-fast);
}

.footer-col a:hover {
  color: var(--color-white);
}

.footer-contact li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-3);
}

.footer-contact svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 0.2rem;
  color: var(--color-sage);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.55);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-6);
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.65);
}

.footer-bottom-links a:hover {
  color: var(--color-white);
}


/* 8. SEITENSEKTIONEN
   ------------------------------------------------------------------------- */

/* === HERO (Startseite) === */
.hero {
  position: relative;
  padding-block: clamp(var(--space-16), 10vw, var(--space-32)) var(--space-20);
  background:
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(168, 184, 158, 0.2), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(168, 184, 158, 0.15), transparent 60%),
    linear-gradient(180deg, rgba(250, 248, 243, 0.55) 0%, rgba(245, 241, 232, 0.6) 100%),
    url('assets/images/hero-bg.jpg') center / cover no-repeat;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero-content {
  max-width: 640px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.4rem 0.95rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-moss);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.hero-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  background-color: var(--color-moss-soft);
  border-radius: 50%;
}

.hero-title {
  font-size: var(--fs-hero);
  line-height: 1.08;
  font-weight: 400;
  color: var(--color-moss-deeper);
  margin: 0 0 var(--space-6);
  letter-spacing: -0.015em;
}

.hero-title em {
  font-style: italic;
  color: var(--color-moss);
}

.hero-sub {
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  color: var(--color-text-muted);
  margin: 0 0 var(--space-8);
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* Hero visuelles Element — abstraktes Stilblatt statt Foto */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 480px;
  margin-left: auto;
}

.hero-visual__card {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, var(--color-sage-light) 0%, var(--color-sage) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-visual__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(255,255,255,0.4), transparent 50%),
    radial-gradient(circle at 80% 90%, rgba(42, 63, 43, 0.2), transparent 55%);
}

.hero-visual__accent {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  max-width: 260px;
}

.hero-visual__accent-label {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-moss);
  margin-bottom: var(--space-2);
}

.hero-visual__accent-text {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.4;
  color: var(--color-moss-deeper);
  margin: 0;
}

.hero-visual__badge {
  position: absolute;
  top: -18px;
  right: -18px;
  background-color: var(--color-moss-deeper);
  color: var(--color-white);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.hero-visual__badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 2px;
}

.hero-visual__badge span {
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-sage);
}

/* === Page Hero (Unterseiten) === */
.page-hero {
  padding-block: var(--space-20) var(--space-16);
  background:
    radial-gradient(ellipse 60% 50% at 90% 0%, rgba(168, 184, 158, 0.25), transparent 60%),
    linear-gradient(180deg, var(--color-off-white) 0%, var(--color-cream) 100%);
}

.page-hero__inner {
  max-width: 760px;
}

.page-hero__eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-moss);
  margin-bottom: var(--space-4);
}

.page-hero__title {
  font-size: var(--fs-h1);
  line-height: 1.1;
  color: var(--color-moss-deeper);
  margin: 0 0 var(--space-5);
}

.page-hero__lead {
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  color: var(--color-text-muted);
  margin: 0;
}

/* === Split (zwei-Spalten-Layout mit Visuellem Block) === */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.split--reverse .split__visual {
  order: 2;
}

.split__content h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-5);
}

.split__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    linear-gradient(150deg, var(--color-sage-light), var(--color-sage));
  box-shadow: var(--shadow-lg);
}

.split__visual--portrait {
  aspect-ratio: 4 / 5;
  max-width: 440px;
  margin-inline: auto;
  background:
    linear-gradient(160deg, var(--color-sage-light) 0%, var(--color-sage) 60%, var(--color-moss-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  padding: var(--space-8);
}

.split__visual--portrait::before {
  content: "Portrait";
  position: absolute;
  top: var(--space-4);
  left: var(--space-5);
  font-family: var(--font-sans);
  font-style: normal;
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* Portrait mit echtem Foto: Platzhalter-Styling ausblenden, Bild formatfüllend */
.split__visual--has-image {
  background: var(--color-cream);
  color: transparent;
  padding: 0;
  margin: 0;
}

.split__visual--has-image::before {
  display: none;
}

.split__visual--has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* === Wertigkeits-Liste === */
.value-list {
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.value-list li {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}

.value-list__marker {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background-color: var(--color-sage-50);
  color: var(--color-moss);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
}

.value-list__body h3 {
  margin: 0 0 var(--space-2);
  font-size: 1.125rem;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--color-moss-deeper);
}

.value-list__body p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
}

/* === Philosophie-Sektion (ruhiges Statement) === */
.philosophy {
  text-align: center;
  padding-block: var(--space-24);
  background-color: var(--color-moss);
  color: var(--color-white);
}

.philosophy .container {
  max-width: 820px;
}

.philosophy__title {
  font-family: var(--font-serif);
  font-size: var(--fs-h2);
  font-weight: 400;
  color: var(--color-white);
  line-height: var(--lh-snug);
  margin: 0 0 var(--space-6);
  letter-spacing: -0.01em;
}

.philosophy__text {
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.philosophy__eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: var(--space-5);
}

/* === News / Aktuelles-Karten === */
.news-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.news-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.news-card__image {
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, var(--color-sage-light), var(--color-sage));
  position: relative;
}

.news-card__image--alt {
  background:
    linear-gradient(135deg, var(--color-cream) 0%, var(--color-sage-light) 100%);
}

.news-card__image--dark {
  background:
    linear-gradient(135deg, var(--color-moss-soft) 0%, var(--color-moss) 100%);
}

.news-card__body {
  padding: var(--space-6) var(--space-6) var(--space-8);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card__meta {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-moss);
  margin-bottom: var(--space-3);
}

.news-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 var(--space-3);
  color: var(--color-moss-deeper);
}

.news-card__text {
  margin: 0 0 var(--space-5);
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  flex: 1;
}

.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-moss);
}

/* === Downloads-Liste === */
.downloads {
  display: grid;
  gap: var(--space-4);
}

.download-item {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  padding: var(--space-5) var(--space-6);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}

.download-item:hover {
  border-color: var(--color-sage);
  box-shadow: var(--shadow-sm);
}

.download-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: var(--color-sage-50);
  color: var(--color-moss);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.download-item__body {
  flex: 1;
  min-width: 0;
}

.download-item__title {
  font-weight: 500;
  color: var(--color-moss-deeper);
  margin: 0 0 2px;
  font-size: var(--fs-base);
}

.download-item__meta {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  margin: 0;
}

.download-item__action {
  flex-shrink: 0;
  color: var(--color-moss);
  font-size: var(--fs-sm);
  font-weight: 500;
}

/* Pending/Coming-soon Variante — dezent deaktiviert wirkend */
.download-item--pending {
  opacity: 0.65;
  cursor: not-allowed;
}

.download-item--pending:hover {
  border-color: var(--color-border);
  box-shadow: none;
}

.download-item--pending .download-item__action {
  color: var(--color-text-light);
  font-style: italic;
  font-weight: 400;
}

/* === Kontakt-Sektion === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-16);
  align-items: start;
}

.contact-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  box-shadow: var(--shadow-sm);
}

.contact-info__item {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--color-border-soft);
}

.contact-info__item:last-child {
  border-bottom: 0;
}

.contact-info__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background-color: var(--color-sage-50);
  color: var(--color-moss);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-info__label {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin: 0 0 2px;
}

.contact-info__value {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--color-moss-deeper);
  margin: 0;
}

.contact-info__value a {
  color: inherit;
}

.contact-info__value a:hover {
  color: var(--color-moss);
}

/* === CTA-Band === */
.cta-band {
  padding-block: var(--space-20);
  background:
    linear-gradient(135deg, var(--color-moss-deeper) 0%, var(--color-moss) 100%);
  color: var(--color-white);
  text-align: center;
}

.cta-band__inner {
  max-width: 720px;
  margin-inline: auto;
}

.cta-band h2 {
  color: var(--color-white);
  margin-bottom: var(--space-5);
}

.cta-band p {
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-8);
}

.cta-band .btn--light {
  color: var(--color-moss-deeper);
}

/* === Leistungen: Bullet-Punkte-Sektion === */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.benefit {
  padding: var(--space-6) 0;
  border-top: 2px solid var(--color-moss);
}

.benefit__num {
  font-family: var(--font-serif);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--color-moss);
  margin-bottom: var(--space-3);
}

.benefit__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 var(--space-3);
  color: var(--color-moss-deeper);
}

.benefit__text {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}

/* === Impressum/Datenschutz: Prose-Layout === */
.prose {
  max-width: 760px;
  margin-inline: auto;
  color: var(--color-text);
}

.prose h2 {
  font-size: var(--fs-h3);
  margin-top: var(--space-12);
  margin-bottom: var(--space-4);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border-soft);
}

.prose h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.prose h3 {
  font-size: var(--fs-xl);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}

.prose p,
.prose ul {
  color: var(--color-text);
  line-height: var(--lh-relaxed);
}

.prose ul {
  padding-left: var(--space-5);
  margin-bottom: var(--space-5);
}

.prose ul li {
  list-style: disc;
  margin-bottom: var(--space-2);
}

.prose a {
  color: var(--color-moss);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.prose strong {
  color: var(--color-moss-deeper);
  font-weight: 600;
}


/* 9. UTILITIES
   ------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Dekoratives Bild-Band (volle Breite, beschnitten) */
.image-band {
  margin: 0;
  max-height: 360px;
  overflow: hidden;
}

.image-band img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 40%;
}

@media (max-width: 720px) {
  .image-band,
  .image-band img {
    height: 200px;
  }
}

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.no-mb-last > *:last-child { margin-bottom: 0; }


/* 10. RESPONSIVE — Breakpoints
   ------------------------------------------------------------------------- */

/* Tablet — 900px unter */
@media (max-width: 1100px) {

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    margin-inline: auto;
  }

  .hero-eyebrow {
    margin-inline: auto;
  }

  .hero-sub {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .trust-chips {
    justify-content: center;
  }

  /* Mobile: Sticker-Overlap-Modell auflösen — stattdessen saubere Flex-Reihe
     mit Accent + Badge als gleichwertige Kacheln. Kein Overlap mehr
     möglich, egal wie eng der Viewport wird. */
  .hero-visual {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin: var(--space-10) auto 0;
    aspect-ratio: auto;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    align-items: stretch;
  }

  .hero-visual__card {
    display: none;
  }

  .hero-visual__accent,
  .hero-visual__badge {
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    max-width: none;
    box-shadow: var(--shadow-sm);
  }

  .hero-visual__accent {
    order: 1;
    flex: 2 1 260px;
    text-align: left;
    padding: var(--space-5) var(--space-6);
  }

  .hero-visual__badge {
    order: 2;
    flex: 1 1 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-4) var(--space-5);
  }

  .hero-visual__badge strong {
    font-size: 1.75rem;
  }

  .hero-visual__accent-text {
    font-size: 1rem;
  }
}

@media (max-width: 960px) {

  .split {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .split--reverse .split__visual {
    order: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile — 960px unter */
@media (max-width: 960px) {

  :root {
    --header-h: 68px;
  }

  .section { padding-block: var(--space-16); }
  .section--spacious { padding-block: var(--space-20); }

  /* Desktop-Nav ausblenden, Burger-Button einblenden */
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav .nav-list {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background-color: var(--color-off-white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-6);
    border-top: 1px solid var(--color-border-soft);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition:
      transform var(--t-base),
      opacity var(--t-base),
      visibility var(--t-base);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .main-nav .nav-list.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav .nav-list li {
    border-bottom: 1px solid var(--color-border-soft);
  }

  .main-nav .nav-list li:last-child {
    border-bottom: 0;
    margin-top: var(--space-4);
  }

  .main-nav .nav-list a {
    display: block;
    padding: var(--space-4) var(--space-3);
    font-size: var(--fs-base);
    border-radius: 0;
  }

  .main-nav .nav-list a:hover,
  .main-nav .nav-list a.is-active {
    background-color: transparent;
  }

  .main-nav .nav-cta {
    margin-left: 0;
    display: block;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .footer-brand {
    grid-column: auto;
  }

  /* Bei sehr kleinen Viewports: Accent + Badge stapeln (Badge oben als Akzent). */
  .hero-visual {
    max-width: 360px;
    flex-direction: column;
    gap: var(--space-3);
    margin-top: var(--space-6);
  }

  .hero-visual__accent {
    flex: none;
    padding: var(--space-4) var(--space-5);
  }

  .hero-visual__accent-text {
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .hero-visual__badge {
    flex: none;
    flex-direction: row;
    gap: var(--space-2);
    align-items: baseline;
    padding: var(--space-3) var(--space-4);
  }

  .hero-visual__badge strong {
    font-size: 1.35rem;
    margin-bottom: 0;
  }

  .hero-visual__badge span {
    font-size: 0.7rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .container {
    padding-inline: var(--space-5);
  }

  .feature-card,
  .contact-card,
  .card {
    padding: var(--space-6);
  }

  .site-footer {
    padding-block: var(--space-16) var(--space-6);
    margin-top: var(--space-16);
  }
}

/* Danke-Seite: Schritt-Karten (3-spaltig) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.step-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.step-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.step-card__num {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  line-height: 1;
  color: var(--color-moss-soft);
  margin-bottom: var(--space-5);
}

.step-card__title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: var(--lh-snug);
  margin: 0 0 var(--space-3);
  color: var(--color-moss-deeper);
}

.step-card__text {
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
  margin: 0;
}

@media (max-width: 860px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* Kontaktformular: Honeypot + Fehlerbanner */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-error {
  background-color: #FBEFE8;
  border: 1px solid #E3C6B4;
  color: #7A3A18;
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-6);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}

.form-error strong {
  display: block;
  margin-bottom: var(--space-1);
  color: #5B2B12;
}

/* FAQ — Akkordeon auf Basis von <details>/<summary> */
.faq {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-border);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  background-color: transparent;
}

/* Default-Disclosure-Marker ausblenden (Webkit + Firefox) */
.faq-item__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  padding: var(--space-5) 0;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  font-weight: 500;
  line-height: var(--lh-snug);
  color: var(--color-moss-dark);
  transition: color var(--t-fast);
}

.faq-item__summary::-webkit-details-marker {
  display: none;
}
.faq-item__summary::marker {
  content: "";
}

.faq-item__summary:hover {
  color: var(--color-moss);
}

.faq-item__summary:focus-visible {
  outline: 2px solid var(--color-moss);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

/* Plus-Icon rechts — wird bei [open] zum × */
.faq-item__icon {
  flex: 0 0 auto;
  position: relative;
  width: 22px;
  height: 22px;
  transition: transform var(--t-base);
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background-color: var(--color-moss);
  border-radius: 2px;
}

/* Horizontaler Strich */
.faq-item__icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
}

/* Vertikaler Strich */
.faq-item__icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
}

.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  padding: 0 0 var(--space-6) 0;
  max-width: 68ch;
}

.faq-item__answer p {
  color: var(--color-text-muted);
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.faq-item__answer p + p {
  margin-top: var(--space-3);
}

/* Mobile — etwas engere Typografie */
@media (max-width: 640px) {
  .faq-item__summary {
    font-size: var(--fs-lg);
    padding: var(--space-4) 0;
    gap: var(--space-4);
  }

  .faq-item__icon {
    width: 18px;
    height: 18px;
  }
}

/* Reduzierte Animationen respektieren */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
