/* Auto Kollmannsberger — öffentliches Layout */
:root {
  --ink: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --surface: #ffffff;
  --soft: #f8fafc;
  --accent: #0b5cab;
  --accent-dark: #084a8f;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --max: 1120px;
  --header-logo-h: clamp(38px, 4vw, 46px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--soft);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

img.brand__logo {
  max-width: none;
}

img.brand-tile__logo,
img.hero-brands__logo {
  max-width: none;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-dark);
}

.shell {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--surface);
  border-radius: 8px;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.brand__logo {
  display: block;
  height: var(--header-logo-h);
  width: auto;
  max-width: min(300px, 56vw);
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  flex: 0 1 auto;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle-label span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 1.025rem;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.nav-cta {
  padding: 0.48rem 0.95rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff !important;
}

.nav-cta:hover {
  background: var(--accent);
  color: #fff !important;
}

@media (max-width: 900px) {
  .header-inner {
    position: relative;
  }

  .nav-toggle-label {
    display: flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .nav-toggle:checked ~ .site-nav {
    max-height: 100vh;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.5rem;
  }

}

.banner {
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
  text-align: center;
}

.banner--holiday {
  background: #fff7ed;
  color: #9a3412;
  border-bottom: 1px solid #fed7aa;
}

.banner--info {
  background: #eff6ff;
  color: #1e40af;
  border-bottom: 1px solid #bfdbfe;
}

.hero {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 45%, #0b5cab 100%);
  color: #e2e8f0;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(4rem, 10vw, 6rem);
  overflow: hidden;
}

.hero--photo {
  background: #0f172a;
  min-height: min(58vh, 640px);
  padding: clamp(2.75rem, 7vw, 4.5rem) 0 clamp(3rem, 8vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero--photo .shell {
  margin-top: auto;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 42%;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(15, 23, 42, 0.88) 0%, transparent 42%),
    linear-gradient(
      105deg,
      rgba(15, 23, 42, 0.96) 0%,
      rgba(15, 23, 42, 0.72) 36%,
      rgba(15, 23, 42, 0.28) 68%,
      rgba(11, 92, 171, 0.12) 100%
    );
}

@media (max-width: 879px) {
  .hero--photo {
    min-height: min(52vh, 520px);
  }

  .hero__img {
    object-position: 50% 38%;
  }

  .hero__scrim {
    background:
      linear-gradient(to top, rgba(15, 23, 42, 0.94) 0%, rgba(15, 23, 42, 0.45) 45%, transparent 72%),
      linear-gradient(165deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.35) 55%, transparent 85%);
  }
}

.hero:not(.hero--photo)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 70% 20%, rgba(255, 255, 255, 0.12), transparent 55%);
  pointer-events: none;
}

.hero .shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

@media (min-width: 880px) {
  .hero .shell {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
  }
}

.hero h1 {
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  color: #fff;
}

.hero--photo .hero h1 {
  text-shadow: 0 2px 24px rgba(15, 23, 42, 0.45);
}

.hero-lead {
  font-size: 1.1rem;
  max-width: 36ch;
  color: #cbd5e1;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-brands {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
}

.hero-brands__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  flex-wrap: wrap;
}

.hero-brands__item {
  display: flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}

.hero-brands__item:hover {
  opacity: 1;
}

.hero-brands__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(100px, 14vw, 140px);
  height: clamp(56px, 8vw, 78px);
  flex-shrink: 0;
}

.hero-brands__logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.btn--light {
  background: #fff;
  color: var(--ink);
}

.btn--light:hover {
  background: #f1f5f9;
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-dark);
}

.btn--lg {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}

.hero-card {
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(8px);
}

.hero--photo .hero-card {
  background: rgba(15, 23, 42, 0.58);
  border-color: rgba(255, 255, 255, 0.16);
}

.hero-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #f8fafc;
}

.hero-tel {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-tel a {
  color: #fff;
  text-decoration: none;
}

.hero-card p {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: #94a3b8;
}

.section {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.section--surface {
  background: var(--surface);
}

.section-head {
  max-width: 52ch;
  margin-bottom: 2rem;
}

.section-head h1,
.section-head h2 {
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow-sm);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.brands {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.brand-tile {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  min-height: 160px;
  box-shadow: var(--shadow-sm);
}

.brand-tile__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 96px;
  flex-shrink: 0;
}

.brand-tile__logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand-tile p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.brand-tile a.btn {
  margin-top: 0;
}

.brand-tile .ext-link {
  margin-top: auto;
  width: 100%;
  align-items: center;
}

.ext-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.ext-link__hint {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.35;
}

.brand-tile .ext-link__hint {
  text-align: center;
  max-width: 16rem;
}

.logo-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 880px) {
  .split {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.team-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.team-card__body {
  padding: 1.2rem 1.35rem 1.35rem;
}

.team-card__body h3 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
}

.team-card__role {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.hours-table th,
.hours-table td {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.hours-table th {
  width: 32%;
  color: var(--muted);
  font-weight: 500;
}

.hours-note {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.home-hours-split {
  align-items: start;
}

#home-zeiten {
  scroll-margin-top: 5rem;
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.job-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow-sm);
}

.job-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.job-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.job-card .body {
  color: var(--muted);
  white-space: pre-wrap;
}

.contact-block {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-block--form {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(11, 92, 171, 0.14);
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.contact-block--form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #1d8fe8 55%, #38bdf8);
}

.contact-form__head {
  padding: 1.75rem 1.75rem 0;
}

.contact-form__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: linear-gradient(135deg, rgba(11, 92, 171, 0.1), rgba(56, 189, 248, 0.12));
  border: 1px solid rgba(11, 92, 171, 0.14);
}

.contact-form__head h2 {
  margin: 0.85rem 0 0.45rem;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  letter-spacing: -0.02em;
}

.contact-form__head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 38ch;
}

.contact-form {
  display: grid;
  gap: 0.35rem;
  padding: 1.35rem 1.75rem 1.75rem;
}

.contact-form__group-label {
  margin: 1.1rem 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form__group-label:first-of-type {
  margin-top: 0;
}

.contact-form__grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 560px) {
  .contact-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form__control--span2 {
    grid-column: span 2;
  }
}

.contact-form__control {
  position: relative;
}

.contact-form__control--icon::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 50%;
  width: 1.1rem;
  height: 1.1rem;
  transform: translateY(-50%);
  opacity: 0.45;
  pointer-events: none;
  z-index: 1;
  background: currentColor;
  -webkit-mask: var(--cf-icon) center / contain no-repeat;
  mask: var(--cf-icon) center / contain no-repeat;
  color: var(--accent);
  transition: opacity 0.2s ease, color 0.2s ease;
}

.contact-form__control--user { --cf-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 20c0-4 3.6-7 8-7s8 3 8 7'/%3E%3C/svg%3E"); }
.contact-form__control--phone { --cf-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1.9.3 1.8.6 2.6a2 2 0 0 1-.5 2.1L8 9.6a16 16 0 0 0 6 6l1.2-1.2a2 2 0 0 1 2.1-.5c.8.3 1.7.5 2.6.6A2 2 0 0 1 22 16.9z'/%3E%3C/svg%3E"); }
.contact-form__control--mail { --cf-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E"); }
.contact-form__control--car { --cf-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M5 17h14M5 17a2 2 0 1 1-4 0 2 2 0 0 1 4 0zm14 0a2 2 0 1 1 4 0 2 2 0 0 1-4 0zM3 13l2-6h14l2 6'/%3E%3C/svg%3E"); }
.contact-form__control--calendar { --cf-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E"); }

.contact-form__control--icon input {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.35rem 0.9rem 0.45rem 2.65rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.contact-form__control--icon label {
  position: absolute;
  left: 2.65rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--muted);
  pointer-events: none;
  transition: all 0.2s ease;
  transform-origin: left center;
  max-width: calc(100% - 3rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-form__control--icon input:focus,
.contact-form__control--icon input:not(:placeholder-shown) {
  padding-top: 1.45rem;
  padding-bottom: 0.35rem;
  border-color: rgba(11, 92, 171, 0.45);
  box-shadow:
    0 0 0 3px rgba(11, 92, 171, 0.12),
    0 4px 14px rgba(11, 92, 171, 0.08);
  background: #fff;
}

.contact-form__control--icon input:focus + label,
.contact-form__control--icon input:not(:placeholder-shown) + label {
  top: 0.55rem;
  transform: translateY(0) scale(0.78);
  color: var(--accent);
  font-weight: 600;
}

.contact-form__control--icon:focus-within::before {
  opacity: 1;
}

.contact-form__control--icon input:focus {
  outline: none;
}

.contact-form__req {
  color: #dc2626;
}

.contact-form__opt {
  display: inline-block;
  margin-left: 0.2rem;
  padding: 0.05rem 0.4rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  color: var(--muted);
  background: rgba(148, 163, 184, 0.16);
  vertical-align: middle;
}

.contact-form__control--select > label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.contact-form__select-wrap {
  position: relative;
}

.contact-form__select-wrap::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.contact-form__select-wrap select {
  width: 100%;
  appearance: none;
  font: inherit;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 2.5rem 0.85rem 1rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__select-wrap select:focus {
  outline: none;
  border-color: rgba(11, 92, 171, 0.45);
  box-shadow:
    0 0 0 3px rgba(11, 92, 171, 0.12),
    0 4px 14px rgba(11, 92, 171, 0.08);
}

.contact-form__control--message textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  min-height: 7.5rem;
  resize: vertical;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04) inset;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__control--message textarea::placeholder {
  color: #94a3b8;
}

.contact-form__control--message textarea:focus {
  outline: none;
  border-color: rgba(11, 92, 171, 0.45);
  box-shadow:
    0 0 0 3px rgba(11, 92, 171, 0.12),
    inset 0 1px 2px rgba(15, 23, 42, 0.04);
  background: #fff;
}

.contact-form__footer {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px dashed rgba(148, 163, 184, 0.45);
}

.contact-form__hint {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #334155;
  background: linear-gradient(135deg, rgba(11, 92, 171, 0.06), rgba(56, 189, 248, 0.08));
  border: 1px solid rgba(11, 92, 171, 0.12);
  border-radius: 12px;
}

.contact-form__hint-icon {
  flex: 0 0 1.15rem;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.1rem;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 16v-4M12 8h.01'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 16v-4M12 8h.01'/%3E%3C/svg%3E") center / contain no-repeat;
}

.contact-form__submit {
  width: 100%;
  padding: 0.85rem 1.4rem;
  font-size: 1rem;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(11, 92, 171, 0.28);
}

.contact-form__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(11, 92, 171, 0.34);
}

.contact-form__submit:active {
  transform: translateY(0);
}

@media (min-width: 900px) {
  .split--contact {
    align-items: stretch;
  }

  .contact-block--form {
    min-width: 0;
  }
}

.lageplan {
  margin-top: 1rem;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.lageplan img {
  width: 100%;
  height: auto;
  display: block;
}

.lageplan__caption {
  margin: 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  line-height: 1.5;
}

.lageplan__attr {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.82rem;
}

.lageplan--missing {
  padding: 1rem;
  border: 1px dashed var(--line);
  border-radius: calc(var(--radius) - 2px);
  background: var(--surface);
}

.lageplan--skizze {
  background: var(--surface);
}

.lageplan--skizze img {
  background: var(--soft);
  padding: 1rem 1.25rem 0.5rem;
}

.lageplan__maps-link {
  display: inline-block;
  margin-top: 0.45rem;
}

.cta-strip {
  background: linear-gradient(90deg, #0f172a, #1e3a5f);
  color: #e2e8f0;
  padding: 2.5rem 0;
}

.cta-strip .shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.cta-strip h2 {
  margin: 0;
  font-size: 1.35rem;
  color: #fff;
}

.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 2.5rem 0 0;
  font-size: 0.95rem;
}

.site-footer a {
  color: #e2e8f0;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.footer-muted {
  color: #94a3b8;
  margin: 0.5rem 0 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-base {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
  padding: 1rem 0 1.5rem;
  font-size: 0.85rem;
  color: #94a3b8;
}

.footer-base p {
  margin: 0;
}

.prose {
  max-width: 65ch;
}

.prose h1 {
  font-family: "Instrument Sans", sans-serif;
  margin-top: 0;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.badge-row img {
  width: 100px;
  height: auto;
}

/* Teaser-Startseite */
.teaser-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .teaser-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .teaser-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.teaser-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 100%;
}

.teaser-card h2 {
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.1rem;
  margin: 0;
}

.teaser-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}

.teaser-card .btn {
  align-self: flex-start;
  margin-top: 0.25rem;
}

/* Service-Unterseite */
/* ── Page Hero (Unterseiten) ─────────────────────────────── */

.page-hero {
  --hero-accent: #38bdf8;
  --hero-accent-soft: rgba(56, 189, 248, 0.2);
  --hero-glow-a: rgba(56, 189, 248, 0.18);
  --hero-glow-b: rgba(255, 255, 255, 0.06);
  --page-hero-h: 30rem;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  height: var(--page-hero-h);
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0b5cab 100%);
  color: #e2e8f0;
}

@media (min-width: 900px) {
  .page-hero {
    --page-hero-h: 22rem;
  }
}

.page-hero--marken {
  --hero-accent: #60a5fa;
  --hero-accent-soft: rgba(96, 165, 250, 0.22);
  --hero-glow-a: rgba(96, 165, 250, 0.2);
  --hero-glow-b: rgba(255, 255, 255, 0.07);
}

.page-hero--team {
  --hero-accent: #7dd3fc;
  --hero-accent-soft: rgba(125, 211, 252, 0.22);
  --hero-glow-a: rgba(125, 211, 252, 0.16);
  --hero-glow-b: rgba(251, 191, 36, 0.08);
}

.page-hero--fahrzeuge {
  --hero-accent: #38bdf8;
  --hero-accent-soft: rgba(56, 189, 248, 0.22);
  --hero-glow-a: rgba(56, 189, 248, 0.22);
  --hero-glow-b: rgba(255, 255, 255, 0.08);
}

.page-hero--anhaenger {
  --hero-accent: #fbbf24;
  --hero-accent-soft: rgba(251, 191, 36, 0.22);
  --hero-glow-a: rgba(251, 191, 36, 0.14);
  --hero-glow-b: rgba(56, 189, 248, 0.08);
}

.page-hero--ebikes {
  --hero-accent: #34d399;
  --hero-accent-soft: rgba(52, 211, 153, 0.22);
  --hero-glow-a: rgba(52, 211, 153, 0.16);
  --hero-glow-b: rgba(56, 189, 248, 0.08);
}

.page-hero--oeffnungszeiten {
  --hero-accent: #a5b4fc;
  --hero-accent-soft: rgba(165, 180, 252, 0.22);
  --hero-glow-a: rgba(165, 180, 252, 0.14);
  --hero-glow-b: rgba(255, 255, 255, 0.06);
}

.page-hero--karriere {
  --hero-accent: #c4b5fd;
  --hero-accent-soft: rgba(196, 181, 253, 0.22);
  --hero-glow-a: rgba(196, 181, 253, 0.16);
  --hero-glow-b: rgba(56, 189, 248, 0.08);
}

.page-hero--kontakt {
  --hero-accent: #7dd3fc;
  --hero-accent-soft: rgba(125, 211, 252, 0.22);
  --hero-glow-a: rgba(125, 211, 252, 0.2);
  --hero-glow-b: rgba(255, 255, 255, 0.07);
}

.page-hero--legal {
  --hero-accent: #94a3b8;
  --hero-accent-soft: rgba(148, 163, 184, 0.18);
  --hero-glow-a: rgba(148, 163, 184, 0.1);
  --hero-glow-b: rgba(255, 255, 255, 0.04);
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 55%, #1e3a5f 100%);
}

.page-hero--service {
  --hero-accent: #38bdf8;
  --hero-accent-soft: rgba(56, 189, 248, 0.2);
  --hero-glow-a: rgba(56, 189, 248, 0.18);
  --hero-glow-b: rgba(255, 255, 255, 0.06);
}

.page-hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% 15%, var(--hero-glow-a), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, var(--hero-glow-b), transparent 50%);
  pointer-events: none;
}

.page-hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 75%);
  pointer-events: none;
}

.page-hero__shell {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero__frame {
  width: 100%;
  max-width: 54rem;
  margin-inline: auto;
}

.page-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.page-hero__inner--solo {
  max-width: 40rem;
  margin-inline: auto;
}

@media (min-width: 900px) {
  .page-hero__inner--split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2rem;
    align-items: center;
    text-align: left;
  }

  .page-hero__inner--split .page-hero__content {
    text-align: left;
  }
}

.page-hero__content {
  width: 100%;
}

.page-hero__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hero-accent);
}

.page-hero h1 {
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1.12;
  margin: 0 0 0.85rem;
  letter-spacing: -0.03em;
  color: #fff;
}

.page-hero--compact h1 {
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
}

.page-hero__lead {
  margin: 0 auto;
  max-width: 42ch;
  font-size: 1.02rem;
  line-height: 1.55;
  color: #cbd5e1;
}

@media (min-width: 900px) {
  .page-hero__inner--split .page-hero__lead {
    margin: 0;
    max-width: 38ch;
  }
}

.page-hero--compact .page-hero__lead {
  font-size: 0.98rem;
}

.page-hero__cta {
  min-height: 2.75rem;
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero__cta--empty {
  visibility: hidden;
}

@media (min-width: 900px) {
  .page-hero__inner--split .page-hero__cta {
    justify-content: flex-start;
  }
}

.page-hero__tel {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.page-hero__tel a {
  color: #fff;
  text-decoration: none;
}

.page-hero__tel a:hover {
  color: var(--hero-accent);
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

@media (min-width: 900px) {
  .page-hero__inner--split .page-hero__actions {
    justify-content: flex-start;
  }
}

.page-hero__aside {
  width: 100%;
  max-width: 22rem;
  background: rgba(15, 23, 42, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.15rem 1.3rem;
  backdrop-filter: blur(8px);
}

@media (min-width: 900px) {
  .page-hero__inner--split .page-hero__aside {
    max-width: none;
  }
}

.page-hero__facts {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.page-hero__facts li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #e2e8f0;
  text-align: left;
}

.page-hero__facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hero-accent);
  box-shadow: 0 0 0 3px var(--hero-accent-soft);
}

.section-head--center {
  max-width: none;
  text-align: center;
  margin-inline: auto;
}

.section-head--center p {
  max-width: 48ch;
  margin-inline: auto;
}

.service-highlights {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .service-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .service-highlights {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.service-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem 1.1rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-highlight:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
}

.service-highlight:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.service-highlight__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 0.85rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  box-shadow: 0 4px 14px color-mix(in srgb, var(--accent) 28%, transparent);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-highlight:hover .service-highlight__icon {
  transform: scale(1.06);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--accent) 38%, transparent);
}

.service-highlight__icon img {
  width: 1.65rem;
  height: 1.65rem;
  object-fit: contain;
}

.service-highlight h3 {
  margin: 0 0 0.35rem;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.service-highlight p {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.service-highlight__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.15s ease;
}

.service-highlight:hover .service-highlight__cta {
  background: color-mix(in srgb, var(--accent) 18%, transparent);
}

.service-categories {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .service-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-category {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.45rem 1.35rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.service-category__head {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.service-category__head h3 {
  margin: 0 0 0.4rem;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.service-category__head p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.service-category__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.service-category__list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ink);
}

.service-category__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0.75;
}

.service-cta {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 55%, #0b5cab 100%);
  color: #e2e8f0;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.service-cta__inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 720px) {
  .service-cta__inner {
    grid-template-columns: 1fr auto;
    gap: 2rem;
  }
}

.service-cta h2 {
  margin: 0 0 0.5rem;
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  color: #fff;
  letter-spacing: -0.02em;
}

.service-cta p {
  margin: 0;
  color: #cbd5e1;
  max-width: 42ch;
}

.service-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .service-cta__actions {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
}

.service-cta__phone {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.service-cta__phone:hover {
  color: #bae6fd;
}

.service-cta__note {
  margin: 1.25rem 0 0;
  font-size: 0.82rem;
  color: #94a3b8;
}

.person-inline {
  margin-top: 2rem;
  padding: 1.25rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-width: 420px;
}

.person-inline h2 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.person-inline h2 a {
  color: inherit;
  text-decoration: none;
}

.person-inline h2 a:hover {
  color: var(--accent);
}

.person-inline .tel {
  font-size: 1.05rem;
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 72ch;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 0.25rem 1rem 0.75rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.65rem 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary h3 {
  display: inline;
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.faq-item p {
  margin: 0 0 0.5rem;
  color: var(--muted);
  line-height: 1.55;
}
