@font-face {
  font-family: "Barlow Condensed";
  src: url(../fonts/BarlowCondensed-SemiBold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url(../fonts/BarlowCondensed-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url(../fonts/Barlow-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url(../fonts/Barlow-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url(../fonts/Barlow-SemiBold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --c-asphalt-950: #17191C;
  --c-asphalt-900: #1D2023;
  --c-asphalt-800: #262A2E;
  --c-asphalt-700: #363B40;
  --c-asphalt-600: #565C63;
  --c-grey-200: #EDEBE6;
  --c-grey-150: #E3E0D9;
  --c-grey-100: #F8F7F4;
  --c-grey-50: #FFFFFF;
  --c-line-grey: #D6D2C9;
  --c-signal-500: #F2B705;
  --c-signal-600: #D9A400;
  --c-signal-ink: #7A5900;
  --c-signal-tint: rgba(242, 183, 5, 0.14);
  --c-warn-600: #C23B2C;
  --c-ok-600: #2D7A4F;
  --ink: var(--c-asphalt-950);
  --ink-soft: #45484C;
  --ink-mute: #54575C;
  --bg: var(--c-grey-200);
  --bg-alt: var(--c-grey-150);
  --surface: var(--c-grey-100);
  --line: var(--c-line-grey);
  --primary: var(--c-asphalt-950);
  --primary-dark: #0D0E10;
  --primary-soft: var(--c-grey-150);
  --primary-tint: rgba(23, 25, 28, 0.06);
  --primary-a11y: var(--c-asphalt-950);
  --burgundy: var(--c-warn-600);
  --burgundy-dark: #8C2A1F;
  --burgundy-soft: #F6DFDA;
  --accent: var(--c-signal-500);
  --accent-dark: var(--c-signal-600);
  --accent-soft: var(--c-signal-tint);
  --accent-fg: var(--c-asphalt-950);
  --accent-ink: var(--c-signal-ink);
  --coral: var(--c-signal-500);
  --coral-soft: var(--c-signal-tint);
  --coral-dark: var(--c-signal-600);
  --gold: #8C7654;
  --gold-hi: #A8916A;
  --shadow-sm: 0 1px 2px rgba(17,19,21,0.06), 0 1px 3px rgba(17,19,21,0.08);
  --shadow-md: 0 8px 24px rgba(17,19,21,0.12), 0 2px 6px rgba(17,19,21,0.06);
  --shadow-lg: 0 30px 60px rgba(17,19,21,0.22), 0 8px 20px rgba(17,19,21,0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 22px;
  --radius-pill: 999px;
  --container: 1240px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --font-display:
    "Barlow Condensed",
    "Arial Narrow",
    Helvetica,
    sans-serif;
  --font-body:
    "Barlow",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  --t-fast: 160ms cubic-bezier(0.16, 1, 0.3, 1);
  --t-base: 280ms cubic-bezier(0.16, 1, 0.3, 1);
  --t-gate: 640ms cubic-bezier(0.6, 0, 0, 1);
  --space-2: 0.5rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --duration-fast: 100ms;
  --duration-normal: 200ms;
  --duration-slow: 400ms;
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-gate: cubic-bezier(0.6, 0, 0, 1);
}
@media (prefers-reduced-motion: reduce) {
  :root {
    --duration-fast: 0ms;
    --duration-normal: 0ms;
    --duration-slow: 0ms;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,
picture,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--primary-a11y);
  text-decoration: none;
  transition: color var(--t-fast);
}
a:hover {
  color: var(--ink);
}
a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 2px;
}
button {
  font: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 0.5em;
}
h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  letter-spacing: -0.02em;
  font-weight: 700;
  overflow-wrap: break-word;
  hyphens: auto;
}
h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.8rem);
  letter-spacing: -0.015em;
  font-weight: 700;
}
h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.005em;
}
h4 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0;
}
p {
  margin: 0 0 1em;
  max-width: 65ch;
  color: var(--ink-soft);
}
.lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-a11y);
  margin-bottom: 1rem;
}
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
section {
  padding-block: clamp(3rem, 8vw, 6rem);
}
section.tight {
  padding-block: clamp(2rem, 5vw, 4rem);
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--ink);
  color: var(--bg);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top var(--t-fast);
}
.skip-link:focus {
  top: 1rem;
  color: var(--bg);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.brand:hover {
  color: var(--primary);
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 6px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  flex-shrink: 0;
  transition: background var(--t-fast), color var(--t-fast);
}
.brand:hover .brand-mark {
  background: var(--primary);
  color: #fff;
}
.brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.8rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition:
    background var(--t-fast),
    color var(--t-fast),
    transform var(--t-fast),
    border-color var(--t-fast),
    box-shadow var(--t-fast);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn-primary,
a.btn-primary {
  background: var(--accent);
  color: var(--accent-fg);
  min-height: 52px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(212, 165, 55, 0.32);
}
.btn-primary:hover {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 28px rgba(26, 26, 24, 0.25);
  transform: translateY(-2px);
}
.btn-accent,
a.btn-accent {
  background: var(--primary);
  color: #fff !important;
  min-height: 52px;
  font-weight: 700;
}
.btn-accent:hover {
  background: var(--ink);
  color: #fff !important;
  transform: translateY(-2px);
}
.btn-ghost,
a.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
  border-width: 1.5px;
  min-height: 52px;
  font-weight: 600;
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}
.btn-ghost-light,
a.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  border-width: 1.5px;
  min-height: 52px;
  font-weight: 600;
}
.btn-ghost-light:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  transform: translateY(-2px);
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-head.left {
  text-align: left;
  margin-inline: 0;
}
.section-head.wide {
  max-width: 760px;
}
.section-head p {
  margin-inline: auto;
}
.section-head.left p {
  margin-inline: 0;
}
.menu-section {
  margin-bottom: 3.5rem;
}
.menu-section:last-child {
  margin-bottom: 0;
}
.menu-section-head {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.75rem;
}
.menu-section-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  margin: 0;
  letter-spacing: 0.01em;
}
.menu-section-head .menu-note {
  font-size: 0.85rem;
  color: var(--ink-mute);
  font-style: italic;
  margin-left: auto;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.stats {
  padding-block: clamp(2rem, 5vw, 3.5rem);
}
.stats .container {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stats .container::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      at 80% 30%,
      rgba(160, 122, 59, 0.20) 0%,
      transparent 55%);
  pointer-events: none;
}
.stat {
  position: relative;
  padding-inline: 0.5rem;
  padding-top: 1rem;
}
.stat::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1rem;
  border-radius: 2px;
}
.stat + .stat {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
@media (max-width: 720px) {
  .stat + .stat {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 1.5rem;
  }
}
.stat .num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.6rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.stat .label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
  display: block;
  max-width: 22ch;
  margin-inline: auto;
}
.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 880px) {
  .location-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.location-card dl {
  margin: 0;
}
.location-card dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  margin-top: 1.25rem;
}
.location-card dt:first-child {
  margin-top: 0;
}
.location-card dd {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  color: var(--ink);
}
.opening-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line);
}
.opening-row:last-child {
  border-bottom: none;
}
.opening-row.is-today {
  font-weight: 600;
  color: var(--primary-a11y);
}
.opening-row.closed {
  color: var(--ink-mute);
  font-style: italic;
}
.map-embed {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: var(--bg-alt);
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 320px;
}
.kfz-contact-map {
  max-height: 480px;
}
.kfz-map-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-embed .map-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  box-shadow: var(--shadow-md);
  line-height: 1.5;
}
.cta-band {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      at 90% 50%,
      rgba(212, 165, 55, 0.18),
      transparent 55%);
  pointer-events: none;
}
.cta-band > * {
  position: relative;
}
.cta-band h2 {
  margin-bottom: 0.4rem;
  color: #fff;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}
.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}
.cta-band-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.cta-band .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.cta-band .btn-ghost:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform var(--t-base);
  flex-shrink: 0;
}
.faq[open] summary::after {
  content: "−";
}
.faq-body {
  padding: 0 0 1.4rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.faq-body p:last-child {
  margin-bottom: 0;
}
.form {
  display: grid;
  gap: 1.1rem;
  max-width: 620px;
  margin-top: 2rem;
}
.kfz-form-submit-row {
  margin: 0.5rem 0;
}
.form-status {
  font-size: 0.9rem;
  color: var(--ink);
  margin-top: 0.5rem;
}
.kfz-form-note {
  font-size: 0.86rem;
  color: var(--ink-mute);
  margin-top: 1rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.field label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
}
.field .req {
  color: var(--coral);
}
.field input,
.field textarea,
.field select {
  font: inherit;
  padding: 0.8rem 1rem;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field textarea {
  min-height: 140px;
  resize: vertical;
}
.field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.1rem;
}
@media (max-width: 600px) {
  .field-row {
    grid-template-columns: minmax(0, 1fr);
  }
}
.field.consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.6rem;
}
.field.consent input {
  margin-top: 0.25rem;
}
.field.consent label {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.field.consent label a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 880px) {
  .article {
    grid-template-columns: minmax(0, 1fr);
  }
}
.article-body {
  max-width: 70ch;
}
.article-body h2 {
  margin-top: 2.5rem;
}
.article-body h3 {
  margin-top: 2rem;
}
.article-body ul,
.article-body ol {
  padding-left: 1.5rem;
  color: var(--ink-soft);
}
.article-body li {
  margin-bottom: 0.5rem;
}
.article-aside {
  position: sticky;
  top: 100px;
  align-self: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}
.article-aside h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.article-aside h3:not(:first-child) {
  margin-top: 1.5rem;
}
.article-aside h3::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--gold);
  margin-right: 0.6rem;
  vertical-align: 4px;
  border-radius: 2px;
}
.article-aside p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.article-aside .btn {
  display: flex;
  width: 100%;
  margin-top: 0.5rem;
}
.article-aside .btn + p {
  margin-top: 1rem;
}
.kfz-price-note {
  font-size: 0.86rem;
  color: var(--ink-mute);
  margin-top: 3rem;
}
.article-aside > img {
  border-radius: var(--radius-md);
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-bottom: 1.25rem;
}
.pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.35;
  color: var(--ink);
  border-left: 3px solid var(--primary);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
}
.pullquote + p {
  margin: 0;
  color: var(--ink-mute);
}
.kfz-scene-gallery {
  margin: 2rem 0 2.5rem;
}
.kfz-scene-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.kfz-scene-gallery-grid img {
  border-radius: var(--radius-md);
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.kfz-scene-gallery figcaption {
  font-size: 0.82rem;
  color: var(--ink-mute);
  margin-top: 0.6rem;
}
.kfz-wide-photo {
  border-radius: var(--radius-lg);
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.breadcrumb {
  font-size: 0.88rem;
  color: var(--ink-mute);
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.breadcrumb li::after {
  content: "/";
  margin-left: 0.4rem;
  color: var(--ink-mute);
}
.breadcrumb li:last-child::after {
  content: "";
}
.breadcrumb a {
  color: var(--ink-soft);
}
.breadcrumb [aria-current=page] {
  color: var(--ink);
}
.site-footer {
  background: var(--ink);
  color: rgba(247, 242, 234, 0.78);
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-brand .brand {
  color: var(--bg);
  margin-bottom: 1rem;
}
.footer-brand p {
  color: rgba(247, 242, 234, 0.6);
  font-size: 0.92rem;
  max-width: 32ch;
}
.footer-col h3,
.footer-col h4 {
  font-family: var(--font-body);
  color: var(--bg);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.1rem;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.footer-col a {
  color: rgba(247, 242, 234, 0.72);
  font-size: 0.95rem;
}
.footer-col a:hover {
  color: var(--bg);
}
.footer-bottom {
  border-top: 1px solid rgba(247, 242, 234, 0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(247, 242, 234, 0.55);
}
.footer-bottom a {
  color: rgba(247, 242, 234, 0.65);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-bottom a:hover {
  color: var(--bg);
}
.footer-bottom.kfz-no-border {
  border-top: 0;
}
.demo-disclaimer {
  background: rgba(160, 122, 59, 0.14);
  border: 1px solid rgba(160, 122, 59, 0.32);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  color: rgba(247, 242, 234, 0.85);
  margin-bottom: 1.5rem;
}
.demo-disclaimer a {
  color: var(--gold-hi);
  text-decoration: underline;
}
.demo-disclaimer a:hover {
  color: var(--bg);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.text-center {
  text-align: center;
}
.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}
.kfz-header {
  position: relative;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.kfz-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.4rem;
  gap: 2rem;
}
.kfz-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--ink);
}
.kfz-brand:hover {
  color: var(--accent-ink);
}
.kfz-brand .brand-mark {
  display: inline-flex;
  width: 38px;
  height: 38px;
  color: var(--ink);
}
.kfz-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.kfz-brand-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.kfz-brand-tag {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 0.18rem;
}
.kfz-nav {
  display: flex;
}
.kfz-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2.4rem;
  align-items: center;
}
.kfz-nav a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding-block: 0.4rem;
  letter-spacing: 0.005em;
}
.kfz-nav a:hover {
  color: var(--ink);
}
.kfz-nav a[aria-current=page] {
  color: var(--ink);
}
.kfz-nav a[aria-current=page]::after {
  content: "";
  position: absolute;
  inset: auto 0 -4px;
  height: 2px;
  background: var(--ink);
}
.kfz-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
}
@media (max-width: 880px) {
  .kfz-brand-tag {
    display: none;
  }
  .kfz-nav-toggle {
    display: inline-flex;
  }
  .kfz-nav {
    position: absolute;
    inset: 100% 0 auto 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 240ms cubic-bezier(0.22, 0.61, 0.36, 1);
    z-index: 80;
  }
  .kfz-nav[data-open=true] {
    transform: scaleY(1);
  }
  .kfz-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem var(--gutter) 1rem;
  }
  .kfz-nav ul li {
    border-top: 1px solid var(--line);
  }
  .kfz-nav ul li:first-child {
    border-top: none;
  }
  .kfz-nav a {
    display: block;
    padding: 1rem 0;
    font-size: 1.05rem;
  }
}
.kfz-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(620px, 92vh, 920px);
  min-height: clamp(620px, 92dvh, 920px);
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.kfz-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.kfz-hero-bg img {
  position: absolute;
  inset: -6% -2%;
  width: 104%;
  height: 112%;
  object-fit: cover;
  object-position: center 35%;
  filter: grayscale(0.4) brightness(0.56) contrast(1.08);
  will-change: transform;
}
.kfz-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(23, 25, 28, 0.35) 0%,
      rgba(23, 25, 28, 0.55) 45%,
      rgba(23, 25, 28, 0.97) 100%),
    linear-gradient(
      90deg,
      rgba(23, 25, 28, 0.55) 0%,
      rgba(23, 25, 28, 0.1) 45%);
}
@media (prefers-reduced-motion: reduce) {
  .kfz-hero-bg img {
    transform: none !important;
  }
}
.kfz-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(6.5rem, 15vw, 9.5rem) clamp(3rem, 6vw, 4.5rem);
}
.kfz-hero-content {
  max-width: 46rem;
}
.kfz-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1rem;
}
.kfz-hero-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}
.kfz-hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.75rem, 4vw + 1.5rem, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0 0 1.4rem;
  color: #fff;
}
.kfz-hero-title em {
  font-style: normal;
  color: var(--accent);
}
.kfz-hero-title .line {
  display: block;
  overflow: hidden;
}
.kfz-hero-title .line__inner {
  display: block;
}
html.js .kfz-hero-title .line__inner {
  transform: translateY(110%);
  opacity: 0;
  transition: transform 700ms var(--ease-spring), opacity 500ms var(--ease-out);
}
html.js .kfz-hero-title.is-revealed .line__inner {
  transform: translateY(0);
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  html.js .kfz-hero-title .line__inner {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
}
.kfz-hero-pitch {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 40rem;
  line-height: 1.6;
  margin-bottom: 2.2rem;
}
.kfz-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.6rem;
}
.kfz-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.5rem;
  background: var(--accent);
  color: var(--accent-fg);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.005em;
  border-radius: 4px;
  transition:
    background var(--t-base),
    transform var(--t-base),
    box-shadow var(--t-base);
  box-shadow: 0 10px 24px rgba(242, 183, 5, 0.22);
}
.kfz-cta-primary:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-2px);
}
.kfz-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.4rem;
  border: 1.5px solid rgba(255, 255, 255, 0.38);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  transition:
    background var(--t-base),
    color var(--t-base),
    border-color var(--t-base);
}
.kfz-cta-phone:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.kfz-hours-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  margin: 0 0 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}
.kfz-hours-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}
.kfz-hours-pill[data-status=open] {
  background: rgba(45, 122, 79, 0.16);
  border-color: rgba(80, 190, 135, 0.4);
  color: #8FDDB1;
}
.kfz-hours-pill[data-status=open] .dot {
  background: #4FBE87;
  box-shadow: 0 0 0 3px rgba(79, 190, 135, 0.22);
}
.kfz-hours-pill[data-status=before] .dot {
  background: var(--accent);
}
.kfz-hours-pill[data-status=appt] .dot {
  background: var(--accent);
}
.kfz-hours-pill[data-status=closed] .dot {
  background: rgba(255, 255, 255, 0.4);
}
.kfz-hero-usp {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  margin: 0 0 0.4rem;
  padding: 0;
  list-style: none;
}
.kfz-hero-usp li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.3;
}
.kfz-hero-usp-mark {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.kfz-gauges {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  padding-top: clamp(1.75rem, 4vw, 2.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.kfz-gauge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  width: 116px;
  flex-shrink: 0;
}
.kfz-gauge-dial {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1.2;
}
.kfz-gauge-dial svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.kfz-gauge-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 5;
  stroke-linecap: round;
}
.kfz-gauge-tick {
  stroke: rgba(255, 255, 255, 0.32);
  stroke-width: 1.4;
}
.kfz-gauge-needle {
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  transform-box: fill-box;
  transform-origin: 50% 100%;
  transform: rotate(-84deg);
}
.kfz-gauge-cap {
  fill: var(--accent);
}
html.js .kfz-gauge-needle {
  transition: transform 200ms linear;
}
html.js .kfz-gauge.is-armed .kfz-gauge-needle {
  animation: kfz-needle-settle 1.2s var(--ease-spring) forwards;
  transition: none;
}
@keyframes kfz-needle-settle {
  0% {
    transform: rotate(-84deg);
  }
  58% {
    transform: rotate(var(--angle-over, 0deg));
  }
  100% {
    transform: rotate(var(--angle-target, 0deg));
  }
}
.kfz-gauge-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.55rem;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.kfz-gauge-label {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
  line-height: 1.35;
}
@media (prefers-reduced-motion: reduce) {
  .kfz-gauge-needle {
    transition: none !important;
    transform: rotate(var(--angle-target, 0deg)) !important;
  }
  html.js .kfz-gauge.is-armed .kfz-gauge-needle {
    animation: none !important;
    transform: rotate(var(--angle-target, 0deg)) !important;
  }
}
@media (max-width: 620px) {
  .kfz-gauges {
    gap: 1.5rem;
    justify-content: space-between;
  }
  .kfz-gauge {
    width: 30%;
    min-width: 92px;
  }
}
.kfz-tor {
  position: relative;
  height: clamp(48px, 8vw, 92px);
  overflow: hidden;
  background: var(--c-asphalt-800);
}
.kfz-tor-panel {
  position: absolute;
  inset: 0;
  background-color: var(--c-asphalt-800);
  background-image:
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.09) 0 5px,
      rgba(255, 255, 255, 0.015) 5px 12px);
  transform: translateY(0%);
}
.kfz-tor-stripe {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background:
    repeating-linear-gradient(
      115deg,
      var(--accent) 0 16px,
      var(--ink) 16px 32px);
}
html.js .kfz-tor-panel {
  transition: transform 60ms linear;
}
@supports (animation-timeline: scroll()) and (animation-range: cover) {
  html.js .kfz-tor-panel {
    animation: kfz-tor-roll linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 55%;
    transition: none;
  }
}
@keyframes kfz-tor-roll {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(-100%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .kfz-tor-panel {
    transform: translateY(-100%) !important;
    animation: none !important;
  }
}
.kfz-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 900;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .kfz-scroll-progress {
    display: none;
  }
}
.kfz-header {
  transition: box-shadow var(--t-base), background var(--t-base);
}
.kfz-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}
.ba-container {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  max-width: 900px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  --ba-pos: 50%;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-img--after {
  z-index: 1;
}
.ba-img--before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0);
}
.ba-container.is-animating .ba-img--before {
  transition: clip-path 620ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.ba-label {
  position: absolute;
  top: 1.5rem;
  z-index: 3;
  padding: 0.4rem 0.85rem;
  background: rgba(31, 28, 24, 0.82);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--font-display);
  font-stretch: 120%;
  font-variation-settings: "wdth" 120;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}
.ba-label--before {
  left: 1.5rem;
}
.ba-label--after {
  right: 1.5rem;
}
@media (max-width: 480px) {
  .ba-label {
    top: 1rem;
    font-size: 0.66rem;
    padding: 0.35rem 0.65rem;
  }
  .ba-label--before {
    left: 1rem;
  }
  .ba-label--after {
    right: 1rem;
  }
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos);
  transform: translateX(-50%);
  z-index: 4;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  touch-action: none;
  border: 0;
  background: transparent;
  padding: 0;
}
.ba-container.is-animating .ba-handle {
  transition: left 620ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.ba-handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
}
.ba-handle-grip {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: #1F2024;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
  transition: transform 160ms ease;
}
.ba-handle:hover .ba-handle-grip {
  transform: scale(1.06);
}
.ba-handle:active .ba-handle-grip {
  transform: scale(0.98);
}
.ba-handle:focus-visible {
  outline: none;
}
.ba-handle:focus-visible .ba-handle-grip {
  outline: 3px solid var(--accent-dark);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .ba-container.is-animating .ba-img--before,
  .ba-container.is-animating .ba-handle {
    transition: none !important;
  }
}
.kfz-section-head {
  max-width: 720px;
  margin-bottom: 3rem;
}
.kfz-section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  letter-spacing: -0.015em;
  margin: 0 0 0.6em;
}
.kfz-step-label {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-a11y);
  font-weight: 600;
  margin-bottom: 0.9rem;
}
.kfz-step-label--light {
  color: var(--accent);
}
.kfz-process {
  background: var(--bg);
}
.kfz-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
@media (max-width: 980px) {
  .kfz-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .kfz-steps {
    grid-template-columns: 1fr;
  }
}
.kfz-steps li {
  padding: 1.75rem 1.75rem 1.75rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  position: relative;
}
.kfz-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.25rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid var(--accent-dark);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  z-index: 2;
}
@media (max-width: 980px) {
  .kfz-steps li:nth-child(2n)::after {
    display: none;
  }
}
@media (max-width: 500px) {
  .kfz-steps li::after {
    display: none !important;
  }
}
.kfz-steps .step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--primary-a11y);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.kfz-steps h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--ink);
}
.kfz-steps p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}
.kfz-service-cards {
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
}
.kfz-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.kfz-service-card {
  padding: 1.6rem 1.4rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition:
    transform var(--t-base),
    border-color var(--t-fast),
    box-shadow var(--t-base);
}
.kfz-service-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-dark);
  box-shadow: var(--shadow-md);
}
.kfz-service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--ink);
  margin-bottom: 1.15rem;
}
.kfz-service-icon svg {
  width: 26px;
  height: 26px;
}
.kfz-service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: -0.005em;
  margin: 0 0 0.25rem;
  color: var(--ink);
}
.kfz-service-card .meta {
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent-ink);
  font-weight: 600;
  margin: 0 0 0.6rem;
}
.kfz-service-card p:not(.meta) {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}
.kfz-board {
  background: var(--ink);
  color: #f4eee4;
  padding-block: clamp(4rem, 8vw, 6rem);
}
.kfz-board-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.kfz-board-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin: 0;
  color: #fff;
  letter-spacing: -0.015em;
}
.kfz-board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.kfz-board-card {
  position: relative;
  display: block;
  background: var(--c-asphalt-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
  color: inherit;
  transition: transform 240ms ease, border-color 240ms ease;
}
.kfz-board-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}
.kfz-board-card picture,
.kfz-board-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.kfz-board-card-meta {
  padding: 1rem 1.25rem 1.25rem;
}
.kfz-board-card-meta .tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.kfz-board-card-meta h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 0.25rem;
  color: #fff;
}
.kfz-board-card-meta p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}
.kfz-suppliers {
  background: var(--bg);
}
.kfz-suppliers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 880px) {
  .kfz-suppliers-grid {
    grid-template-columns: 1fr;
  }
}
.kfz-suppliers h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}
.kfz-suppliers-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.kfz-suppliers-list li {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
}
.kfz-suppliers-list strong {
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.kfz-suppliers-list span {
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-top: 0.15rem;
}
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
html.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
@media print {
  .kfz-header,
  .kfz-hero,
  .kfz-tor,
  .kfz-board,
  .kfz-scroll-progress,
  .site-footer,
  .cta-band,
  .kfz-nav-toggle {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
}
.kfz-icon-stroke path,
.kfz-icon-stroke circle,
.kfz-icon-stroke line,
.kfz-icon-stroke polyline {
  transition: stroke-dashoffset 900ms var(--ease-out);
}
@media (prefers-reduced-motion: reduce) {
  .kfz-icon-stroke path,
  .kfz-icon-stroke circle,
  .kfz-icon-stroke line,
  .kfz-icon-stroke polyline {
    stroke-dashoffset: 0 !important;
    transition: none !important;
  }
}
@media (min-width: 960px) {
  html.js .kfz-service-card,
  html.js .kfz-board-card {
    transform-style: preserve-3d;
    will-change: transform;
    transition:
      transform 220ms var(--ease-out),
      border-color var(--t-fast),
      box-shadow var(--t-base);
  }
}
.kfz-service-card,
.kfz-board-card {
  position: relative;
  isolation: isolate;
}
.kfz-service-card::after,
.kfz-board-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      115deg,
      transparent 40%,
      rgba(242, 183, 5, 0.18) 50%,
      transparent 60%);
  background-size: 250% 250%;
  background-position: 0 0;
  opacity: 0;
  transition: opacity var(--t-fast), background-position 0.6s var(--ease-spring);
  pointer-events: none;
}
.kfz-service-card:hover::after,
.kfz-board-card:hover::after {
  opacity: 1;
  background-position: 20% 20%;
}
.kfz-parallax-band {
  position: relative;
  overflow: hidden;
}
.kfz-parallax-band::before {
  content: "";
  position: absolute;
  inset: -12% -6%;
  background:
    radial-gradient(
      at 14% 18%,
      rgba(242, 183, 5, 0.14) 0%,
      transparent 55%),
    radial-gradient(
      at 86% 82%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%);
  transform: translateY(var(--parallax-y, 0px));
  pointer-events: none;
  will-change: transform;
}
.kfz-parallax-band > * {
  position: relative;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .kfz-parallax-band::before {
    transform: none !important;
  }
}
.section-alt {
  background: var(--bg-alt);
}
[data-counter] {
  font-variant-numeric: tabular-nums;
}
.kfz-board-intro {
  max-width: 640px;
  margin-bottom: 1.75rem;
  color: rgba(244, 238, 228, 0.72);
}
.kfz-board-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.25rem;
}
.kfz-slot-chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.6rem 1.1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}
.kfz-slot-chip:hover {
  background: rgba(242, 183, 5, 0.14);
  border-color: var(--accent);
  color: #fff;
}
.kfz-slot-chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-fg);
  font-weight: 600;
}
.kfz-board-note {
  margin-top: 1.75rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  font-size: 0.86rem;
  color: rgba(244, 238, 228, 0.68);
}
.kfz-board-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.kfz-footer-plate {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-block: 1.75rem;
  margin-bottom: 2rem;
  border-top: 1px solid rgba(242, 183, 5, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.kfz-footer-plate-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.kfz-footer-plate-item .num {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1;
}
.kfz-footer-plate-item .label {
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.55);
}
.kfz-review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.kfz-review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}
.kfz-review .stars {
  color: var(--accent-ink);
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.85rem;
}
.kfz-review p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin: 0 0 1.1rem;
}
.kfz-review cite {
  font-style: normal;
  font-size: 0.86rem;
  color: var(--ink-mute);
  display: block;
}
.kfz-review cite strong {
  color: var(--ink);
  font-weight: 600;
}
.kfz-error-hero {
  text-align: center;
  padding-block: clamp(4rem, 12vw, 8rem);
}
.kfz-error-hero .container {
  max-width: 640px;
}
.kfz-error-hero h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  margin-bottom: 1rem;
}
.kfz-error-hero p {
  margin-inline: auto;
  font-size: 1.1rem;
}
.kfz-error-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
}
