@import "../fonts/fonts.css";
:root {
  --asphalt: #17181a;
  --asphalt-2: #1d1f22;
  --asphalt-deep: #101112;
  --stahl: #26292d;
  --stahl-2: #303439;
  --stahl-3: #454a51;
  --paper: #ece8e0;
  --paper-ink: #1b1c1e;
  --paper-muted: #55585d;
  --paper-line: rgba(27, 28, 30, .2);
  --ink: #f1f2f3;
  --muted: #aaadb2;
  --subtle: #8e9194;
  --line: rgba(241, 242, 243, .14);
  --line-soft: rgba(241, 242, 243, .08);
  --line-strong: rgba(241, 242, 243, .28);
  --brand: #e66a39;
  --brand-soft: color-mix(in srgb, var(--brand) 16%, transparent);
  --brand-line: color-mix(in srgb, var(--brand) 45%, transparent);
  --font-display:
    "Saira Condensed",
    "Arial Narrow",
    sans-serif;
  --font-body:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  --text-display: clamp(2.5rem, 2rem + 3vw, 5.5rem);
  --text-h2: clamp(1.75rem, 1.5rem + 1.5vw, 3rem);
  --text-h3: clamp(1.25rem, 1.1rem + 0.8vw, 1.75rem);
  --text-lg: 1.1875rem;
  --text-body: 1rem;
  --text-sm: 0.875rem;
  --text-eyebrow: 0.75rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --section: clamp(4rem, 3.5rem + 5.5vw, 8rem);
  --radius: 3px;
  --radius-sm: 2px;
  --ease-snap: cubic-bezier(.34, 1.4, .64, 1);
  --ease-mechanical: cubic-bezier(.7, 0, .3, 1);
  --ease-roll: cubic-bezier(.16, 1, .3, 1);
  --duration-fast: 150ms;
  --duration-normal: 280ms;
  --duration-slow: 500ms;
  --shadow-card: 0 2px 4px rgba(0, 0, 0, .28), 0 10px 26px 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(--asphalt);
  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: 600;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.08;
  text-wrap: balance;
}
h1 {
  font-size: var(--text-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}
h2 {
  font-size: var(--text-h2);
  letter-spacing: -0.015em;
}
h3 {
  font-size: var(--text-h3);
  letter-spacing: -0.01em;
}
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:hover {
  color: var(--brand);
}
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
::selection {
  background: var(--brand);
  color: #160904;
}
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.prose {
  max-width: 62ch;
}
.prose p {
  color: var(--muted);
}
.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(--asphalt-deep);
  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(--muted);
}
.eyebrow::before {
  content: "";
  width: 1.15em;
  height: 2px;
  background: var(--brand);
  flex: none;
}
.tick-rule {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin: var(--space-6) 0;
}
.tick-rule::before,
.tick-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.tick-rule svg {
  flex: none;
  color: var(--brand);
}
.tick-rule--tight {
  max-width: 160px;
}
.tick-rule--center {
  margin-inline: auto;
}
.section-head {
  max-width: 640px;
  margin: 0 auto var(--space-12);
  text-align: center;
}
.section-head .eyebrow {
  justify-content: center;
}
.section-head .tick-rule {
  max-width: 200px;
  margin-inline: auto;
}
.section-head p {
  color: var(--muted);
}
.bp-grid {
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(
      90deg,
      var(--line-soft) 1px,
      transparent 1px);
  background-size: 42px 42px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--asphalt-deep) 90%, 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.35rem;
  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(--muted);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.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(--duration-normal) var(--ease-snap);
}
.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);
  background: none;
  color: var(--ink);
  padding: var(--space-2) var(--space-3);
  font: inherit;
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  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(--asphalt-deep);
    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.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--duration-fast) var(--ease-snap),
    box-shadow var(--duration-fast) var(--ease-snap),
    background-color var(--duration-fast) var(--ease-mechanical),
    border-color var(--duration-fast) var(--ease-mechanical),
    color var(--duration-fast) var(--ease-mechanical);
}
.btn-brand {
  background: var(--brand);
  color: var(--asphalt-deep);
}
.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);
}
.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);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  color: var(--muted);
}
.hours-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--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(--muted);
}
.hours-pill[data-status=closed] .dot {
  background: var(--subtle);
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0.55rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--stahl);
  font-size: var(--text-sm);
  color: var(--muted);
}
.status-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--subtle);
  flex: none;
}
.status-badge[data-status=frei] {
  color: var(--ink);
  border-color: var(--brand-line);
}
.status-badge[data-status=frei] .status-dot {
  background: var(--brand);
}
.status-badge[data-status=frei] .status-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid var(--brand);
  animation: status-pulse 2.1s var(--ease-mechanical) infinite;
}
.status-badge[data-status=ausgebucht] .status-dot {
  background: var(--subtle);
}
.status-badge[data-status=ausgebucht] .status-text {
  font-style: italic;
}
.status-badge[data-status=termin] .status-dot {
  background: var(--muted);
}
@keyframes status-pulse {
  0% {
    transform: scale(.7);
    opacity: .9;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .status-badge[data-status=frei] .status-dot::after {
    animation: none;
  }
}
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      1000px 480px at 50% -10%,
      color-mix(in srgb, var(--brand) 10%, transparent),
      transparent 65%),
    linear-gradient(
      180deg,
      var(--asphalt-deep),
      var(--asphalt));
  text-align: center;
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-block: clamp(5.5rem, 4.5rem + 8vw, 11rem);
  max-width: 920px;
}
.hero .bp-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  mask-image:
    radial-gradient(
      80% 60% at 50% 20%,
      black,
      transparent);
}
.hero .eyebrow,
.hero .hours-pill {
  justify-content: center;
}
.hero-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-bottom: var(--space-6);
}
.hero h1 {
  margin-bottom: var(--space-6);
}
.hero-sub {
  max-width: 54ch;
  margin: 0 auto var(--space-10, var(--space-8));
  font-size: var(--text-lg);
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}
.odo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  max-width: 720px;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  padding-top: var(--space-8);
  border-top: 1px solid var(--line-soft);
}
@media (max-width: 620px) {
  .odo-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
  }
}
.odo-stat {
  margin: 0;
}
.odometer {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 1.5rem + 2vw, 3rem);
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}
.odo-fallback {
  line-height: 1;
}
.odo-roll {
  display: inline-flex;
  align-items: baseline;
}
.odo-static {
  display: inline-block;
}
.odo-col {
  display: inline-block;
  height: 1em;
  overflow: hidden;
  vertical-align: baseline;
}
.odo-track {
  display: flex;
  flex-direction: column;
  transform: translateY(0);
  transition-property: transform;
  transition-duration: var(--duration-slow);
  transition-timing-function: var(--ease-roll);
}
.odo-cell {
  height: 1em;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.odo-stat dd {
  margin: var(--space-2) 0 0;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  color: var(--subtle);
}
@media (prefers-reduced-motion: reduce) {
  .odo-track {
    transition: none;
  }
}
main > section {
  padding-block: var(--section);
}
.blk-stahl {
  background:
    linear-gradient(
      180deg,
      var(--asphalt-2),
      var(--stahl));
}
.blk-deep {
  background: var(--asphalt-deep);
}
.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.06em;
  color: var(--brand);
}
.usp-item h3 {
  margin-bottom: var(--space-2);
}
.usp-item p {
  color: var(--muted);
}
.spec-grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}
.spec-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--stahl);
  border: 1px solid var(--line-soft);
  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(--duration-normal) var(--ease-mechanical), border-color var(--duration-normal) var(--ease-mechanical);
}
.spec-card:hover {
  transform: translateY(-4px);
}
.spec-tag {
  display: block;
  margin-bottom: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.spec-card p {
  color: var(--muted);
  flex: 1;
}
.spec-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: var(--space-6);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: var(--text-sm);
  text-decoration: none;
  text-decoration-color: var(--line-strong);
}
.spec-link:hover {
  color: var(--brand);
}
.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;
}
.split-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.split-photo img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(.85) contrast(1.1);
  transition: filter 600ms var(--ease-mechanical);
}
.split-photo:hover img,
.split-photo:focus-within img {
  filter: grayscale(0) contrast(1.02);
}
.split-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--brand-line);
  opacity: 0;
  transition: opacity 600ms var(--ease-mechanical);
  pointer-events: none;
}
.split-photo:hover::after,
.split-photo:focus-within::after {
  opacity: 1;
}
.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-soft);
}
.keyfacts dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--brand);
}
.keyfacts dd {
  margin: var(--space-2) 0 0;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  color: var(--subtle);
}
@media (max-width: 560px) {
  .keyfacts {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}
.bp-plate {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--asphalt-2);
  text-align: center;
}
.bp-plate::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid var(--line-soft);
  pointer-events: none;
}
.bp-plate svg {
  width: 100%;
  height: auto;
  max-width: 220px;
}
.bp-path {
  fill: none;
  stroke: var(--brand);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.3s var(--ease-mechanical);
}
.bp-plate.is-drawn .bp-path {
  stroke-dashoffset: 0;
}
.bp-plate.is-drawn .bp-path:nth-child(2) {
  transition-delay: .15s;
}
.bp-plate.is-drawn .bp-path:nth-child(3) {
  transition-delay: .3s;
}
.bp-dot {
  fill: var(--ink);
  opacity: 0;
  transition: opacity 300ms var(--ease-snap) .9s;
}
.bp-plate.is-drawn .bp-dot {
  opacity: 1;
}
.bp-plate figcaption {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--muted);
}
@media (prefers-reduced-motion: reduce) {
  .bp-path {
    stroke-dashoffset: 0;
    transition: none;
  }
  .bp-dot {
    opacity: 1;
    transition: none;
  }
}
.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-soft);
  border-left: 3px solid var(--brand);
  background: var(--stahl);
  border-radius: var(--radius-sm);
}
.trust-list .tick-mark {
  flex: none;
  width: 6px;
  height: 6px;
  background: var(--brand);
  transform: translateY(-2px) rotate(45deg);
}
.trust-list span:last-child {
  color: var(--muted);
}
.hours-card {
  max-width: 560px;
  margin-inline: auto;
  background: var(--paper);
  color: var(--paper-ink);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius);
  position: relative;
  box-shadow: var(--shadow-card);
}
.hours-card::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px dashed var(--paper-line);
  pointer-events: none;
}
.hours-card .eyebrow {
  color: var(--paper-muted);
  justify-content: center;
}
.hours-card .eyebrow::before {
  background: var(--brand);
}
.hours-card {
  text-align: center;
}
.hours-card h2 {
  color: var(--paper-ink);
}
.hours-list-paper {
  list-style: none;
  margin: var(--space-6) 0 0;
  padding: 0;
}
.hours-list-paper 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(--paper-line);
  font-size: var(--text-body);
}
.hours-list-paper li:last-child {
  border-bottom: none;
}
.hours-list-paper .day {
  font-weight: 600;
}
.hours-list-paper .dots {
  display: none;
}
.hours-list-paper .time {
  color: var(--paper-muted);
  font-variant-numeric: tabular-nums;
}
.hours-list-paper .time.closed {
  font-style: italic;
}
.hours-list-paper li.is-today {
  background: color-mix(in srgb, var(--brand) 7%, transparent);
  border-left: 3px solid var(--brand);
  padding-left: calc(var(--space-2) + var(--space-3));
}
.hours-list-paper li.is-today .day,
.hours-list-paper li.is-today .time {
  color: var(--paper-ink);
  font-weight: 700;
}
.hours-note {
  margin-top: var(--space-4);
  font-style: italic;
  color: var(--paper-muted);
  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.3;
}
.quote cite {
  display: block;
  margin-top: var(--space-6);
  font-style: normal;
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}
.faq {
  max-width: 720px;
  margin-inline: auto;
}
.faq-item {
  border-bottom: 1px solid var(--line-soft);
}
.faq-item:first-child {
  border-top: 1px solid var(--line-soft);
}
.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: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}
.faq-q:hover {
  color: var(--brand);
}
.faq-q .faq-icon {
  flex: none;
  display: inline-flex;
  color: var(--brand);
  transition: transform var(--duration-fast) var(--ease-snap);
}
.faq-q[aria-expanded=true] .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 0 var(--space-6);
  color: var(--muted);
  max-width: 60ch;
}
.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:
    radial-gradient(
      700px 300px at 50% 0%,
      var(--brand-soft),
      transparent 70%),
    var(--asphalt-deep);
}
.cta-band p {
  max-width: 48ch;
  margin-inline: auto;
  color: var(--muted);
}
.cta-band .hero-actions {
  margin-top: var(--space-8);
}
.seo-text {
  max-width: 70ch;
  margin-inline: auto;
  color: var(--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-soft);
}
.contact-list li:last-child {
  border-bottom: none;
}
.contact-list .k {
  flex: none;
  width: 7.5rem;
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--subtle);
  padding-top: 0.2rem;
}
.contact-list span:last-child {
  color: var(--muted);
}
.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.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--asphalt-deep);
  border: 1px solid var(--line);
  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(--subtle);
  margin-top: var(--space-2);
}
.track-wrap {
  position: relative;
}
.track-wrap.js-track-active {
  overflow: hidden;
}
.leist-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-track-active .leist-track {
  overflow: visible;
  scroll-snap-type: none;
}
.leist-panel {
  flex: 0 0 min(84vw, 380px);
  scroll-snap-align: start;
  background: var(--stahl);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
}
.leist-panel .panel-no {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: var(--space-3);
}
.leist-panel p {
  color: var(--muted);
  flex: 1;
}
.leist-panel ul {
  margin: var(--space-4) 0 0;
  padding: 0;
  list-style: none;
}
.leist-panel li {
  padding-block: var(--space-2);
  border-bottom: 1px dotted var(--line-soft);
  font-size: var(--text-sm);
  color: var(--muted);
}
.leist-panel li:last-child {
  border-bottom: none;
}
.track-hint {
  display: block;
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--subtle);
  text-align: center;
}
.js-track-active .track-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-soft);
}
.menu-list li:last-child {
  border-bottom: none;
}
.menu-list .dots {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-4px);
}
.menu-item-name {
  font-size: var(--text-lg);
}
.menu-item-name em {
  color: var(--muted);
  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(--brand);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.menu-note {
  margin-top: var(--space-6);
  font-style: italic;
  color: var(--subtle);
}
.page-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: clamp(4rem, 3rem + 6vw, 7rem);
  background: var(--asphalt-deep);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero .bp-grid {
  position: absolute;
  inset: 0;
  mask-image:
    radial-gradient(
      70% 60% at 50% 0%,
      black,
      transparent);
}
.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(--muted);
  font-size: var(--text-lg);
}
.site-footer {
  background: var(--asphalt-deep);
  border-top: 1px solid var(--line-soft);
  padding-block: var(--space-16) var(--space-8);
  font-size: var(--text-body);
}
.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 p {
  color: var(--muted);
  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.1em;
  text-transform: uppercase;
  color: var(--muted);
  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);
  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-soft);
  color: var(--subtle);
  font-size: var(--text-sm);
}
.footer-bottom a {
  color: var(--muted);
}
.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(--muted);
}
.legal a {
  text-decoration: underline;
}
.error-404 {
  text-align: center;
  padding-block: clamp(4rem, 10vw, 7rem);
}
.error-404 .odometer {
  font-size: clamp(4.5rem, 12vw, 8rem);
  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);
}
@media (prefers-reduced-motion: reduce) {
  .btn,
  .spec-card,
  .split-photo img,
  .split-photo::after,
  .faq-q .faq-icon,
  .site-nav a::after {
    transition: none;
  }
  .btn-brand:hover,
  .spec-card:hover {
    transform: none;
  }
}
@media print {
  .site-header,
  .site-footer,
  .nav-toggle,
  .hero-actions,
  .bp-grid {
    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;
}
.sk-shot--inset {
  max-width: 640px;
  margin-inline: auto;
}
