@import "../fonts/fonts.css";
:root {
  --paper: #ffffff;
  --paper-2: #f4f6f4;
  --paper-3: #eaece9;
  --graphit: #1c2023;
  --graphit-2: #262b2f;
  --graphit-deep: #14171a;
  --ink: #1c2023;
  --ink-mute: #565c62;
  --ink-subtle: #6b7177;
  --line: rgba(28, 32, 35, .13);
  --line-soft: rgba(28, 32, 35, .07);
  --line-strong: rgba(28, 32, 35, .24);
  --ink-on-dark: #f2f4f3;
  --muted-on-dark: #aeb4b6;
  --subtle-on-dark: #82898c;
  --line-on-dark: rgba(242, 244, 243, .16);
  --line-on-dark-soft: rgba(242, 244, 243, .09);
  --brand: #3F9D5A;
  --brand-soft: color-mix(in srgb, var(--brand) 14%, transparent);
  --brand-line: color-mix(in srgb, var(--brand) 45%, transparent);
  --brand-ink: color-mix(in srgb, var(--brand) 85%, black 15%);
  --on-brand: var(--ink);
  --ampel-h: #b3261e;
  --ampel-g: #d9432f;
  --ampel-f: #e8672c;
  --ampel-e: #f0932b;
  --ampel-d: #f4c430;
  --ampel-c: #c3d92e;
  --ampel-b: #8bc34a;
  --ampel-a: #4caf50;
  --ampel-aplus: #2e7d32;
  --font-display:
    "Schibsted Grotesk",
    "Arial Narrow",
    sans-serif;
  --font-body:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  --text-display: clamp(2.75rem, 2.05rem + 3.4vw, 5.5rem);
  --text-h2: clamp(1.85rem, 1.55rem + 1.4vw, 2.65rem);
  --text-h3: clamp(1.2rem, 1.05rem + 0.7vw, 1.5rem);
  --text-lg: 1.1875rem;
  --text-body: 1rem;
  --text-sm: 0.875rem;
  --text-eyebrow: 0.75rem;
  --text-stat: clamp(2rem, 1.55rem + 2.1vw, 3.15rem);
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --section: clamp(4rem, 3.5rem + 5.5vw, 8rem);
  --radius: 3px;
  --radius-sm: 2px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 150ms;
  --dur: 280ms;
  --dur-slow: 500ms;
  --shadow-card: 0 2px 4px rgba(20, 23, 26, .08), 0 10px 26px rgba(20, 23, 26, .1);
  --shadow-card-dark: 0 2px 4px rgba(0, 0, 0, .3), 0 12px 30px rgba(0, 0, 0, .38);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,
svg,
canvas {
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3 {
  margin: 0 0 var(--space-4);
  font-weight: 700;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.08;
  text-wrap: balance;
}
h1 {
  font-size: var(--text-display);
  letter-spacing: -0.025em;
}
h2 {
  font-size: var(--text-h2);
  letter-spacing: -0.018em;
}
h3 {
  font-size: var(--text-h3);
  font-weight: 600;
  letter-spacing: -0.008em;
}
p {
  margin: 0 0 var(--space-4);
}
p:last-child {
  margin-bottom: 0;
}
a {
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:not(.btn):hover {
  color: var(--brand-ink);
}
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
::selection {
  background: var(--brand);
  color: #fff;
}
.container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.prose {
  max-width: 62ch;
}
.prose p {
  color: var(--ink-mute);
}
.tnum {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: 100;
  padding: var(--space-3) var(--space-6);
  background: var(--brand);
  color: var(--on-brand);
  font-weight: 600;
}
.skip-link:focus {
  top: var(--space-4);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  margin-bottom: var(--space-4);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.eyebrow::before {
  content: "";
  width: 1.15em;
  height: 2px;
  background: var(--brand);
  flex: none;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-subtle);
  white-space: nowrap;
}
.blk-graphit .chip,
.blk-deep .chip {
  border-color: var(--line-on-dark);
  color: var(--subtle-on-dark);
}
.rule {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin: var(--space-6) 0;
}
.rule::before,
.rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.rule svg {
  flex: none;
  color: var(--brand);
}
.rule--tight {
  max-width: 160px;
}
.rule--center {
  margin-inline: auto;
}
.blk-graphit .rule::before,
.blk-graphit .rule::after,
.blk-deep .rule::before,
.blk-deep .rule::after {
  background: var(--line-on-dark);
}
.section-head {
  max-width: 640px;
  margin: 0 auto var(--space-12);
  text-align: center;
}
.section-head .eyebrow {
  justify-content: center;
}
.section-head .rule {
  max-width: 200px;
  margin-inline: auto;
}
.section-head p {
  color: var(--ink-mute);
}
.blk-graphit .section-head p,
.blk-deep .section-head p {
  color: var(--muted-on-dark);
}
.blk-graphit .section-head .eyebrow,
.blk-deep .section-head .eyebrow {
  color: var(--muted-on-dark);
}
.blueprint {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M40 0H0V40' fill='none' stroke='rgba(28,32,35,0.09)' stroke-width='1'/%3E%3Ccircle cx='0' cy='0' r='1.4' fill='rgba(28,32,35,0.16)'/%3E%3C/svg%3E");
}
.blk-graphit .blueprint,
.blk-deep .blueprint {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M40 0H0V40' fill='none' stroke='rgba(242,244,243,0.07)' stroke-width='1'/%3E%3Ccircle cx='0' cy='0' r='1.4' fill='rgba(242,244,243,0.13)'/%3E%3C/svg%3E");
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  min-height: 4.25rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}
.brand:hover {
  color: var(--brand);
}
.brand-mark {
  flex: none;
  display: grid;
  place-items: center;
}
.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav a {
  position: relative;
  display: inline-block;
  padding-block: 0.3rem;
  color: var(--ink-mute);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.site-nav a:hover,
.site-nav a[aria-current=page] {
  color: var(--ink);
}
.site-nav a:hover::after,
.site-nav a[aria-current=page]::after {
  transform: scaleX(1);
}
.nav-toggle {
  display: none;
  align-items: center;
  gap: var(--space-2);
  border: 1px solid var(--line-strong);
  background: none;
  color: var(--ink);
  padding: var(--space-2) var(--space-3);
  font: inherit;
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
@media (max-width: 780px) {
  .nav-toggle {
    display: inline-flex;
  }
  .site-nav {
    display: none;
    position: absolute;
    inset: 100% 0 auto 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: var(--space-6) clamp(1.25rem, 4vw, 2.5rem) var(--space-8);
  }
  .site-nav.is-open {
    display: block;
  }
  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-6);
  }
  .site-nav a {
    font-size: 1.05rem;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.85rem 1.7rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease),
    background-color var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease),
    color var(--dur-fast) var(--ease);
}
.btn-brand {
  background: var(--brand);
  color: var(--on-brand);
}
.btn-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--brand-soft);
}
.btn-brand:active {
  transform: translateY(0) scale(.98);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand-ink);
}
.blk-graphit .btn-outline,
.blk-deep .btn-outline,
.cta-band .btn-outline {
  color: var(--ink-on-dark);
  border-color: var(--line-on-dark);
}
.blk-graphit .btn-outline:hover,
.blk-deep .btn-outline:hover,
.cta-band .btn-outline:hover {
  color: var(--ink-on-dark);
  border-color: var(--brand);
}
.hours-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.4rem 0.85rem;
  margin: 0 0 var(--space-4);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--ink-mute);
}
.hours-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink-subtle);
  flex-shrink: 0;
}
.hours-pill[data-status=open] {
  border-color: var(--brand-line);
  color: var(--ink);
}
.hours-pill[data-status=open] .dot {
  background: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.hours-pill[data-status=before] .dot {
  background: var(--ink-mute);
}
.hours-pill[data-status=closed] .dot {
  background: var(--ink-subtle);
}
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      var(--paper),
      var(--paper-2));
  text-align: center;
}
.hero .container {
  position: relative;
  z-index: 1;
  padding-block: clamp(5rem, 4.2rem + 7vw, 9.5rem);
  max-width: 960px;
}
.hero .eyebrow,
.hero .hours-pill {
  justify-content: center;
}
.hero h1 {
  margin-bottom: var(--space-6);
}
.hero-sub {
  max-width: 56ch;
  margin: 0 auto var(--space-8);
  font-size: var(--text-lg);
  color: var(--ink-mute);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}
.skala {
  --p: 1;
  max-width: 640px;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  text-align: left;
}
.skala-band-wrap {
  position: relative;
}
.skala-band {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.skala-seg {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(2.4rem, 2rem + 1.4vw, 3.1rem);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.7rem, 0.6rem + 0.35vw, 0.9rem);
  color: var(--skala-ink, #fff);
  background: var(--c);
}
.skala-h {
  --c: var(--ampel-h);
  --skala-ink: #fff;
}
.skala-g {
  --c: var(--ampel-g);
  --skala-ink: #fff;
}
.skala-f {
  --c: var(--ampel-f);
  --skala-ink: #fff;
}
.skala-e {
  --c: var(--ampel-e);
  --skala-ink: #1c2023;
}
.skala-d {
  --c: var(--ampel-d);
  --skala-ink: #1c2023;
}
.skala-c {
  --c: var(--ampel-c);
  --skala-ink: #1c2023;
}
.skala-b {
  --c: var(--ampel-b);
  --skala-ink: #1c2023;
}
.skala-a {
  --c: var(--ampel-a);
  --skala-ink: #fff;
}
.skala-aplus {
  --c: var(--ampel-aplus);
  --skala-ink: #fff;
}
.skala-marker {
  position: absolute;
  top: -9px;
  left: calc((0.5 + (var(--target, 1) - 1) * var(--p, 1)) / 9 * 100%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 9px solid var(--graphit);
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .25));
}
.blk-graphit .skala-marker,
.blk-deep .skala-marker {
  border-top-color: var(--paper);
}
.skala-readout {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.skala-value {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-stat);
  line-height: 1;
  color: var(--ink);
}
.blk-graphit .skala-value,
.blk-deep .skala-value {
  color: var(--ink-on-dark);
}
.skala-value .count-out {
  font-variant-numeric: tabular-nums;
}
.skala-class {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--ink-mute);
}
.blk-graphit .skala-class,
.blk-deep .skala-class {
  color: var(--muted-on-dark);
}
.skala-class strong {
  color: var(--ink);
  font-weight: 700;
}
.blk-graphit .skala-class strong,
.blk-deep .skala-class strong {
  color: var(--ink-on-dark);
}
.skala-pair {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
}
@media (min-width: 780px) {
  .skala-pair {
    grid-template-columns: 1fr 1fr;
  }
}
.skala-pair .skala {
  max-width: none;
  margin: 0;
}
main > section {
  padding-block: var(--section);
  position: relative;
}
.blk-tint {
  background: var(--paper-2);
}
.blk-graphit {
  background:
    linear-gradient(
      180deg,
      var(--graphit),
      var(--graphit-2));
  color: var(--ink-on-dark);
}
.blk-graphit h2,
.blk-graphit h3 {
  color: var(--ink-on-dark);
}
.blk-deep {
  background: var(--graphit-deep);
  color: var(--ink-on-dark);
}
.blk-deep h2,
.blk-deep h3 {
  color: var(--ink-on-dark);
}
.usp-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
@media (max-width: 780px) {
  .usp-grid {
    grid-template-columns: 1fr;
  }
}
.usp-item .usp-index {
  display: block;
  margin-bottom: var(--space-3);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  color: var(--brand);
}
.usp-item h3 {
  margin-bottom: var(--space-2);
}
.usp-item p {
  color: var(--ink-mute);
}
.kennzahlen-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
}
.blk-graphit .kennzahlen-grid,
.blk-deep .kennzahlen-grid {
  background: var(--line-on-dark);
  border-color: var(--line-on-dark);
}
.kennzahlen-tile {
  background: var(--paper);
  padding: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}
.blk-graphit .kennzahlen-tile,
.blk-deep .kennzahlen-tile {
  background: var(--graphit-2);
}
.kennzahlen-tile dt {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-stat);
  line-height: 1;
  color: var(--ink);
}
.blk-graphit .kennzahlen-tile dt,
.blk-deep .kennzahlen-tile dt {
  color: var(--ink-on-dark);
}
.kennzahlen-tile.is-accent dt {
  color: var(--brand);
}
.kennzahlen-tile dd {
  margin: var(--space-3) 0 0;
  font-size: var(--text-sm);
  color: var(--ink-mute);
}
.blk-graphit .kennzahlen-tile dd,
.blk-deep .kennzahlen-tile dd {
  color: var(--muted-on-dark);
}
.dienst-grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}
.dienst-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform var(--dur) var(--ease);
}
.dienst-card:hover {
  transform: translateY(-4px);
}
.dienst-tag {
  display: block;
  margin-bottom: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-subtle);
}
.dienst-card p {
  color: var(--ink-mute);
  flex: 1;
}
.dienst-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: var(--space-6);
  color: var(--ink);
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
  text-decoration-color: var(--line-strong);
}
.dienst-link:hover {
  color: var(--brand-ink);
}
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
  }
  .split > .split-media {
    order: 2;
  }
}
.split-media {
  position: relative;
}
.plate {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--paper-2);
  text-align: center;
}
.plate svg {
  width: 100%;
  height: auto;
  max-width: 180px;
}
.plate figcaption {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--ink-mute);
}
.keyfacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--line);
}
.keyfacts dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--brand);
}
.keyfacts dd {
  margin: var(--space-2) 0 0;
  font-size: var(--text-sm);
  color: var(--ink-subtle);
}
@media (max-width: 560px) {
  .keyfacts {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}
.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-3);
  max-width: 640px;
  margin-inline: auto;
}
.trust-list li {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  background: var(--paper);
  border-radius: var(--radius-sm);
}
.blk-tint .trust-list li {
  background: var(--paper);
}
.trust-list .tick {
  flex: none;
  width: 6px;
  height: 6px;
  background: var(--brand);
  transform: translateY(-2px) rotate(45deg);
}
.trust-list span:last-child {
  color: var(--ink-mute);
}
.hours-card {
  max-width: 560px;
  margin-inline: auto;
  background: var(--paper);
  color: var(--ink);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius);
  position: relative;
  box-shadow: var(--shadow-card-dark);
}
.hours-card .eyebrow {
  justify-content: center;
}
.hours-card h2 {
  text-align: center;
}
.hours-list {
  list-style: none;
  margin: var(--space-6) 0 0;
  padding: 0;
}
.hours-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-2);
  border-bottom: 1px dotted var(--line);
  font-size: var(--text-body);
}
.hours-list li:last-child {
  border-bottom: none;
}
.hours-list .day {
  font-weight: 600;
}
.hours-list .dots {
  display: none;
}
.hours-list .time {
  color: var(--ink-mute);
  font-variant-numeric: tabular-nums;
}
.hours-list .time.closed {
  font-style: italic;
}
.hours-list li.is-today {
  background: var(--brand-soft);
  border-left: 3px solid var(--brand);
  padding-left: calc(var(--space-2) + var(--space-3));
}
.hours-list li.is-today .day,
.hours-list li.is-today .time {
  color: var(--ink);
  font-weight: 700;
}
.hours-note {
  margin-top: var(--space-4);
  text-align: center;
  font-style: italic;
  color: var(--ink-subtle);
  font-size: var(--text-sm);
}
.quote {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-h3);
  line-height: 1.35;
}
.quote cite {
  display: block;
  margin-top: var(--space-6);
  font-style: normal;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.blk-graphit .quote cite,
.blk-deep .quote cite {
  color: var(--muted-on-dark);
}
.faq {
  max-width: 720px;
  margin-inline: auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child {
  border-top: 1px solid var(--line);
}
.blk-graphit .faq-item,
.blk-deep .faq-item {
  border-color: var(--line-on-dark);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  background: none;
  border: 0;
  color: inherit;
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}
.faq-q:hover {
  color: var(--brand-ink);
}
.faq-q .faq-icon {
  flex: none;
  display: inline-flex;
  color: var(--brand);
  transition: transform var(--dur-fast) var(--ease);
}
.faq-q[aria-expanded=true] .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 0 var(--space-6);
  color: var(--ink-mute);
  max-width: 60ch;
}
.blk-graphit .faq-a,
.blk-deep .faq-a {
  color: var(--muted-on-dark);
}
.faq-a[hidden] {
  display: none;
}
.cta-band {
  position: relative;
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 4rem);
  border: 1px solid var(--brand-line);
  border-radius: var(--radius);
  background: var(--graphit-deep);
  color: var(--ink-on-dark);
}
.cta-band h2 {
  color: var(--ink-on-dark);
}
.cta-band p {
  max-width: 48ch;
  margin-inline: auto;
  color: var(--muted-on-dark);
}
.cta-band .hero-actions {
  margin-top: var(--space-8);
}
.cta-band .eyebrow {
  justify-content: center;
  color: var(--muted-on-dark);
}
.seo-text {
  max-width: 70ch;
  margin-inline: auto;
  color: var(--ink-subtle);
  font-size: var(--text-sm);
  text-align: center;
}
.contact-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-list li {
  display: flex;
  gap: var(--space-4);
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child {
  border-bottom: none;
}
.contact-list .k {
  flex: none;
  width: 7.5rem;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  color: var(--ink-subtle);
  padding-top: 0.2rem;
}
.contact-list span:last-child {
  color: var(--ink-mute);
}
.form-field {
  margin-bottom: var(--space-6);
}
.form-field label {
  display: block;
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
  letter-spacing: 0.03em;
  color: var(--ink-mute);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font: inherit;
}
.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
  border-color: var(--brand);
}
.form-hint {
  font-size: var(--text-sm);
  color: var(--ink-subtle);
  margin-top: var(--space-2);
}
.stepper-wrap {
  position: relative;
}
.stepper-wrap.js-stepper-active {
  overflow: hidden;
}
.stepper-fill-track {
  height: 2px;
  margin-bottom: var(--space-6);
  background: var(--line-strong);
  border-radius: 999px;
  overflow: hidden;
}
.stepper-fill {
  height: 100%;
  width: 100%;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
}
.stepper-track {
  display: flex;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-block: var(--space-2);
  -webkit-overflow-scrolling: touch;
}
.js-stepper-active .stepper-track {
  overflow: visible;
  scroll-snap-type: none;
}
.stepper-step {
  flex: 0 0 min(84vw, 340px);
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
}
.stepper-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: var(--space-3);
  border-radius: 50%;
  background: var(--graphit);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
}
.stepper-step p {
  color: var(--ink-mute);
  flex: 1;
  margin: 0;
}
.stepper-hint {
  display: block;
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--ink-subtle);
  text-align: center;
}
.js-stepper-active .stepper-hint {
  display: none;
}
.menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu-list li {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--line);
}
.menu-list li:last-child {
  border-bottom: none;
}
.menu-list .dots {
  flex: 1;
  border-bottom: 1px dotted var(--line-strong);
  transform: translateY(-4px);
}
.menu-item-name {
  font-size: var(--text-lg);
}
.menu-item-name em {
  color: var(--ink-mute);
  font-size: var(--text-body);
  font-style: italic;
}
.menu-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--ink);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.menu-note {
  margin-top: var(--space-6);
  font-style: italic;
  color: var(--ink-subtle);
}
.page-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: clamp(4rem, 3rem + 6vw, 7rem);
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero .eyebrow {
  justify-content: center;
  margin-bottom: var(--space-4);
}
.page-hero p {
  max-width: 56ch;
  margin-inline: auto;
  color: var(--ink-mute);
  font-size: var(--text-lg);
}
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--graphit-deep);
  color: var(--ink-on-dark);
  padding-block: var(--space-16) var(--space-8);
  font-size: var(--text-body);
}
.site-footer .container {
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  margin-bottom: var(--space-12);
}
.footer-brand .brand {
  color: var(--ink-on-dark);
}
.footer-brand p {
  color: var(--muted-on-dark);
  font-size: var(--text-body);
  max-width: 30ch;
}
.footer-col h3 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  margin-bottom: var(--space-4);
}
.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-col li {
  margin-bottom: var(--space-3);
}
.footer-col a {
  color: var(--muted-on-dark);
  text-decoration: none;
}
.footer-col a:hover {
  color: var(--brand);
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  padding-top: var(--space-6);
  border-top: 1px solid var(--line-on-dark-soft);
  color: var(--subtle-on-dark);
  font-size: var(--text-sm);
}
.footer-bottom a {
  color: var(--muted-on-dark);
  text-decoration: underline;
  text-decoration-color: var(--line-on-dark);
}
.footer-bottom a:hover {
  color: var(--brand);
}
.legal {
  max-width: 72ch;
  margin-inline: auto;
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
.legal h1 {
  margin-bottom: var(--space-6);
}
.legal h2 {
  font-size: var(--text-h3);
  margin-top: var(--space-12);
}
.legal h2:first-of-type {
  margin-top: 0;
}
.legal p,
.legal li,
.legal address {
  color: var(--ink-mute);
}
.legal a {
  text-decoration: underline;
}
.error-404 {
  text-align: center;
  padding-block: clamp(4rem, 10vw, 7rem);
}
.error-404 .code {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4.5rem, 12vw, 8rem);
  line-height: 1;
  color: var(--brand);
}
.js-on:not(.rm) [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
}
.js-on:not(.rm) [data-reveal-group] > * {
  opacity: 0;
  transform: translateY(14px);
}
.js-on:not(.rm) .skala-seg {
  background: var(--paper-3);
  color: transparent;
  transition: none;
}
.js-on:not(.rm) .skala-seg.is-lit {
  background: var(--c);
  color: var(--skala-ink, #fff);
  transition: background var(--dur-slow) var(--ease), color var(--dur-slow) var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  .btn,
  .dienst-card,
  .faq-q .faq-icon,
  .site-nav a::after {
    transition: none;
  }
  .btn-brand:hover,
  .dienst-card:hover {
    transform: none;
  }
}
@media print {
  .site-header,
  .site-footer,
  .nav-toggle,
  .hero-actions,
  .blueprint,
  .stepper-fill-track {
    display: none;
  }
}
.sk-shot {
  overflow: hidden;
  border-radius: var(--radius,12px);
  margin-bottom: 1.5rem;
}
.sk-shot img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.sk-shot--portrait img {
  aspect-ratio: 4/5;
}
.sk-shot--breit img {
  aspect-ratio: 4/3;
}
