/* ============================================================
   AutoHaus Schildesche — Global Styles
   Light, technical, German-conservative with red accent
   Theme variables can be overridden by Tweaks panel
   ============================================================ */

:root {
  /* —— Theme: Klassisch (default) — Hellgrau + Signalrot —— */
  --bg:            #ffffff;
  --bg-alt:        #f5f5f4;
  --bg-deep:       #0e0f10;
  --surface:       #ffffff;
  --line:          #e5e3e0;
  --line-strong:   #d1cec9;
  --text:          #161718;
  --text-soft:     #5a5c60;
  --text-mute:     #8a8c90;
  --accent:        #d22e2e;
  --accent-deep:   #a51f1f;
  --accent-soft:   #fbecec;
  --on-accent:     #ffffff;
  --success:       #1f7a4d;

  /* —— Typography —— */
  --font-display:  "Manrope", "Helvetica Neue", "Helvetica", "Arial", system-ui, sans-serif;
  --font-body:     "IBM Plex Sans", "Helvetica Neue", "Helvetica", "Arial", system-ui, sans-serif;
  --font-mono:     "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --tracking-tight: -0.02em;
  --tracking-mono:  0.02em;

  /* —— Sizing —— */
  --radius:        4px;
  --radius-lg:     8px;
  --shadow-sm:     0 1px 0 rgba(15, 16, 17, 0.04), 0 1px 2px rgba(15, 16, 17, 0.04);
  --shadow-md:     0 8px 24px -8px rgba(15, 16, 17, 0.12), 0 2px 6px rgba(15, 16, 17, 0.04);
  --max-w:         1480px;
  --gutter:        clamp(20px, 3vw, 56px);
  --header-h:      72px;
}

/* —— Theme: Werkstatt (dark + amber) —— */
[data-theme="werkstatt"] {
  --bg:            #0e0f10;
  --bg-alt:        #16181a;
  --bg-deep:       #050607;
  --surface:       #16181a;
  --line:          #25282b;
  --line-strong:   #34383c;
  --text:          #f1efea;
  --text-soft:     #a8a8a4;
  --text-mute:     #6f6f6a;
  --accent:        #f5b400;
  --accent-deep:   #c89000;
  --accent-soft:   #2b2410;
  --on-accent:     #0e0f10;
  --shadow-sm:     0 1px 0 rgba(0, 0, 0, 0.4);
  --shadow-md:     0 8px 28px -8px rgba(0, 0, 0, 0.6);
}

/* —— Theme: Premium (steel blue + cream) —— */
[data-theme="premium"] {
  --bg:            #f6f3ec;
  --bg-alt:        #ece8de;
  --bg-deep:       #18222e;
  --surface:       #ffffff;
  --line:          #ddd6c5;
  --line-strong:   #c5bda9;
  --text:          #18222e;
  --text-soft:     #4a5868;
  --text-mute:     #7c8896;
  --accent:        #1c3d5a;
  --accent-deep:   #122a3f;
  --accent-soft:   #e4ecf3;
  --on-accent:     #ffffff;
}

/* —— Theme: Mono (B/W technical) —— */
[data-theme="mono"] {
  --bg:            #fafafa;
  --bg-alt:        #f0f0f0;
  --bg-deep:       #0a0a0a;
  --surface:       #ffffff;
  --line:          #e2e2e2;
  --line-strong:   #c8c8c8;
  --text:          #0a0a0a;
  --text-soft:     #545454;
  --text-mute:     #8a8a8a;
  --accent:        #0a0a0a;
  --accent-deep:   #000000;
  --accent-soft:   #ebebeb;
  --on-accent:     #ffffff;
}

/* —— Theme: Stahl (industrial blue) —— */
[data-theme="stahl"] {
  --bg:            #ffffff;
  --bg-alt:        #f1f4f7;
  --bg-deep:       #0d1b2a;
  --surface:       #ffffff;
  --line:          #dde3ea;
  --line-strong:   #c5cdd6;
  --text:          #0d1b2a;
  --text-soft:     #4a5a6c;
  --text-mute:     #7a8898;
  --accent:        #1d4ed8;
  --accent-deep:   #1640a8;
  --accent-soft:   #e6ecfb;
  --on-accent:     #ffffff;
}

/* —— Typography pairings —— */
[data-font="modern"] {
  --font-display: "Manrope", "Helvetica Neue", system-ui, sans-serif;
  --font-body:    "IBM Plex Sans", "Helvetica Neue", system-ui, sans-serif;
}
[data-font="industrial"] {
  --font-display: "Archivo", "Helvetica Neue", system-ui, sans-serif;
  --font-body:    "Archivo", "Helvetica Neue", system-ui, sans-serif;
}
[data-font="editorial"] {
  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "IBM Plex Sans", system-ui, sans-serif;
  --tracking-tight: -0.025em;
}
[data-font="technical"] {
  --font-display: "Space Grotesk", "Helvetica Neue", system-ui, sans-serif;
  --font-body:    "Space Grotesk", "Helvetica Neue", system-ui, sans-serif;
}

/* ============================================================
   Reset & base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
hr { border: 0; border-top: 1px solid var(--line); margin: 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
}

.eyebrow--accent { color: var(--accent); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding-block: clamp(56px, 8vw, 112px);
}
.section--tight { padding-block: clamp(40px, 6vw, 80px); }
.section--alt { background: var(--bg-alt); }
.section--deep { background: var(--bg-deep); color: #f1efea; }
.section--deep .eyebrow { color: rgba(241, 239, 234, 0.6); }
.section--deep h2 { color: #f1efea; }

/* Headings */
.h-display {
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.h-1 { font-size: clamp(32px, 4.4vw, 56px); }
.h-2 { font-size: clamp(26px, 3.2vw, 40px); }
.h-3 { font-size: clamp(20px, 2vw, 24px); }
.lead {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--text-soft);
  max-width: 60ch;
  line-height: 1.55;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  line-height: 1;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .05s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--accent);
  color: var(--on-accent);
}
.btn--primary:hover { background: var(--accent-deep); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover { background: var(--bg-alt); border-color: var(--text); }
.btn--dark {
  background: var(--text);
  color: var(--bg);
}
.btn--dark:hover { background: #000; }
.btn--lg { padding: 18px 28px; font-size: 16px; }
.btn--sm { padding: 10px 16px; font-size: 13px; }
.btn--block { width: 100%; justify-content: center; }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* Form inputs */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
}
.field input, .field select, .field textarea {
  font: inherit;
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field--row { flex-direction: row; gap: 12px; align-items: center; }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.header__topbar {
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
  font-size: 12.5px;
  color: var(--text-soft);
}
.header__topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 36px;
}
.header__topbar-left {
  display: flex;
  align-items: center;
  gap: 22px;
}
.header__topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.header__topbar-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(31, 122, 77, 0.18);
}
.header__topbar-right {
  display: flex;
  gap: 14px;
}
.header__topbar a:hover { color: var(--text); }
@media (max-width: 720px) {
  .header__topbar { display: none; }
}

.header__main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--text);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.04em;
  border-radius: 2px;
}
.brand__mark::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  position: absolute;
  margin-top: 30px;
  margin-left: 30px;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand__sub {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 3px;
  display: block;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}
.nav__item {
  position: relative;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: background .12s ease, color .12s ease;
}
.nav__link:hover { background: var(--bg-alt); }
.nav__link.is-active { color: var(--accent); }
.nav__link svg { opacity: 0.5; }
.nav__submenu {
  position: absolute;
  top: calc(100% + 4px);
  left: -10px;
  min-width: 280px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}
.nav__item:hover .nav__submenu,
.nav__item:focus-within .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__submenu a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  border-radius: var(--radius);
  color: var(--text);
  transition: background .12s ease, color .12s ease;
}
.nav__submenu a:hover { background: var(--bg-alt); color: var(--accent); }
.nav__submenu a small {
  display: block;
  font-size: 12px;
  color: var(--text-mute);
  margin-top: 2px;
  font-weight: 400;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header__phone {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
  gap: 2px;
}
.header__phone strong {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.header__phone small {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-mute);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
}
.burger span::before, .burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

@media (max-width: 980px) {
  .nav { display: none; }
  .header__phone small { display: none; }
  .burger { display: inline-flex; }
}
@media (max-width: 560px) {
  .header__phone { display: none; }
  .btn--header-cta span { display: none; }
}

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 100;
  transform: translateX(100%);
  transition: transform .25s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--gutter);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
}
.mobile-menu__close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}
.mobile-menu__nav {
  padding: 16px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu__nav a {
  padding: 16px 0;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu__nav a small { font-weight: 400; color: var(--text-mute); font-size: 13px; }
.mobile-menu__cta {
  padding: 24px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding-block: clamp(48px, 6vw, 80px) clamp(48px, 6vw, 100px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--text-soft);
  margin-bottom: 24px;
}
.hero__badge .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(31, 122, 77, 0.2);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
}
.hero__title .underline {
  background: linear-gradient(to top, var(--accent-soft) 0% 38%, transparent 38% 100%);
  padding: 0 4px;
}
.hero__sub {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--text-soft);
  max-width: 52ch;
  margin-bottom: 32px;
  line-height: 1.55;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.hero__perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.hero__perk {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__perk strong {
  font-size: 14px;
  font-weight: 700;
}
.hero__perk small {
  font-size: 12.5px;
  color: var(--text-mute);
  line-height: 1.4;
}
.hero__perk-icon {
  width: 22px;
  height: 22px;
  margin-bottom: 6px;
  color: var(--accent);
}

/* Hero variants */
.hero--split .hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
}

.hero--bold {
  padding-block: clamp(56px, 7vw, 120px);
}
.hero--bold .hero__grid { grid-template-columns: 1fr; }
.hero--bold .hero__title { font-size: clamp(48px, 9vw, 140px); letter-spacing: -0.05em; }
.hero--bold .hero__visual { display: none; }
.hero--bold .hero__perks { grid-template-columns: repeat(4, 1fr); }

.hero--immersive {
  color: #fff;
  background: var(--bg-deep);
  border-bottom: none;
}
.hero--immersive .hero__sub { color: rgba(255,255,255,0.7); }
.hero--immersive .hero__title { color: #fff; }
.hero--immersive .hero__badge { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.16); }
.hero--immersive .hero__perks { border-color: rgba(255,255,255,0.12); }
.hero--immersive .hero__perk small { color: rgba(255,255,255,0.55); }
.hero--immersive .hero__perk strong { color: #fff; }
.hero--immersive .btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.hero--immersive .btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.hero--immersive .hero__visual {
  background: linear-gradient(135deg, #2a2c2e 0%, #16181a 100%);
}

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__perks { grid-template-columns: repeat(2, 1fr); }
  .hero--bold .hero__perks { grid-template-columns: repeat(2, 1fr); }
}

/* Placeholder image */
.ph {
  position: relative;
  background: var(--bg-alt);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0 14px,
    rgba(15, 16, 17, 0.04) 14px 15px
  );
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.ph::after {
  content: attr(data-label);
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-mute);
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 5px 8px;
  border-radius: 2px;
  text-transform: uppercase;
}
.ph__icon {
  width: 48px;
  height: 48px;
  color: var(--text-mute);
  opacity: 0.5;
}
.ph--dark {
  background-color: #1a1c1e;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0 14px,
    rgba(255,255,255,0.04) 14px 15px
  );
  border-color: rgba(255,255,255,0.1);
}
.ph--dark::after {
  background: #16181a;
  color: rgba(255,255,255,0.5);
  border-color: rgba(255,255,255,0.12);
}

/* ============================================================
   Stats / Counters
   ============================================================ */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px;
}
.stat {
  padding: clamp(28px, 4vw, 56px) clamp(20px, 3vw, 40px);
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat__suffix {
  font-size: 0.5em;
  color: var(--accent);
  font-weight: 600;
}
.stat__label {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.4;
}
@media (max-width: 720px) {
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* ============================================================
   Section heading
   ============================================================ */
.s-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: clamp(32px, 4vw, 56px);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.s-head__left { max-width: 70ch; }
.s-head .eyebrow { margin-bottom: 12px; display: inline-flex; align-items: center; gap: 10px; }
.s-head .eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.s-head h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  margin-bottom: 12px;
}
.s-head p { color: var(--text-soft); max-width: 60ch; }
@media (max-width: 720px) {
  .s-head { grid-template-columns: 1fr; }
}

/* ============================================================
   Category cards (Leistungen grid)
   ============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.cat-card {
  position: relative;
  background: var(--surface);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 220px;
  transition: background .15s ease;
}
.cat-card:hover { background: var(--bg-alt); }
.cat-card:hover .cat-card__arrow { transform: translate(3px, -3px); color: var(--accent); }
.cat-card__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
}
.cat-card__icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-bottom: 4px;
}
.cat-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.cat-card__desc {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.45;
  margin-top: -4px;
}
.cat-card__meta {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-size: 12px;
  color: var(--text-mute);
  font-family: var(--font-mono);
}
.cat-card__arrow {
  width: 18px;
  height: 18px;
  color: var(--text-mute);
  transition: transform .2s ease, color .2s ease;
}

@media (max-width: 980px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .cat-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   About / Text + image
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.about__visual {
  aspect-ratio: 5/6;
  position: relative;
}
.about__signature {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 16px 18px;
  max-width: 260px;
  box-shadow: var(--shadow-md);
}
.about__signature strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}
.about__signature small {
  font-size: 12px;
  color: var(--text-soft);
}
.about__text h2 { margin-bottom: 24px; font-size: clamp(28px, 3.6vw, 44px); }
.about__text p {
  font-size: 16px;
  color: var(--text-soft);
  margin-bottom: 18px;
  max-width: 60ch;
}
.about__quotes {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.about__quote {
  display: flex;
  gap: 14px;
  align-items: start;
}
.about__quote-mark {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 0.8;
  color: var(--accent);
  font-weight: 700;
}
.about__quote-text strong { display: block; font-weight: 600; margin-bottom: 4px; }
.about__quote-text small { font-size: 13px; color: var(--text-mute); }

@media (max-width: 880px) {
  .about { grid-template-columns: 1fr; }
}

/* ============================================================
   Vorteile (Advantages)
   ============================================================ */
.vorteile {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.vorteil {
  background: var(--surface);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vorteil__icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin-bottom: 8px;
}
.vorteil h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.vorteil p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
}

@media (max-width: 880px) {
  .vorteile { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .vorteile { grid-template-columns: 1fr; }
}

/* ============================================================
   Process / Ablauf
   ============================================================ */
.ablauf {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.ablauf__step {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.ablauf__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--text);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  border-radius: 50%;
}
.ablauf__step.is-accent .ablauf__num { background: var(--accent); color: var(--on-accent); }
.ablauf__step h3 {
  font-size: 15px;
  font-weight: 700;
}
.ablauf__step p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.45;
}

@media (max-width: 980px) {
  .ablauf { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
  .ablauf { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Prices teaser
   ============================================================ */
.prices-teaser {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.price-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.price-row__title {
  font-weight: 600;
  font-size: 16px;
}
.price-row__sub {
  display: block;
  font-weight: 400;
  font-size: 13px;
  color: var(--text-mute);
  margin-top: 2px;
}
.price-row__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  text-align: right;
  white-space: nowrap;
}
.price-row__price small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-mute);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .prices-teaser { grid-template-columns: 1fr; }
}

/* ============================================================
   Testimonials
   ============================================================ */
.reviews-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  margin-bottom: 32px;
  align-items: end;
}
.google-rating {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
}
.google-rating__top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}
.google-rating__score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.google-rating__stars { color: #f5b400; font-size: 14px; letter-spacing: 2px; }
.google-rating__count { font-size: 12px; color: var(--text-mute); }

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review__stars { color: #f5b400; font-size: 14px; letter-spacing: 2px; }
.review__text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
  flex-grow: 1;
}
.review__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.review__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-soft);
}
.review__author-info strong { display: block; font-size: 13.5px; }
.review__author-info small { display: block; font-size: 11.5px; color: var(--text-mute); font-family: var(--font-mono); }

@media (max-width: 880px) {
  .reviews { grid-template-columns: 1fr; }
}

/* ============================================================
   Team
   ============================================================ */
.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.team__card {
  background: var(--surface);
}
.team__photo {
  aspect-ratio: 4/5;
  margin-bottom: 16px;
}
.team__name { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.team__role { font-size: 13px; color: var(--text-soft); margin-top: 4px; }
.team__meta {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 880px) {
  .team { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Brands / Marken
   ============================================================ */
.marken {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.marken__item {
  aspect-ratio: 1.4/1;
  background: var(--surface);
  display: grid;
  place-items: center;
  padding: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--text-soft);
  transition: background .15s ease, color .15s ease;
}
.marken__item:hover { background: var(--bg-alt); color: var(--text); }
.marken__item span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-mute);
  text-align: center;
  margin-top: 4px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 980px) {
  .marken { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 520px) {
  .marken { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   CTA Banner
   ============================================================ */
.cta-banner {
  background: var(--bg-deep);
  color: #f1efea;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background:
    radial-gradient(circle at 80% 50%, var(--accent) 0%, transparent 45%);
  opacity: 0.25;
  pointer-events: none;
}
.cta-banner h2 {
  color: #fff;
  font-size: clamp(28px, 3.6vw, 44px);
  margin-bottom: 16px;
  position: relative;
}
.cta-banner p {
  color: rgba(241, 239, 234, 0.7);
  font-size: 16px;
  max-width: 50ch;
  margin-bottom: 28px;
  position: relative;
}
.cta-banner__form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 28px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.cta-banner__form input, .cta-banner__form select {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.15);
  color: #f1efea;
}
.cta-banner__form input::placeholder { color: rgba(241,239,234,0.4); }
.cta-banner__cta { display: flex; gap: 12px; position: relative; align-items: center; }
.cta-banner__cta .phone-link {
  color: rgba(241, 239, 234, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
}
.cta-banner__cta .phone-link:hover { color: #fff; }

@media (max-width: 880px) {
  .cta-banner { grid-template-columns: 1fr; }
}

/* ============================================================
   Map / Locations
   ============================================================ */
.location {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.location__info {
  padding: clamp(28px, 4vw, 48px);
  background: var(--surface);
}
.location__info h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin-bottom: 24px;
}
.location__row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.location__row:last-child { border-bottom: none; }
.location__row svg { width: 18px; height: 18px; color: var(--accent); margin-top: 3px; }
.location__row strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.location__row small { color: var(--text-soft); font-size: 13.5px; line-height: 1.5; }
.location__map {
  background: var(--bg-alt);
  min-height: 380px;
  position: relative;
}
.location__map svg { width: 100%; height: 100%; display: block; }
@media (max-width: 880px) {
  .location { grid-template-columns: 1fr; }
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--bg-deep);
  color: #c4c2bd;
}
.footer__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-block: clamp(48px, 6vw, 80px);
}
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__mark { background: #fff; color: var(--bg-deep); }
.footer__tagline {
  font-size: 14px;
  color: rgba(196, 194, 189, 0.7);
  margin-top: 20px;
  max-width: 36ch;
  line-height: 1.55;
}
.footer__col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-mono);
  font-weight: 500;
  margin-bottom: 18px;
}
.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  font-size: 14px;
  color: rgba(196, 194, 189, 0.85);
}
.footer__col a:hover { color: #fff; }
.footer__col .contact-line {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: rgba(196, 194, 189, 0.85);
}
.footer__col .contact-line strong { color: #fff; font-weight: 600; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
}
.footer__bottom a:hover { color: #fff; }
.footer__legal {
  display: flex;
  gap: 24px;
}

@media (max-width: 880px) {
  .footer__main { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .footer__main { grid-template-columns: 1fr; }
}

/* ============================================================
   Floating CTA (mobile)
   ============================================================ */
.float-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 40;
  display: none;
  gap: 8px;
}
.float-cta .btn { flex: 1; box-shadow: var(--shadow-md); }
@media (max-width: 720px) {
  .float-cta { display: flex; }
  body { padding-bottom: 72px; }
}

/* Floating buttons (right side, desktop+mobile) */
.float-side {
  position: fixed;
  right: 16px;
  bottom: 90px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-side__btn {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  color: var(--text);
  transition: transform .15s ease, background .15s ease;
}
.float-side__btn:hover { transform: translateY(-2px); background: var(--bg-alt); }
.float-side__btn--whats { background: #25d366; color: #fff; border-color: #25d366; }
.float-side__btn--whats:hover { background: #1ebc59; }
.float-side__btn--up { opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .15s ease, background .15s ease; }
.float-side__btn--up.is-visible { opacity: 1; pointer-events: auto; }

/* ============================================================
   Modal (booking form)
   ============================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 16, 17, 0.55);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.modal-backdrop.is-open { opacity: 1; visibility: visible; }
.modal {
  background: var(--surface);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.96);
  transition: transform .2s ease;
}
.modal-backdrop.is-open .modal { transform: scale(1); }
.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}
.modal__header h3 { font-size: 20px; }
.modal__close {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.modal__close:hover { background: var(--bg-alt); }
.modal__body {
  padding: 24px 28px;
  display: grid;
  gap: 14px;
  overflow-y: auto;
}
.modal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.modal__footer {
  padding: 20px 28px;
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal__footer .small {
  font-size: 12px;
  color: var(--text-mute);
  line-height: 1.5;
}
.modal__success {
  display: none;
  text-align: center;
  padding: 56px 28px;
}
.modal__success svg { width: 56px; height: 56px; color: var(--success); margin: 0 auto 16px; }
.modal__success h3 { font-size: 22px; margin-bottom: 8px; }
.modal__success p { color: var(--text-soft); font-size: 14px; max-width: 36ch; margin: 0 auto; }
.modal.is-success .modal__header,
.modal.is-success .modal__body,
.modal.is-success .modal__footer { display: none; }
.modal.is-success .modal__success { display: block; }

@media (max-width: 520px) {
  .modal__row { grid-template-columns: 1fr; }
}

/* ============================================================
   Breadcrumbs
   ============================================================ */
.breadcrumbs {
  padding: 20px 0 0;
  font-size: 13px;
  color: var(--text-mute);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.breadcrumbs a { color: var(--text-soft); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { opacity: 0.4; }
.breadcrumbs .current { color: var(--text); font-weight: 500; }

/* ============================================================
   Page header (inner pages)
   ============================================================ */
.page-head {
  padding-block: clamp(32px, 4vw, 56px) clamp(28px, 3.5vw, 48px);
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
}
.page-head__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
.page-head h1 {
  font-size: clamp(34px, 4.8vw, 56px);
  letter-spacing: -0.03em;
  margin-block: 16px 18px;
  line-height: 1.05;
}
.page-head__lead {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--text-soft);
  max-width: 56ch;
  line-height: 1.55;
}
.page-head__quick {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-head__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.page-head__price small {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 400;
}
.page-head__quick .btn { width: 100%; justify-content: center; }
.page-head__phone-row {
  font-size: 13px;
  color: var(--text-soft);
  text-align: center;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.page-head__phone-row strong { color: var(--text); font-weight: 700; font-size: 14px; }

@media (max-width: 880px) {
  .page-head__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Article / SEO content (service page)
   ============================================================ */
.article {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}
.article__body {
  max-width: 70ch;
}
.article__body h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  margin-top: 48px;
  margin-bottom: 16px;
  scroll-margin-top: 100px;
}
.article__body h2:first-child { margin-top: 0; }
.article__body h3 {
  font-size: 19px;
  margin-top: 32px;
  margin-bottom: 12px;
}
.article__body p {
  font-size: 16px;
  color: var(--text-soft);
  margin-bottom: 16px;
  line-height: 1.65;
}
.article__body ul, .article__body ol {
  padding-left: 0;
  margin-bottom: 20px;
  list-style: none;
}
.article__body ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.55;
}
.article__body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 1px;
  background: var(--accent);
}
.article__callout {
  background: var(--bg-alt);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  margin-block: 28px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
}
.article__callout strong { display: block; font-weight: 700; margin-bottom: 6px; }

.article__aside {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.aside-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: var(--radius-lg);
}
.aside-card h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--text-mute);
  margin-bottom: 14px;
}
.aside-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1px; }
.aside-card ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.aside-card ul li:last-child a { border-bottom: none; }
.aside-card ul li a:hover { color: var(--accent); }
.aside-card ul li a span:last-child { font-family: var(--font-mono); font-size: 12px; color: var(--text-mute); }

@media (max-width: 980px) {
  .article { grid-template-columns: 1fr; }
  .article__aside { position: static; }
}

/* ============================================================
   Price table
   ============================================================ */
.ptable {
  width: 100%;
  border-collapse: collapse;
  margin-block: 24px;
  border-top: 1px solid var(--line);
}
.ptable th, .ptable td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.ptable th {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-mute);
  font-weight: 500;
  background: var(--bg-alt);
}
.ptable td:last-child {
  text-align: right;
  font-family: var(--font-display);
  font-weight: 700;
  white-space: nowrap;
}
.ptable td .from { font-family: var(--font-mono); font-size: 11px; color: var(--text-mute); font-weight: 400; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__q {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 22px 4px;
  font-size: 17px;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  cursor: pointer;
  background: transparent;
  border: 0;
  width: 100%;
  text-align: left;
  color: var(--text);
}
.faq__q:hover { color: var(--accent); }
.faq__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq__icon::before { width: 14px; height: 1.5px; }
.faq__icon::after { width: 1.5px; height: 14px; transition: transform .2s ease; }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq__item.is-open .faq__a { max-height: 600px; }
.faq__a-inner {
  padding: 0 4px 22px;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 70ch;
}

/* ============================================================
   Service list (kategorie page)
   ============================================================ */
.svc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.svc-list__item {
  background: var(--surface);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  transition: background .15s ease;
}
.svc-list__item:hover { background: var(--bg-alt); }
.svc-list__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.svc-list__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
  font-weight: 400;
  letter-spacing: 0.04em;
}
.svc-list__desc {
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.45;
  max-width: 50ch;
}
.svc-list__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-align: right;
}
.svc-list__price small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 400;
  margin-bottom: 2px;
}

@media (max-width: 720px) {
  .svc-list { grid-template-columns: 1fr; }
  .svc-list__item { grid-template-columns: 1fr; }
  .svc-list__price { text-align: left; }
}

/* ============================================================
   Tweaks panel
   ============================================================ */
.tweaks-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  background: var(--surface);
  border-left: 1px solid var(--line);
  box-shadow: -8px 0 32px -8px rgba(0,0,0,0.1);
  z-index: 150;
  transform: translateX(100%);
  transition: transform .25s ease;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
}
.tweaks-panel.is-open { transform: translateX(0); }
.tweaks-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.tweaks-panel__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.tweaks-panel__close {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}
.tweaks-panel__body {
  padding: 18px 20px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.tweak-group h4 {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: var(--text-mute);
  margin-bottom: 10px;
}
.tweak-swatches {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.tweak-swatch {
  aspect-ratio: 1;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  background: var(--bg);
  overflow: hidden;
  padding: 0;
}
.tweak-swatch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--swatch-accent);
  clip-path: polygon(0 60%, 100% 30%, 100% 100%, 0 100%);
}
.tweak-swatch.is-active { border-color: var(--text); box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--text); }
.tweak-swatch-label {
  position: absolute;
  bottom: 2px;
  left: 4px;
  font-family: var(--font-mono);
  font-size: 8px;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: 0.04em;
  z-index: 1;
}

.tweak-options {
  display: grid;
  gap: 6px;
}
.tweak-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.tweak-option:hover { border-color: var(--text); }
.tweak-option.is-active { background: var(--text); color: var(--bg); border-color: var(--text); }
.tweak-option small {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tweak-option.is-active small { color: rgba(255,255,255,0.5); }

/* Floating tweak toggle button (when off) */
.tweaks-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 60;
  background: var(--text);
  color: var(--bg);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  display: none;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  border: 0;
  cursor: pointer;
}
.tweaks-toggle.is-visible { display: inline-flex; }
.tweaks-toggle:hover { background: var(--accent); color: var(--on-accent); }

/* Inline-icon helper */
.icon-inline { width: 1em; height: 1em; vertical-align: -0.12em; display: inline-block; }

/* ============================================================
   Utilities
   ============================================================ */
.text-accent { color: var(--accent); }
.text-mute { color: var(--text-mute); }
.text-soft { color: var(--text-soft); }
.flex-grow { flex-grow: 1; }
.mono { font-family: var(--font-mono); letter-spacing: var(--tracking-mono); }
.hide-mobile { display: initial; }
.show-mobile { display: none; }
@media (max-width: 720px) {
  .hide-mobile { display: none; }
  .show-mobile { display: initial; }
}
