/* ============================================
   SCHUHWIEDU — Design System
   ============================================ */

:root {
  /* Farben */
  --c-bg:           #faf8f3;   /* Warmes Off-White */
  --c-bg-alt:       #f1ede2;   /* Etwas dunkler für Section-Wechsel */
  --c-bg-dark:      #1e2416;   /* Dunkles Waldgrün für Dark-Sections */
  --c-text:         #1e2416;   /* Tiefes Waldgrün als Text */
  --c-text-muted:   #555e4a;   /* Gedämpfter Text — AAA-Kontrast auf #faf8f3 */
  --c-text-light:   #faf8f3;   /* Text auf dunklem Hintergrund */
  --c-text-light-muted: rgba(250, 248, 243, 0.7);

  --c-primary:      #3a5c1a;   /* Logo-Grün — Haupt-Akzent */
  --c-primary-dark: #243312;   /* Forest — für Hover */
  --c-gold:         #c9a84c;   /* Gold — sehr reduziert */
  --c-gold-dark:    #b8942e;
  --c-accent:       #c75825;   /* Burnt-Orange — Energie, sehr reduziert */
  --c-accent-soft:  rgba(199, 88, 37, 0.12);
  --c-line:         rgba(30, 36, 22, 0.08);
  --c-line-light:   rgba(250, 248, 243, 0.15);

  /* Typografie */
  --font-serif:  "Fraunces", Georgia, serif;
  --font-sans:   "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing-Scale (8px Grid) */
  --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 */
  --max-width: 1200px;
  --header-h: 64px;
  --radius: 6px;
  --radius-lg: 12px;
  --radius-btn: 10px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--c-bg);
}
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}
img, svg, iframe { display: block; max-width: 100%; }

/* Color-Grading: dezent warmer Filter für visuelle Bild-Konsistenz */
.method-step-img img,
.guest-image > img,
.split-visual img,
.team-avatar img {
  filter: saturate(1.05) contrast(1.03);
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 3px; border-radius: 4px; }

/* ============ SKIP-LINK (Accessibility) ============ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 1000;
  padding: var(--space-3) var(--space-5);
  background: var(--c-primary);
  color: var(--c-text-light);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0 0 var(--radius) 0;
  transition: top 0.2s var(--ease);
}
.skip-link:focus {
  top: 0;
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============ SCROLL-REVEAL ANIMATIONEN ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger-Items: erst sichtbar wenn Eltern .is-visible bekommt */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-stagger.is-visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 100ms; }
.reveal-stagger.is-visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 200ms; }
.reveal-stagger.is-visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 300ms; }
.reveal-stagger.is-visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 400ms; }
.reveal-stagger.is-visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 500ms; }

/* ============ TYPOGRAFIE ============ */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: var(--space-4);
}
.eyebrow-light { color: var(--c-gold); }

.section-title,
.hero-title,
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--c-text);
}
.hero-title em,
.section-title em {
  font-style: italic;
  font-weight: 600;
  color: var(--c-primary);
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.section-title    { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: var(--space-3); }

h3 { font-size: 1.375rem; line-height: 1.3; margin-bottom: var(--space-3); font-weight: 600; }

.section-lead, .hero-lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--c-text-muted);
  max-width: 60ch;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 26px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-btn);
  border: 1.5px solid transparent;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease),
              transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
              border-color 0.2s var(--ease);
  white-space: nowrap;
  min-height: 48px;
  cursor: pointer;
}
.btn:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.08s;
}

.btn .icon { width: 18px; height: 18px; flex-shrink: 0; }
.btn .icon-arrow { width: 18px; height: 18px; transition: transform 0.2s var(--ease); }
.btn:hover .icon-arrow { transform: translateX(4px); }

/* Primär */
.btn-primary {
  background: var(--c-primary);
  color: var(--c-text-light);
  box-shadow: 0 2px 8px rgba(30, 36, 22, 0.08);
}
.btn-primary:hover {
  background: var(--c-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(30, 36, 22, 0.15);
}

/* Sekundär (Outlined) */
.btn-secondary {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.btn-secondary:hover {
  background: var(--c-primary);
  color: var(--c-text-light);
  transform: translateY(-1px);
}

/* Gold (für Anrufen) */
.btn-gold {
  background: var(--c-gold);
  color: var(--c-text);
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.2);
}
.btn-gold:hover {
  background: var(--c-gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(201, 168, 76, 0.3);
}

/* Outline auf dunklem Background */
.btn-outline-light {
  background: transparent;
  color: var(--c-text-light);
  border-color: var(--c-text-light-muted);
}
.btn-outline-light:hover {
  background: var(--c-text-light);
  color: var(--c-text);
  transform: translateY(-1px);
}

/* Compact (für Header) */
.btn-compact {
  padding: 9px 16px;
  font-size: 0.78rem;
  min-height: 40px;
  letter-spacing: 0.05em;
  border-radius: 8px;
}

/* Ghost / Text-Link */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-primary);
  padding: 8px 0;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.2s var(--ease);
}
.btn-ghost .icon-arrow { width: 16px; height: 16px; transition: transform 0.2s var(--ease); }
.btn-ghost:hover { border-color: var(--c-primary); }
.btn-ghost:hover .icon-arrow { transform: translateX(4px); }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-line);
  transition: box-shadow 0.3s var(--ease);
}
@supports (backdrop-filter: blur(16px)) {
  .site-header {
    background: rgba(250, 248, 243, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
}
.site-header.is-scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.header-inner {
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(30, 36, 22, 0.12);
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--c-text);
  line-height: 1;
}
.logo-text em { color: var(--c-accent); font-style: normal; font-weight: 800; }
.footer-brand .logo-mark { width: 36px; height: 36px; margin-bottom: var(--space-2); }

.nav-primary ul {
  display: flex;
  gap: var(--space-8);
}
.nav-primary a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-text);
  padding: 8px 0;
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav-primary a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--c-accent);
  transition: width 0.25s var(--ease);
}
.nav-primary a:hover { color: var(--c-accent); }
.nav-primary a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  width: 22px; height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ BILD-PLATZHALTER (für noch fehlende Fotos) ============ */
.img-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-6);
  text-align: center;
  background:
    repeating-linear-gradient(
      135deg,
      var(--c-bg-alt) 0 14px,
      #ece5d2 14px 28px
    );
  border: 1.5px dashed rgba(58, 92, 26, 0.35);
  border-radius: var(--radius-lg);
  color: var(--c-text-muted);
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250, 248, 243, 0.55);
  pointer-events: none;
}
.img-placeholder > * { position: relative; z-index: 1; }
.img-placeholder svg {
  width: 36px;
  height: 36px;
  color: var(--c-primary);
  opacity: 0.5;
  flex-shrink: 0;
}
.img-placeholder .ph-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.img-placeholder .ph-text {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
  color: var(--c-text);
  max-width: 32ch;
}
.img-placeholder.ph-round { border-radius: 50%; padding: var(--space-3); }
.img-placeholder.ph-round .ph-text { font-size: 0.7rem; }
.img-placeholder.ph-round svg { width: 22px; height: 22px; }
.img-placeholder.ph-round .ph-label { display: none; }

/* ============ HERO WRAP (full-width Container mit warmem BG + Bergen) ============ */
.hero-section-wrap {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #f4ede0 0%, #f1ede2 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--c-line);
}

/* Hero (Content, max-width-zentriert) */
.hero {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + env(safe-area-inset-top, 0px) + var(--space-12)) var(--space-6) var(--space-10);
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-typo {
  min-height: 0;
}

/* Berg-Silhouette als full-width Background im Wrap */
.hero-mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  z-index: 0;
  pointer-events: none;
}
.mtn-back {
  transform-origin: center bottom;
  animation: mtnFloatSlow 14s ease-in-out infinite;
  will-change: transform;
}
.mtn-front {
  transform-origin: center bottom;
  animation: mtnFloatFast 9s ease-in-out infinite;
  will-change: transform;
}
@keyframes mtnFloatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes mtnFloatFast {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Akzent-Glow: dezenter Orange-Schimmer hinter Headline */
.hero-glow {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 700px;
  aspect-ratio: 2 / 1;
  background: radial-gradient(ellipse, rgba(199, 88, 37, 0.14) 0%, transparent 65%);
  filter: blur(18px);
  z-index: 0;
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* Hero-Grid: Text links, Bild rechts */
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: var(--space-12);
  align-items: center;
  padding-bottom: var(--space-10);
}
.hero-content {
  max-width: 620px;
}
.hero-title-large {
  font-size: clamp(2.25rem, 4.8vw, 3.75rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: var(--space-4);
}



/* Hero-Portrait — Bild rechts, Querformat passt zu image2 */
.hero-portrait {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 3;
  justify-self: end;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-bg-alt);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 24px 48px -22px rgba(30, 36, 22, 0.28),
    0 4px 12px rgba(30, 36, 22, 0.06);
  isolation: isolate;
}
.hero-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(30, 36, 22, 0.32) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(1.05) contrast(1.04);
}
.hero-portrait-caption {
  position: absolute;
  bottom: var(--space-3);
  left: var(--space-3);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(250, 248, 243, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-text);
  box-shadow: 0 4px 10px rgba(30, 36, 22, 0.12);
}
.hero-portrait-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(199, 88, 37, 0.2);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
.hero-title-em {
  display: block;
  font-style: italic;
  font-weight: 600;
  color: var(--c-primary);
  background: linear-gradient(90deg, var(--c-primary) 0%, var(--c-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background 0.4s var(--ease);
}
.hero-title-em:hover {
  background: linear-gradient(90deg, var(--c-accent) 0%, var(--c-primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-content .hero-lead {
  margin: 0 0 var(--space-8);
  max-width: 52ch;
  font-size: 1.05rem;
}

/* Trust-Bar unter dem Grid, volle Breite, zentriert */
.hero-typo .hero-trust {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin-top: 0;
  border-top: 1px solid var(--c-line);
  padding-top: var(--space-6);
  margin-bottom: var(--space-6);
}




@media (prefers-reduced-motion: reduce) {
  .mtn-back, .mtn-front, .hero-glow { animation: none; }
}
.hero::before {
  content: '';
  position: absolute;
  top: 12%;
  right: -4%;
  width: 42%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  background: radial-gradient(closest-side, var(--c-accent-soft), transparent 68%);
  border-radius: 50%;
  filter: blur(12px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.75;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}



/* Hero-Trust-Bar: Stats-Reihe unten */
.hero-trust {
  display: flex;
  align-items: stretch;
  gap: var(--space-6);
  flex-wrap: wrap;
  padding-top: var(--space-6);
  border-top: 1px solid var(--c-line);
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}
a.hero-trust-item {
  color: inherit;
}
a.hero-trust-item:hover { color: var(--c-accent); }
a.hero-trust-item:hover strong { color: var(--c-accent); }
.hero-trust-item strong {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--c-text);
  font-variant-numeric: tabular-nums;
  transition: color 0.2s var(--ease);
}
.hero-trust-item span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-text-muted);
}
.hero-trust-divider {
  width: 1px;
  background: var(--c-line);
  margin: 4px 0;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .hero-trust-divider { display: none; }
  .hero-trust { gap: var(--space-4); }
  .hero-trust-item strong { font-size: 1.15rem; }
}

/* Eyebrow mit Akzent-Strich */
.eyebrow-accent {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--c-text-muted);
}
.eyebrow-rule {
  width: 32px;
  height: 2px;
  background: var(--c-accent);
  border-radius: 2px;
}

.hero-lead { margin: var(--space-6) 0 var(--space-8); font-size: 1.2rem; max-width: 54ch; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* Hero-Visual — passt zum Portrait-Bild (Läufer hochformatig) */
.hero-visual {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
}


@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(199, 88, 37, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(199, 88, 37, 0.08); }
}


.hero-visual .img-placeholder {
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 36px -20px rgba(30, 36, 22, 0.18);
}

/* ============ SECTIONS ============ */
.section {
  padding: var(--space-16) var(--space-6);
}
.section-alt { background: var(--c-bg-alt); }
.section-dark {
  background: var(--c-bg-dark);
  color: var(--c-text-light);
}
.section-dark .section-title,
.section-dark h3 { color: var(--c-text-light); }
.section-dark .section-lead,
.section-dark p { color: var(--c-text-light-muted); }

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-head {
  max-width: 720px;
  margin-bottom: var(--space-10);
}
.section-head .section-lead { margin-top: var(--space-3); }

/* Bewertungen — Trust-Band mit Kennzahlen */
#bewertungen .section-head { text-align: center; margin-inline: auto; }
.reviews-band {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.reviews-stat {
  flex: 1 1 160px;
  max-width: 240px;
  text-align: center;
  padding: var(--space-6) var(--space-4);
}
.reviews-stat + .reviews-stat { border-left: 1px solid var(--c-line); }
.reviews-stat-num {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  color: var(--c-text);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.reviews-g {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.reviews-stat-label {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--c-text-muted);
  margin-top: var(--space-2);
}
.reviews-cta { text-align: center; }
.reviews-cta-note {
  margin-top: var(--space-5);
  font-size: 0.9rem;
  color: var(--c-text-muted);
  max-width: 460px;
  margin-inline: auto;
}
@media (max-width: 620px) {
  .reviews-band { flex-direction: column; align-items: center; }
  .reviews-stat { padding: var(--space-4); max-width: 280px; width: 100%; }
  .reviews-stat + .reviews-stat {
    border-left: none;
    border-top: 1px solid var(--c-line);
  }
}

/* ============ VIDEO-EMBEDS (Klick zum Laden) ============ */
.video-facade {
  position: relative; display: block; width: 100%;
  aspect-ratio: 16 / 10; border: 1px solid var(--c-line); border-radius: var(--radius-lg);
  overflow: hidden; cursor: pointer; padding: 0; background: #000;
  background-image: var(--thumb); background-size: cover; background-position: center;
}
.video-facade::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.55) 100%);
  transition: background 0.25s var(--ease);
}
.video-facade:hover::after { background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.5) 100%); }
.video-facade-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.92); color: var(--c-primary);
  display: grid; place-items: center; z-index: 2;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.video-facade-play svg { width: 26px; height: 26px; margin-left: 3px; }
.video-facade:hover .video-facade-play { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
.video-facade:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 3px; }
.video-facade-label {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: var(--space-4) var(--space-5);
  font-family: var(--font-sans); font-weight: 600; font-size: 0.95rem;
  color: #fff; text-align: left;
}
.video-embed { aspect-ratio: 16 / 10; border-radius: var(--radius-lg); overflow: hidden; background: #000; }
.video-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-consent-note {
  margin-top: var(--space-3); font-size: 0.8rem; color: var(--c-text-muted); text-align: center;
}
.video-consent-note a { color: var(--c-primary); text-decoration: underline; text-underline-offset: 2px; }
.video-consent-note--light { color: var(--c-text-light-muted); }
.video-consent-note--light a { color: var(--c-gold); }

/* Methode → Beratungs-Videos */
.method-videos { margin-top: var(--space-12); }
.method-videos-title {
  font-family: var(--font-serif); font-size: 1.3rem; text-align: center;
  margin-bottom: var(--space-6); color: var(--c-text);
}
.video-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
@media (max-width: 720px) { .video-row { grid-template-columns: 1fr; } }

/* Sortiment — Saison-/Verfügbarkeits-Hinweis pro Panel */
.panel-note {
  margin-top: var(--space-8);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--c-text-muted);
  max-width: 640px;
}

/* Bekleidung — zwei Textspalten (Bekleidung / Merino-Wolle) */
.bekleidung-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
}
@media (max-width: 560px) {
  .bekleidung-cols { grid-template-columns: 1fr; gap: var(--space-8); }
}
.bekleidung-col h3 {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 var(--space-4) 0;
  color: var(--c-text);
  font-family: var(--font-serif);
}
.bekleidung-col p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-text);
  margin: 0;
}

/* Gutscheine — Feature-Bild */
#panel-gutscheine { text-align: center; }
#panel-gutscheine .panel-lead,
#panel-gutscheine .panel-note { max-width: 620px; margin-inline: auto; }
.gutschein-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  max-width: 860px;
  margin: var(--space-6) auto;
  align-items: start;
}
.gutschein-feature {
  margin: 0;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}
.gutschein-feature img { width: 100%; height: auto; display: block; }
@media (max-width: 620px) { .gutschein-grid { grid-template-columns: 1fr; max-width: 460px; } }

/* Sport-BH — Beratungstext (Susi) */
.sportbh-text {
  max-width: 720px;
  margin: var(--space-10) auto 0;
}
.sportbh-text h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--c-text);
  margin-bottom: var(--space-5);
}
.sportbh-text p {
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}
.sportbh-signoff {
  margin-top: var(--space-6);
  color: var(--c-text);
}

/* Besuch uns → Einblick-/Anfahrt-Video als Streifen unter der Sektion */
.visit-strip { max-width: 920px; margin: 0 auto var(--space-16); text-align: center; }
.visit-strip .video-facade, .visit-strip .video-embed { aspect-ratio: 16 / 9; }
.visit-strip h3 {
  font-family: var(--font-serif); font-size: 1.4rem;
  color: var(--c-text-light); margin-bottom: var(--space-2);
}
.visit-strip .lead {
  font-family: var(--font-sans); color: var(--c-text-light-muted);
  margin-bottom: var(--space-6);
}

/* ============ METHODE — Linearer 4-Schritte-Flow ============ */
.method-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-6);
}
.method-step {
  display: flex;
  flex-direction: column;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.method-step:hover {
  border-color: rgba(199, 88, 37, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -18px rgba(30, 36, 22, 0.18);
}
.method-step-img {
  aspect-ratio: 4 / 3;
  background: var(--c-bg-alt);
  overflow: hidden;
}
.method-step-img .img-placeholder {
  border: none;
  border-radius: 0;
  min-height: 0;
  height: 100%;
}
.method-step-body {
  position: relative;
  padding: var(--space-6) var(--space-6) var(--space-6);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: var(--space-2);
}
.step-num-big {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--c-accent);
  margin-bottom: var(--space-2);
}
.method-step h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--c-text);
  margin-bottom: var(--space-2);
}
.method-step p {
  color: var(--c-text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

.method-meta {
  margin-top: var(--space-10);
  padding-top: var(--space-6);
  border-top: 1px solid var(--c-line);
  text-align: center;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--c-primary);
}

/* ============ SORTIMENT TABS ============ */
.sortiment-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  border-bottom: 1px solid var(--c-line);
  margin-bottom: var(--space-12);
}
.tab-btn {
  padding: var(--space-4) var(--space-6);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.tab-btn:hover { color: var(--c-text); }
.tab-btn.is-active {
  color: var(--c-primary);
  border-bottom-color: var(--c-primary);
}

.tab-panel { display: none; }
.tab-panel.is-active {
  display: block;
  animation: tabSlideIn 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes tabSlideIn {
  from {
    opacity: 0;
    transform: translateX(12px);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}
.panel-lead {
  font-size: 1.1rem;
  color: var(--c-text-muted);
  margin-bottom: var(--space-8);
  max-width: 60ch;
}
.brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.brand-list-label {
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}
.brand-list li {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-text-muted);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.section-alt .brand-list li { background: var(--c-bg); }
.brand-list li:hover {
  border-color: rgba(199, 88, 37, 0.45);
  color: var(--c-accent);
}



/* Sortiment-Note: prominenter Hinweis "Mehr im Laden" */
.sortiment-note {
  margin-top: var(--space-12);
  padding: var(--space-6) var(--space-8);
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-accent);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
}
.sortiment-note svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--c-accent);
  margin-top: 2px;
}
.sortiment-note strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 4px;
}
.sortiment-note span {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--c-text-muted);
}

/* ============ PRODUKT-GRID ============ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
  margin-bottom: var(--space-10);
}
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  transition:
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  will-change: transform;
}
.section-alt .product-card { background: var(--c-bg); }
.product-card:hover {
  border-color: rgba(199, 88, 37, 0.5);
  transform: translateY(-4px);
  box-shadow:
    0 20px 40px -16px rgba(30, 36, 22, 0.18),
    0 0 0 4px rgba(199, 88, 37, 0.06);
}
.product-card figcaption {
  transition: transform 0.3s var(--ease);
}
.product-card:hover figcaption {
  transform: translateY(-2px);
}
.product-card:hover .product-brand {
  color: var(--c-accent);
  transition: color 0.3s var(--ease);
}
.product-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #f4f0e4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8%;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
/* Dunkle Produkt-Bühne für Studiofotos mit schwarzem Hintergrund (z.B. Bekleidung) */
.product-img-dark {
  background: linear-gradient(180deg, #1e2416 0%, #2c3422 100%);
}
.product-img-dark img {
  padding: 6%;
  object-fit: contain;
  mix-blend-mode: normal;
}
.product-card:hover .product-img img {
  transform: scale(1.06);
}
.product-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 var(--space-1);
  min-height: 44px;
}
.product-brand {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: -0.01em;
}
.product-line {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-text-muted);
  text-transform: uppercase;
}



/* ============ SPLIT (Über uns + Besuch) ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.split-text > p { margin-bottom: var(--space-4); color: var(--c-text-muted); }
.section-dark .split-text > p { color: var(--c-text-light-muted); }
.split-text .btn-ghost { margin-top: var(--space-6); }
.split-visual {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-bg-alt);
}
.split-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.split-visual .img-placeholder {
  height: 100%;
  border: none;
  border-radius: 0;
}

/* ============ TEAM-LISTE ============ */
.team-list {
  margin: var(--space-8) 0;
  padding-top: var(--space-6);
  border-top: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.team-list li {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

/* Über uns — Hinweise zum Schuhkauf */
.kauf-hinweis {
  margin: 0 0 var(--space-8);
  padding: var(--space-6);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  background: var(--c-bg);
}
.kauf-hinweis h3 {
  margin: 0 0 var(--space-5);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--c-primary);
}
.kauf-hinweis ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-3);
}
.kauf-hinweis li {
  position: relative;
  padding-left: var(--space-6);
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--c-text);
}
.kauf-hinweis li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-primary);
  font-weight: 700;
}

/* Blur-Trick: größere Darstellung + feiner Creme-Ring, subtile Filter für kleine Quellen */
.team-avatar {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 50%;
  padding: 2px;
  background: var(--c-bg);
  box-shadow:
    0 0 0 1px var(--c-line),
    0 4px 12px -6px rgba(30, 36, 22, 0.18);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.team-list li:hover .team-avatar {
  transform: scale(1.04);
  box-shadow:
    0 0 0 1px rgba(199, 88, 37, 0.4),
    0 8px 20px -8px rgba(30, 36, 22, 0.26);
}
.team-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: var(--c-bg);
  filter: saturate(1.05) contrast(1.04);
  image-rendering: auto;
}
/* Team-Avatar mit Placeholder: dezenter darstellen */
.team-avatar .img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border-width: 1px;
  border-color: rgba(58, 92, 26, 0.25);
  padding: 0;
  gap: 4px;
  background:
    repeating-linear-gradient(
      135deg,
      var(--c-bg-alt) 0 6px,
      #ece5d2 6px 12px
    );
}
.team-avatar .img-placeholder::before { background: rgba(250, 248, 243, 0.6); }
.team-avatar .img-placeholder svg {
  width: 18px;
  height: 18px;
  opacity: 0.55;
  margin: 0;
}
.team-avatar .img-placeholder .ph-text {
  font-size: 0.55rem;
  font-style: normal;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 90%;
  color: var(--c-text-muted);
}
.team-list strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.team-list span {
  display: block;
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.45;
}

/* Split-Visual: Caption-Overlay (Laden-Atmosphäre) */
.split-visual { position: relative; }
.split-visual-store::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(30, 36, 22, 0.28) 100%);
  pointer-events: none;
}
.visual-caption {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-4);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 7px 12px;
  background: rgba(250, 248, 243, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-text);
  box-shadow: 0 4px 14px rgba(30, 36, 22, 0.12);
  z-index: 2;
}
.visual-caption-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(199, 88, 37, 0.2);
}



/* ============ PROMINENTE GÄSTE ============ */
.guest-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-12);
  align-items: center;
  padding: var(--space-10);
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-accent);
  border-radius: var(--radius-lg);
}
.guest-image {
  position: relative;
  margin: 0;
}
.guest-image > img,
.guest-image > .img-placeholder {
  aspect-ratio: 4 / 3;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-bg-alt);
}
.guest-image > img {
  object-fit: cover;
  display: block;
  height: auto;
}
.guest-caption {
  margin-top: var(--space-3);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-text-muted);
  text-align: center;
  line-height: 1.4;
}
.guest-caption strong {
  color: var(--c-text);
  font-weight: 600;
}
.guest-image .img-placeholder {
  border-radius: 0;
  border: none;
}
.guest-image .img-placeholder code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.75rem;
  background: rgba(199, 88, 37, 0.12);
  color: var(--c-accent);
  padding: 1px 6px;
  border-radius: 3px;
}
.guest-body p {
  color: var(--c-text-muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 56ch;
}
.guest-body strong {
  color: var(--c-text);
  font-weight: 600;
}
@media (max-width: 960px) {
  .guest-card {
    grid-template-columns: 1fr;
    padding: var(--space-6);
    gap: var(--space-6);
  }
}



/* ============ FAQ ============ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--c-line);
}
.faq-item {
  border-bottom: 1px solid var(--c-line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--c-text);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--c-primary); }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--c-primary);
  transition: transform 0.25s var(--ease);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 0 var(--space-6);
  max-width: 70ch;
}
.faq-answer p {
  color: var(--c-text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* ============ BESUCH UNS (Dark Section) ============ */
.section-dark .hours { margin: var(--space-8) 0; }
.section-dark .hours h3 {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-6);
}
.section-dark .hours dl {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.section-dark .hours dl > div {
  display: flex;
  justify-content: space-between;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--c-line-light);
  font-size: 1rem;
}
.section-dark .hours dt { font-weight: 500; color: var(--c-text-light); }
.section-dark .hours dd { color: var(--c-text-light-muted); font-variant-numeric: tabular-nums; }
.section-dark .hours dd.closed { font-style: italic; opacity: 0.6; }
.hours-note {
  font-size: 0.85rem;
  font-style: italic;
  margin-top: var(--space-4);
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.map {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  border-radius: var(--radius-lg);
  filter: grayscale(0.3) contrast(0.95);
}

/* ============ MAP CONSENT (Click-to-Load) ============ */
.map-consent {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, var(--c-bg-alt) 0%, #ece5d2 100%);
  border: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  text-align: center;
}
.map-consent-inner {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}
.map-consent-inner svg {
  width: 36px;
  height: 36px;
  color: var(--c-primary);
  opacity: 0.7;
  margin-bottom: var(--space-2);
}
.map-consent-inner h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-text);
}
.map-consent-inner p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--c-text-muted);
  margin-bottom: var(--space-2);
}
.map-consent-inner p a { color: var(--c-primary); text-decoration: underline; text-underline-offset: 3px; }
.map-consent-alt {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  margin-top: var(--space-2);
}
.map-consent-alt:hover { color: var(--c-accent); }

/* ============ COOKIE-BANNER ============ */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: var(--space-4);
  transform: translateX(-50%);
  z-index: 200;
  width: calc(100% - var(--space-8));
  max-width: 720px;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-accent);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 48px -16px rgba(30, 36, 22, 0.32);
}
.cookie-inner {
  padding: var(--space-5) var(--space-6);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-5);
  align-items: center;
}
.cookie-text h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 4px;
}
.cookie-text p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--c-text-muted);
  margin: 0;
}
.cookie-text a {
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .cookie-banner {
    bottom: var(--space-4);
    width: calc(100% - var(--space-4));
  }
  .cookie-inner {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .cookie-actions { flex-direction: column-reverse; align-items: stretch; }
  .cookie-actions .btn { width: 100%; }
}

/* ============ 404 SEITE ============ */
.error-page {
  min-height: calc(100vh - var(--header-h) - 200px);
  padding: calc(var(--header-h) + env(safe-area-inset-top, 0px) + var(--space-16)) var(--space-6) var(--space-16);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.error-inner {
  max-width: 600px;
}
.error-page .eyebrow-accent {
  justify-content: center;
}
.error-code {
  font-family: var(--font-serif);
  font-size: clamp(6rem, 18vw, 11rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--c-accent);
  margin: var(--space-3) 0;
  opacity: 0.85;
}
.error-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--c-text);
  margin-bottom: var(--space-4);
}
.error-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--c-text-muted);
  margin: 0 auto var(--space-8);
  max-width: 48ch;
}
.error-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ LEGAL PAGES (Impressum / Datenschutz) ============ */
.legal-page {
  padding: calc(var(--header-h) + env(safe-area-inset-top, 0px) + var(--space-16)) var(--space-6) var(--space-24);
}
.legal-inner {
  max-width: 720px;
  margin: 0 auto;
}
.legal-back {
  margin-bottom: var(--space-10);
}
.legal-back .icon-arrow {
  width: 16px; height: 16px;
}
.legal-inner .eyebrow { margin-bottom: var(--space-3); }
.legal-inner h1 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--space-4);
  color: var(--c-text);
}
.legal-lead {
  font-size: 1.125rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-10);
  max-width: 60ch;
}
.legal-inner h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  color: var(--c-text);
}
.legal-inner h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
  color: var(--c-text);
}
.legal-inner p {
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
  font-size: 1rem;
}
.legal-inner address {
  font-style: normal;
  padding: var(--space-5) var(--space-6);
  background: var(--c-bg-alt);
  border-radius: var(--radius);
  margin: var(--space-4) 0 var(--space-6);
  line-height: 1.75;
  color: var(--c-text);
}
.legal-inner address strong {
  display: inline-block;
  margin-bottom: var(--space-1);
  font-family: var(--font-serif);
  font-size: 1.1rem;
}
.legal-inner ul {
  padding-left: var(--space-6);
  margin-bottom: var(--space-4);
}
.legal-inner ul li {
  list-style: disc;
  color: var(--c-text-muted);
  margin-bottom: var(--space-2);
  line-height: 1.6;
}
.legal-inner a {
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}
.legal-inner a:hover {
  color: var(--c-primary-dark);
}
.legal-updated {
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid var(--c-line);
  font-size: 0.875rem;
  font-style: italic;
  color: var(--c-text-muted);
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--c-bg-dark);
  color: var(--c-text-light-muted);
  padding: var(--space-12) var(--space-6) var(--space-6);
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid var(--c-line-light);
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-4);
}
.footer-brand-row {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.footer-brand .logo-text { color: var(--c-text-light); }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--c-text-light-muted);
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer-list a {
  font-size: 0.92rem;
  color: var(--c-text-light);
  transition: color 0.2s var(--ease);
  font-variant-numeric: tabular-nums;
}
.footer-list a:hover { color: var(--c-accent); }
.footer-address {
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--c-text-light);
  margin-bottom: var(--space-3);
}
.footer-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-gold);
  transition: gap 0.2s var(--ease), color 0.2s var(--ease);
}
.footer-link-arrow:hover { color: var(--c-accent); gap: 8px; }
.footer-hours {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
}
.footer-hours > div {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
}
.footer-hours dt {
  color: var(--c-text-light);
  font-weight: 500;
  flex-shrink: 0;
}
.footer-hours dd { color: var(--c-text-light-muted); text-align: right; }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}
.footer-links { display: flex; gap: var(--space-6); flex-wrap: wrap; }
.footer-links a {
  font-size: 0.82rem;
  color: var(--c-text-light-muted);
  transition: color 0.2s var(--ease);
}
.footer-links a:hover { color: var(--c-accent); }
.footer-copy { font-size: 0.78rem; opacity: 0.55; }

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}


/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero {
    padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px) + var(--space-8));
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    padding-bottom: var(--space-8);
  }
  .hero-portrait {
    order: -1;
    max-width: 100%;
    width: 100%;
    aspect-ratio: 16 / 10;
    justify-self: stretch;
  }
  .hero-portrait img { object-position: 50% 35%; }
  .hero-glow { top: 28%; }
  .split { grid-template-columns: 1fr; gap: var(--space-12); }
  .split-visual { aspect-ratio: 16 / 10; max-height: 400px; }
  .method-layout { grid-template-columns: 1fr; gap: var(--space-6); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .method-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { flex-direction: column; align-items: flex-start; text-align: left; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: var(--space-16) var(--space-4); }
  .section-head { margin-bottom: var(--space-12); }
  .header-inner { padding: 0 var(--space-3); }

  .nav-primary {
    position: fixed;
    top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
    left: 0; right: 0;
    max-height: calc(100vh - var(--header-h) - env(safe-area-inset-top, 0px));
    overflow-y: auto;
    background: var(--c-bg);
    border-bottom: 1px solid var(--c-line);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0s linear 0.25s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
  .nav-primary.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0s;
  }
  .nav-primary ul {
    flex-direction: column;
    gap: 0;
    padding: var(--space-4);
  }
  .nav-primary a {
    display: block;
    padding: var(--space-4);
    font-size: 1rem;
    border-bottom: 1px solid var(--c-line);
  }
  .nav-primary a::after { display: none; }
  .nav-primary li:last-child a { border-bottom: none; }

  .menu-toggle { display: flex; }
  .header-actions { gap: 4px; }
  .header-actions .btn-compact span { display: none; }
  .header-actions .btn-compact {
    padding: 8px 10px;
    min-width: 38px;
    min-height: 38px;
  }
  .header-actions .btn-compact .icon { width: 18px; height: 18px; }
  .header-inner { gap: var(--space-3); }
  .logo-text { font-size: 1.2rem; }
}

/* Sehr schmale Phones: Logo-Mark verstecken, mehr Platz für Buttons */
@media (max-width: 420px) {
  .logo-mark { display: none; }
  .logo-text { font-size: 1.1rem; letter-spacing: 0.02em; }
  .header-inner { padding: 0 var(--space-3); gap: var(--space-2); }
  .sortiment-tabs .tab-btn { font-size: 0.64rem; padding: var(--space-3) 2px; }
}

@media (max-width: 720px) {

  .hero {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
    padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px) + var(--space-5));
    padding-bottom: var(--space-6);
  }
  .hero-mountains { opacity: 0.7; height: 45%; }
  .hero-glow { width: 100%; top: 18%; }
  .hero-portrait { aspect-ratio: 16 / 10; max-height: 200px; }
  .hero-portrait-caption { font-size: 0.68rem; padding: 4px 9px; }
  .hero-content .hero-lead { font-size: 0.95rem; }
  .hero-title-large { font-size: clamp(1.85rem, 9vw, 2.3rem); }
  .hero-grid { gap: var(--space-5); padding-bottom: var(--space-6); }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; gap: var(--space-3); }
  .hero-actions .btn { width: 100%; padding: 12px 22px; min-height: 44px; }
  .hero-trust { padding-top: var(--space-4); margin-bottom: var(--space-4); }
  .eyebrow-accent { font-size: 0.7rem; }

  .contact-actions { flex-direction: column; align-items: stretch; }
  .contact-actions .btn { width: 100%; }

  .sortiment-tabs { gap: 0; flex-wrap: nowrap; }
  .tab-btn {
    flex: 1 1 0;
    min-width: 0;
    padding: var(--space-3) var(--space-1);
    font-size: 0.72rem;
    text-align: center;
    white-space: nowrap;
    letter-spacing: -0.01em;
  }
  .step-num-big { font-size: 2.2rem; }

  /* Methode-Flow: horizontal scrollen statt stapeln */
  .method-flow {
    display: flex;
    grid-template-columns: none;
    gap: var(--space-3);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-left: calc(var(--space-4) * -1);
    margin-right: calc(var(--space-4) * -1);
    padding: var(--space-2) var(--space-4) var(--space-4);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .method-flow::-webkit-scrollbar { display: none; }
  .method-step {
    flex: 0 0 80%;
    max-width: 320px;
    scroll-snap-align: start;
  }
  .method-flow::after {
    content: '';
    flex: 0 0 var(--space-2);
  }

  /* Sortiment-Grid: zwei Bilder nebeneinander (statt horizontal scrollen) */
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-3);
  }
  .product-card { padding: var(--space-4); }

  .faq-item summary { font-size: 1.05rem; padding: var(--space-5) 0; }

}
