/* ═══════════════════════════════════════════════════
   Sanitär Huber — Brand CSS
   Archetype: Editorial Trust · Marine-Blue + Copper
   Override Tailwind defaults for editorial polish
═══════════════════════════════════════════════════ */

:root {
  /* Brand: deep marine + warm copper — Wasser & Wärme */
  --sh-bg:        #FAF8F4;
  --sh-bg-2:      #F0EEE7;
  --sh-surface:   #FFFFFF;
  --sh-ink:       #142233;
  --sh-ink-soft:  #3D4B5C;
  --sh-ink-muted: #6B7585;
  --sh-line:      rgba(20, 34, 51, 0.10);
  --sh-line-strong: rgba(20, 34, 51, 0.18);

  --sh-marine:        #1E4A6E;   /* tiefes Marine */
  --sh-marine-dark:   #14375A;
  --sh-marine-soft:   rgba(30, 74, 110, 0.08);
  --sh-marine-light:  #C8D5E2;

  --sh-copper:      #C57B4D;     /* warmes Kupfer für Wärme-Akzent */
  --sh-copper-dark: #A8623A;
  --sh-copper-soft: rgba(197, 123, 77, 0.10);

  --sh-font-serif: 'Instrument Serif', Georgia, serif;
  --sh-font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --sh-font-mono:  'IBM Plex Mono', 'Geist Mono', ui-monospace, monospace;

  --sh-ease:    cubic-bezier(0.4, 0, 0.2, 1);
  --sh-spring:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global body warmth */
body {
  background: var(--sh-bg);
  color: var(--sh-ink);
  font-family: var(--sh-font-sans);
  -webkit-font-smoothing: antialiased;
}

/* ── Headlines auf Serif + Medium-Weight statt Black ── */
.sh-h1 {
  font-family: var(--sh-font-serif);
  font-size: clamp(44px, 6.4vw, 88px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--sh-ink);
}
.sh-h1 em {
  font-style: italic;
  color: var(--sh-copper);
}
.sh-h2 {
  font-family: var(--sh-font-serif);
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--sh-ink);
}
.sh-h2 em {
  font-style: italic;
  color: var(--sh-copper);
}
.sh-eyebrow {
  display: inline-block;
  font-family: var(--sh-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sh-marine);
  margin-bottom: 18px;
}
.sh-eyebrow.copper { color: var(--sh-copper); }
.sh-sub {
  font-size: 17px;
  line-height: 1.72;
  color: var(--sh-ink-soft);
  font-weight: 400;
  max-width: 56ch;
}

/* ── Buttons override (override .btn-primary aus inline style) ── */
.btn-primary {
  background: var(--sh-marine) !important;
  color: #fff !important;
  border-radius: 100px !important;
  padding: 14px 26px !important;
  font-weight: 500 !important;
  font-family: var(--sh-font-sans) !important;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  transition: background 200ms var(--sh-ease),
              transform 160ms var(--sh-spring),
              box-shadow 200ms var(--sh-ease) !important;
}
.btn-primary:hover {
  background: var(--sh-marine-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(30, 74, 110, 0.22);
}
.btn-primary:active { transform: scale(0.97); }

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.40) !important;
  color: #fff !important;
  background: transparent !important;
  border-radius: 100px !important;
  padding: 13px 24px !important;
  font-weight: 500 !important;
  font-family: var(--sh-font-sans) !important;
  transition: all 200ms var(--sh-ease) !important;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.10) !important;
  border-color: rgba(255, 255, 255, 0.75) !important;
  color: #fff !important;
}

/* ── Hero override ── */
.sh-hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(20, 34, 51, 0.84) 0%,
    rgba(30, 74, 110, 0.62) 100%
  );
}
.sh-hero-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  font-family: var(--sh-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}
.sh-hero-eyebrow-pill::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sh-copper);
  box-shadow: 0 0 0 4px rgba(197, 123, 77, 0.25);
}

.sh-hero-h1 {
  font-family: var(--sh-font-serif);
  font-size: clamp(46px, 7vw, 96px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.028em;
  color: #FFFEFA;
}
.sh-hero-h1 em {
  font-style: italic;
  color: var(--sh-copper);
}
.sh-hero-sub {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
  color: rgba(255, 254, 250, 0.86);
  font-weight: 400;
  max-width: 56ch;
}

.sh-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 36px;
}
.sh-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sh-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 254, 250, 0.92);
}
.sh-hero-trust span::before {
  content: "";
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C57B4D' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 12 10 18 20 6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ── Service-Cards: editorial mit Mono-Number statt Emoji ── */
.sh-service-card {
  position: relative;
  background: var(--sh-surface);
  border: 1px solid var(--sh-line);
  border-radius: 16px;
  padding: 36px 32px 32px;
  transition: transform 240ms var(--sh-ease),
              box-shadow 240ms var(--sh-ease),
              border-color 240ms var(--sh-ease);
}
.sh-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(20, 34, 51, 0.10);
  border-color: var(--sh-marine-light);
}
.sh-service-num {
  display: inline-block;
  font-family: var(--sh-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sh-marine);
  margin-bottom: 16px;
}
.sh-service-icon-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--sh-marine-soft);
  color: var(--sh-marine);
  margin-bottom: 22px;
}
.sh-service-h3 {
  font-family: var(--sh-font-serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--sh-ink);
  margin-bottom: 14px;
}
.sh-service-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--sh-ink-soft);
  margin-bottom: 20px;
}
.sh-service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sh-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sh-marine);
  border-bottom: 1px solid var(--sh-marine);
  padding-bottom: 3px;
  transition: gap 200ms var(--sh-ease), color 200ms var(--sh-ease);
}
.sh-service-link:hover {
  gap: 12px;
  color: var(--sh-copper);
  border-bottom-color: var(--sh-copper);
}

/* ── About-Section ── */
.sh-about-bg { background: var(--sh-surface); }
.sh-about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--sh-line);
  padding-top: 32px;
}
.sh-about-stat {
  padding-right: 28px;
  border-right: 1px solid var(--sh-line);
}
.sh-about-stat:last-child { border-right: none; padding-right: 0; padding-left: 28px; }
.sh-about-stat-num {
  font-family: var(--sh-font-serif);
  font-size: clamp(42px, 4.6vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.028em;
  color: var(--sh-marine);
  display: block;
  margin-bottom: 10px;
}
.sh-about-stat-lbl {
  font-family: var(--sh-font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sh-ink-muted);
}

/* ── Testimonials override: dark editorial ── */
.sh-testimonials-bg {
  background: var(--sh-ink);
  color: rgba(255, 254, 250, 0.92);
}
.sh-testi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 254, 250, 0.10);
  border-radius: 18px;
  padding: 32px 30px 28px;
  position: relative;
}
.sh-testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: var(--sh-copper);
}
.sh-testi-quote {
  font-family: var(--sh-font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 254, 250, 0.96);
  margin-bottom: 24px;
  letter-spacing: -0.003em;
}
.sh-testi-author {
  font-family: var(--sh-font-sans);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.sh-testi-loc {
  font-family: var(--sh-font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 254, 250, 0.55);
  margin-top: 4px;
}

/* ── CTA Section: kupfer-akzent statt full-teal ── */
.sh-cta-bg {
  background: var(--sh-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.sh-cta-bg::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sh-copper-soft) 0%, transparent 70%);
  pointer-events: none;
}
.sh-cta-h2 {
  font-family: var(--sh-font-serif);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.024em;
  color: #FFFEFA;
}
.sh-cta-h2 em {
  font-style: italic;
  color: var(--sh-copper);
}
.sh-cta-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 254, 250, 0.78);
  margin-top: 14px;
}
.sh-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  background: var(--sh-copper);
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  transition: background 200ms var(--sh-ease),
              transform 160ms var(--sh-spring),
              box-shadow 200ms var(--sh-ease);
}
.sh-cta-primary:hover {
  background: var(--sh-copper-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(197, 123, 77, 0.30);
}
.sh-cta-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sh-font-mono);
  font-size: 14px;
  color: rgba(255, 254, 250, 0.78);
  padding: 14px 8px;
  transition: color 200ms ease;
}
.sh-cta-tel:hover { color: var(--sh-copper); }

/* ── Demo-Notice: minder aggressiv ── */
.demo-notice {
  background: var(--sh-copper-soft) !important;
  border: 1px solid rgba(197, 123, 77, 0.30) !important;
  color: var(--sh-ink) !important;
}
.demo-notice p {
  font-family: var(--sh-font-mono);
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em;
  color: var(--sh-ink-soft) !important;
}
.demo-notice a {
  color: var(--sh-marine);
  font-weight: 600 !important;
  border-bottom: 1px solid var(--sh-marine);
}

/* ═══════════════════════════════════════════════════
   Phase 3 — USP-Komponenten
   - Notfall-Widget Hero-Right
   - Wärmepumpen-Vergleichsrechner
   - Bad-Material-Konfigurator
   - Einsatz-Radius-Karte
═══════════════════════════════════════════════════ */

/* ── Notfall-Widget (Hero-Right) ── */
.sh-notdienst {
  position: relative;
  background: var(--sh-ink);
  border: 1px solid rgba(255, 254, 250, 0.10);
  border-radius: 18px;
  padding: 28px 28px 24px;
  color: rgba(255, 254, 250, 0.92);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(20, 34, 51, 0.32);
}
.sh-notdienst::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sh-copper-soft) 0%, transparent 70%);
  pointer-events: none;
}
.sh-notdienst-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.sh-notdienst-pulse {
  position: relative;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--sh-copper);
  flex-shrink: 0;
}
.sh-notdienst-pulse::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--sh-copper);
  opacity: 0;
  animation: sh-pulse 2.4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
@keyframes sh-pulse {
  0%   { transform: scale(0.7); opacity: 0.7; }
  100% { transform: scale(2.0); opacity: 0; }
}
.sh-notdienst-label {
  font-family: var(--sh-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sh-copper);
}
.sh-notdienst-status {
  font-family: var(--sh-font-serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.014em;
  color: #FFFEFA;
  margin: 0 0 8px;
  position: relative;
  z-index: 1;
}
.sh-notdienst-status em {
  font-style: italic;
  color: var(--sh-copper);
}
.sh-notdienst-meta {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 254, 250, 0.62);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.sh-notdienst-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 254, 250, 0.10);
  padding-top: 18px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.sh-notdienst-stat {
  padding: 0 12px;
  border-right: 1px solid rgba(255, 254, 250, 0.10);
  text-align: left;
}
.sh-notdienst-stat:first-child { padding-left: 0; }
.sh-notdienst-stat:last-child {
  padding-right: 0; border-right: none;
}
.sh-notdienst-stat-num {
  font-family: var(--sh-font-serif);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  color: #FFFEFA;
  margin-bottom: 6px;
  display: block;
  font-variant-numeric: tabular-nums;
}
.sh-notdienst-stat-num.copper { color: var(--sh-copper); }
.sh-notdienst-stat-lbl {
  font-family: var(--sh-font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 254, 250, 0.45);
}
.sh-notdienst-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: var(--sh-copper);
  color: #fff;
  border-radius: 100px;
  font-family: var(--sh-font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: background 200ms var(--sh-ease),
              transform 160ms var(--sh-spring),
              box-shadow 200ms var(--sh-ease);
}
.sh-notdienst-cta:hover {
  background: var(--sh-copper-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(197, 123, 77, 0.36);
}
.sh-notdienst-cta:active { transform: scale(0.97); }
.sh-notdienst-disclaimer {
  font-family: var(--sh-font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 254, 250, 0.35);
  text-align: center;
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

/* ── Wärmepumpen-Rechner ── */
.sh-rechner-section {
  background: var(--sh-bg-2);
  border-top: 1px solid var(--sh-line);
  border-bottom: 1px solid var(--sh-line);
}
.sh-rechner-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}
.sh-rechner-controls {
  background: var(--sh-surface);
  border: 1px solid var(--sh-line);
  border-radius: 18px;
  padding: 36px 32px;
}
.sh-rechner-field {
  margin-bottom: 28px;
}
.sh-rechner-field:last-child { margin-bottom: 0; }
.sh-rechner-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--sh-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sh-ink-muted);
  margin-bottom: 16px;
}
.sh-rechner-label-value {
  font-family: var(--sh-font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--sh-marine);
  letter-spacing: -0.014em;
  text-transform: none;
}
.sh-rechner-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 100px;
  background: var(--sh-marine-soft);
  outline: none;
  cursor: pointer;
}
.sh-rechner-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--sh-marine);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(20, 34, 51, 0.22);
  cursor: grab;
  transition: transform 160ms var(--sh-spring);
}
.sh-rechner-slider::-webkit-slider-thumb:hover {
  transform: scale(1.12);
}
.sh-rechner-slider::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(0.96);
}
.sh-rechner-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--sh-marine);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(20, 34, 51, 0.22);
  cursor: grab;
}
.sh-rechner-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.sh-rechner-options button {
  padding: 11px 12px;
  background: var(--sh-bg);
  color: var(--sh-ink-soft);
  border: 1px solid var(--sh-line);
  border-radius: 100px;
  font-family: var(--sh-font-sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 180ms var(--sh-ease),
              color 180ms var(--sh-ease),
              border-color 180ms var(--sh-ease);
}
.sh-rechner-options button:hover {
  border-color: var(--sh-marine-light);
}
.sh-rechner-options button[aria-pressed="true"] {
  background: var(--sh-marine);
  color: #fff;
  border-color: var(--sh-marine);
}
.sh-rechner-result {
  background: var(--sh-ink);
  color: #fff;
  border-radius: 18px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.sh-rechner-result::before {
  content: "";
  position: absolute;
  top: -150px; right: -150px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sh-copper-soft) 0%, transparent 70%);
  pointer-events: none;
}
.sh-rechner-result-label {
  font-family: var(--sh-font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sh-copper);
  margin-bottom: 18px;
  display: block;
  position: relative;
  z-index: 1;
}
.sh-rechner-result-num {
  font-family: var(--sh-font-serif);
  font-size: clamp(58px, 6vw, 88px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.032em;
  color: #FFFEFA;
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.sh-rechner-result-num em {
  font-size: 0.4em;
  font-style: italic;
  color: var(--sh-copper);
  font-weight: 400;
  letter-spacing: 0;
}
.sh-rechner-result-sub {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 254, 250, 0.68);
  margin-bottom: 28px;
  max-width: 30ch;
  position: relative;
  z-index: 1;
}
.sh-rechner-result-bafa {
  padding: 16px 18px;
  background: rgba(197, 123, 77, 0.10);
  border: 1px solid rgba(197, 123, 77, 0.30);
  border-radius: 10px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.sh-rechner-result-bafa-label {
  font-family: var(--sh-font-mono);
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--sh-copper);
  margin-bottom: 4px;
  display: block;
}
.sh-rechner-result-bafa-text {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 254, 250, 0.82);
}
.sh-rechner-result-bafa-text strong {
  color: var(--sh-copper);
  font-weight: 500;
}
.sh-rechner-disclaimer {
  font-family: var(--sh-font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: rgba(255, 254, 250, 0.40);
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .sh-rechner-grid { grid-template-columns: 1fr; gap: 32px; }
  .sh-rechner-options { grid-template-columns: 1fr; }
}

/* ── Bad-Konfigurator ── */
.sh-bad-section {
  background: var(--sh-bg);
}
.sh-bad-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin: 48px 0 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--sh-line);
}
.sh-bad-tab {
  padding: 12px 20px;
  background: transparent;
  color: var(--sh-ink-muted);
  border: 1px solid transparent;
  border-radius: 100px;
  font-family: var(--sh-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 200ms var(--sh-ease),
              background 200ms var(--sh-ease),
              border-color 200ms var(--sh-ease);
}
.sh-bad-tab:hover {
  color: var(--sh-marine);
  background: var(--sh-marine-soft);
}
.sh-bad-tab[aria-selected="true"] {
  background: var(--sh-marine);
  color: #fff;
  border-color: var(--sh-marine);
}
.sh-bad-panel {
  display: none;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
  padding-top: 24px;
}
.sh-bad-panel.is-active { display: grid; }
.sh-bad-image {
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  background: var(--sh-bg-2);
  box-shadow: 0 16px 40px rgba(20, 34, 51, 0.10);
}
.sh-bad-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.03);
}
.sh-bad-num {
  font-family: var(--sh-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sh-copper);
  margin-bottom: 14px;
}
.sh-bad-title {
  font-family: var(--sh-font-serif);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--sh-ink);
  margin-bottom: 18px;
}
.sh-bad-title em { font-style: italic; color: var(--sh-marine); }
.sh-bad-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--sh-ink-soft);
  margin-bottom: 24px;
  max-width: 50ch;
}
.sh-bad-materials {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--sh-line);
}
.sh-bad-material {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.sh-bad-swatch {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--sh-line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18),
              0 4px 14px rgba(20, 34, 51, 0.08);
}
.sh-bad-material-name {
  font-family: var(--sh-font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sh-ink-muted);
  text-align: center;
  max-width: 70px;
  line-height: 1.3;
}
.sh-bad-budget {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 18px;
  background: var(--sh-bg-2);
  border: 1px solid var(--sh-line);
  border-radius: 100px;
  font-family: var(--sh-font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sh-ink-muted);
}
.sh-bad-budget strong {
  font-family: var(--sh-font-serif);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--sh-marine);
  letter-spacing: -0.012em;
  text-transform: none;
}
@media (max-width: 900px) {
  .sh-bad-panel { grid-template-columns: 1fr; gap: 28px; }
  .sh-bad-materials { gap: 14px; }
}

/* ── Risk-Reversal-Bar (Garantien-Strip) ── */
.sh-guarantees {
  background: var(--sh-ink);
  border-top: 1px solid rgba(255, 254, 250, 0.08);
  border-bottom: 1px solid rgba(255, 254, 250, 0.08);
}
.sh-guarantees-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.sh-guarantee {
  padding: 4px 32px;
  border-right: 1px solid rgba(255, 254, 250, 0.10);
  color: rgba(255, 254, 250, 0.78);
}
.sh-guarantee:first-child { padding-left: 0; }
.sh-guarantee:last-child { padding-right: 0; border-right: none; }
.sh-guarantee-num {
  font-family: var(--sh-font-serif);
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--sh-copper);
  display: block;
  margin-bottom: 12px;
}
.sh-guarantee-title {
  font-family: var(--sh-font-sans);
  font-size: 14px;
  font-weight: 500;
  color: #FFFEFA;
  letter-spacing: -0.008em;
  margin-bottom: 6px;
  display: block;
}
.sh-guarantee-body {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 254, 250, 0.55);
}
@media (max-width: 900px) {
  .sh-guarantees-inner { grid-template-columns: 1fr 1fr; }
  .sh-guarantee:nth-child(2) { border-right: none; }
  .sh-guarantee:nth-child(3) { border-right: 1px solid rgba(255, 254, 250, 0.10); }
  .sh-guarantee { padding: 28px 20px; border-bottom: 1px solid rgba(255, 254, 250, 0.10); }
  .sh-guarantee:nth-child(3), .sh-guarantee:nth-child(4) { border-bottom: none; }
}
@media (max-width: 540px) {
  .sh-guarantees-inner { grid-template-columns: 1fr; padding: 32px 24px; }
  .sh-guarantee {
    padding: 24px 0;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 254, 250, 0.10);
  }
  .sh-guarantee:last-child { border-bottom: none; }
}

/* ── Einsatzradius Karte (Static) ── */
.sh-radius-section { background: var(--sh-bg); }
.sh-radius-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 56px;
  align-items: center;
  margin-top: 56px;
}
.sh-radius-map {
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  background: var(--sh-bg-2);
  border: 1px solid var(--sh-line);
  position: relative;
}
.sh-radius-svg {
  width: 100%; height: 100%;
  display: block;
}
.sh-radius-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sh-radius-item {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--sh-line);
}
.sh-radius-item:first-child { border-top: none; padding-top: 6px; }
.sh-radius-num {
  font-family: var(--sh-font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sh-copper);
}
.sh-radius-name {
  font-family: var(--sh-font-serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--sh-ink);
  letter-spacing: -0.012em;
}
.sh-radius-time {
  font-family: var(--sh-font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--sh-ink-muted);
}
@media (max-width: 900px) {
  .sh-radius-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Header Nav-Link ── */
.sh-nav-link {
  font-family: var(--sh-font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--sh-ink-soft);
  transition: color 180ms var(--sh-ease);
}
.sh-nav-link:hover,
.sh-nav-link.is-active {
  color: var(--sh-marine);
}
.sh-nav-link.is-active {
  position: relative;
}
.sh-nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--sh-marine);
}

/* ── Mobile Nav-Toggle ── */
#burger:focus-visible {
  outline: 2px solid var(--sh-marine);
  outline-offset: 2px;
}

/* ── Page Hero (Sub-Pages) ── */
.sh-page-hero {
  background: var(--sh-bg-2);
  padding: 140px 0 72px;
  border-bottom: 1px solid var(--sh-line);
}
.sh-page-hero-h1 {
  font-family: var(--sh-font-serif);
  font-size: clamp(46px, 6.4vw, 88px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--sh-ink);
  margin: 18px 0 22px;
  max-width: 18ch;
}
.sh-page-hero-h1 em {
  font-style: italic;
  color: var(--sh-copper);
}
.sh-page-hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--sh-ink-soft);
  max-width: 56ch;
}

/* ── Leistungs-Row ── */
.sh-leistung-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-top: 1px solid var(--sh-line);
}
.sh-leistung-row:first-child { border-top: none; padding-top: 24px; }
.sh-leistung-row.reverse > .sh-leistung-image { order: 2; }
.sh-leistung-image {
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  background: var(--sh-bg-2);
  box-shadow: 0 16px 40px rgba(20, 34, 51, 0.10);
}
.sh-leistung-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--sh-spring);
}
.sh-leistung-row:hover .sh-leistung-image img { transform: scale(1.03); }
.sh-leistung-num {
  font-family: var(--sh-font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sh-marine);
  margin-bottom: 16px;
}
.sh-leistung-title {
  font-family: var(--sh-font-serif);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: var(--sh-ink);
  margin-bottom: 20px;
}
.sh-leistung-body {
  font-size: 16px; line-height: 1.7;
  color: var(--sh-ink-soft);
  margin-bottom: 22px;
  max-width: 52ch;
}
.sh-leistung-meta {
  list-style: none;
  margin: 0 0 26px;
  padding-top: 18px;
  border-top: 1px solid var(--sh-line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 22px;
}
.sh-leistung-meta li {
  font-family: var(--sh-font-mono);
  font-size: 12px; line-height: 1.55;
  color: var(--sh-ink-muted);
}
.sh-leistung-meta li::before {
  content: "·";
  color: var(--sh-copper);
  margin-right: 8px;
  font-weight: 700;
}
.sh-leistung-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sh-font-mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sh-marine);
  border-bottom: 1px solid var(--sh-marine);
  padding-bottom: 3px;
  transition: gap 200ms var(--sh-ease), color 200ms var(--sh-ease), border-bottom-color 200ms var(--sh-ease);
}
.sh-leistung-link:hover {
  gap: 12px;
  color: var(--sh-copper);
  border-bottom-color: var(--sh-copper);
}
@media (max-width: 900px) {
  .sh-leistung-row, .sh-leistung-row.reverse > .sh-leistung-image {
    grid-template-columns: 1fr;
    gap: 32px;
    order: unset;
  }
  .sh-leistung-row { padding: 56px 0; }
}
@media (max-width: 600px) {
  .sh-leistung-meta { grid-template-columns: 1fr; }
}

/* ── Story (Über-uns) ── */
.sh-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.sh-story-portrait {
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  background: var(--sh-bg-2);
  box-shadow: 0 24px 64px rgba(20, 34, 51, 0.12);
  position: sticky;
  top: 100px;
}
.sh-story-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
}
.sh-story-body p {
  font-size: 17px;
  line-height: 1.78;
  color: var(--sh-ink-soft);
  margin-bottom: 22px;
  max-width: 60ch;
}
.sh-story-body p strong { color: var(--sh-ink); font-weight: 500; }
.sh-story-pull {
  font-family: var(--sh-font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  color: var(--sh-ink);
  margin: 0 0 28px;
  padding-left: 0;
  position: relative;
  max-width: 28ch;
}
.sh-story-pull::before {
  content: "\201C";
  font-family: var(--sh-font-serif);
  font-size: clamp(64px, 7vw, 96px);
  color: var(--sh-marine);
  opacity: 0.32;
  line-height: 0.8;
  position: absolute;
  top: -16px;
  left: -14px;
  pointer-events: none;
}
@media (max-width: 900px) {
  .sh-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .sh-story-portrait { position: relative; top: 0; max-width: 360px; }
}

/* ── Kontakt-Channel-Row (vertical list) ── */
.sh-channel-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--sh-line);
  text-decoration: none;
  color: inherit;
  transition: padding-left 220ms var(--sh-ease);
}
.sh-channel-row:first-child { border-top: none; padding-top: 8px; }
.sh-channel-row:hover { padding-left: 8px; }
.sh-channel-icon {
  width: 44px; height: 44px;
  background: var(--sh-marine-soft);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--sh-marine);
  transition: background 220ms var(--sh-ease), color 220ms var(--sh-ease);
}
.sh-channel-row:hover .sh-channel-icon {
  background: var(--sh-marine);
  color: #fff;
}
.sh-channel-label {
  display: block;
  font-family: var(--sh-font-mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sh-ink-muted);
  margin-bottom: 4px;
}
.sh-channel-value {
  font-family: var(--sh-font-serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.012em;
  color: var(--sh-ink);
}
.sh-channel-meta {
  display: block;
  font-size: 13px;
  color: var(--sh-ink-muted);
  margin-top: 4px;
}

/* ── Kontakt-Form ── */
.sh-form-block {
  background: var(--sh-surface);
  border: 1px solid var(--sh-line);
  border-radius: 16px;
  padding: 36px 32px;
}
.sh-form-block h2 {
  font-family: var(--sh-font-serif);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  color: var(--sh-ink);
  margin: 0 0 22px;
  letter-spacing: -0.012em;
}
.sh-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.sh-form-row-single { margin-bottom: 14px; }
.sh-form-field { display: flex; flex-direction: column; gap: 6px; }
.sh-form-field label {
  font-family: var(--sh-font-mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sh-ink-muted);
}
.sh-form-field input,
.sh-form-field select,
.sh-form-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--sh-font-sans);
  font-size: 15px;
  background: var(--sh-bg);
  color: var(--sh-ink);
  border: 1px solid var(--sh-line-strong);
  border-radius: 10px;
  outline: none;
  transition: border-color 200ms var(--sh-ease),
              box-shadow 200ms var(--sh-ease),
              background 200ms var(--sh-ease);
}
.sh-form-field input:focus,
.sh-form-field select:focus,
.sh-form-field textarea:focus {
  border-color: var(--sh-marine);
  background: var(--sh-surface);
  box-shadow: 0 0 0 3px var(--sh-marine-soft);
}
.sh-form-field textarea { resize: vertical; min-height: 120px; }
.sh-form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%236B7585' stroke-width='1.6'%3E%3Cpath d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.sh-form-hint {
  font-size: 12px;
  color: var(--sh-ink-muted);
  margin: 14px 0 18px;
}
@media (max-width: 900px) {
  .sh-form-row { grid-template-columns: 1fr; }
}

/* ── Kontakt-Layout ── */
.sh-kontakt-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .sh-kontakt-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* ── About-Stats (Über-uns) ── */
.sh-ueber-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--sh-line);
  padding-top: 32px;
  margin-top: 8px;
}
.sh-ueber-stat {
  padding: 0 24px;
  border-right: 1px solid var(--sh-line);
}
.sh-ueber-stat:first-child { padding-left: 0; }
.sh-ueber-stat:last-child { border-right: none; padding-right: 0; }
.sh-ueber-stat-num {
  font-family: var(--sh-font-serif);
  font-size: clamp(38px, 4.2vw, 56px);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  color: var(--sh-marine);
  display: block;
  margin-bottom: 10px;
  letter-spacing: -0.028em;
}
.sh-ueber-stat-lbl {
  font-family: var(--sh-font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sh-ink-muted);
}
@media (max-width: 700px) {
  .sh-ueber-stats { grid-template-columns: 1fr; gap: 16px; padding-top: 24px; }
  .sh-ueber-stat { padding: 12px 0; border-right: none; border-bottom: 1px solid var(--sh-line); }
  .sh-ueber-stat:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ── Reveal Animations ── */
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1 !important; transform: none !important; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Focus-Visible Global ── */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--sh-marine);
  outline-offset: 3px;
  border-radius: 4px;
}
