/* ============================================================
   Kreuz Fahrzeugaufbereitung — style.css
   Dunkel & edel & performance-orientiert
   ============================================================ */

/* ----- Basis ----- */
:root {
  --bg: #0b0b0d;
  --bg-alt: #121216;
  --surface: #1a1a20;
  --border: #2a2a33;
  --text: #e8e6e1;
  --text-dim: #9a9891;
  --gold: #c9a227;
  --gold-bright: #e6c35c;
  --radius: 14px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Platz für fixierte Nav bei Anker-Links */
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, model-viewer { max-width: 100%; }

a { color: inherit; text-decoration: none; }

/* ----- Buttons ----- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: #14120a;
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.25);
}
.btn--gold:hover { box-shadow: 0 12px 32px rgba(201, 162, 39, 0.4); }

.btn--ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

.btn--wa {
  background: #1f2c34;
  border: 1px solid #2f6b4f;
  color: #d9f2e4;
}
.btn--wa:hover { border-color: #4cc27e; background: #24333d; }
.btn--wa strong { color: #4cc27e; margin-right: 0.4em; }

/* ----- Navigation ----- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 11, 13, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-bright);
}
.nav__logo-mark {
  color: var(--gold);
  margin-right: 0.2rem;
}
.nav__links {
  display: flex;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--gold-bright); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s, opacity 0.25s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----- Hero (Auto im Hintergrund, Text links) ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url("img/hero-car.jpg") center / cover no-repeat;
  transform: scale(1.02); /* dezentes Zoom gegen Rand-Artefakte */
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 11, 13, 0.96) 0%, rgba(11, 11, 13, 0.68) 45%, rgba(11, 11, 13, 0.15) 72%, rgba(11, 11, 13, 0.4) 100%),
    linear-gradient(0deg, rgba(11, 11, 13, 0.9) 0%, transparent 32%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  padding: 8rem 2rem 5rem;
}
.hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 1.2rem;
}
.hero__title span {
  display: block;
  color: var(--gold-bright);
  font-style: italic;
  white-space: nowrap;
  font-size: 0.72em;
}
.hero__subline {
  font-size: 1.15rem;
  color: var(--text-dim);
  margin-bottom: 2.2rem;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll-Hinweis unten im Hero */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 1;
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(232, 230, 225, 0.75);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  transition: border-color 0.25s;
}
.hero__scroll:hover { border-color: var(--gold-bright); }
.hero__scroll span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold-bright);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ===== 3D-Showroom ===== */
.section--showroom {
  max-width: none;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(201, 162, 39, 0.06), transparent),
    var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-bottom: 4rem;
}
.section--showroom .section__head { margin-bottom: 2.5rem; }
.showroom__viewer {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  height: min(78vh, 700px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 45% at 50% 78%, rgba(201, 162, 39, 0.08), transparent),
    linear-gradient(180deg, #0d0d10, #08080a);
}
.showroom__viewer .viewer3d {
  width: 100%;
  height: 100%;
}
.showroom__hint {
  position: absolute;
  bottom: 4.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: var(--text-dim);
  opacity: 0.75;
  z-index: 2;
  white-space: nowrap;
}

/* ===== Schmutzregler (Vorher/Nachher) ===== */
.dirt-control {
  position: absolute;
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.7rem 1.1rem;
  background: rgba(10, 10, 12, 0.72);
  border: 1px solid rgba(201, 168, 99, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  max-width: calc(100% - 2rem);
}
.dirt-control__label {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e8d9b5;
  white-space: nowrap;
  text-align: center;
}
.dirt-control__label em {
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: rgba(232, 217, 181, 0.55);
  display: block;
}
.dirt-control__slider {
  -webkit-appearance: none;
  appearance: none;
  width: clamp(110px, 26vw, 220px);
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #4a3c22, #c9a863);
  outline: none;
  cursor: pointer;
}
.dirt-control__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f4e3b8, #c9a863 60%, #8a6f3c);
  border: 2px solid #1a1a1e;
  box-shadow: 0 0 12px rgba(201, 168, 99, 0.55);
  transition: transform 0.15s ease;
}
.dirt-control__slider::-webkit-slider-thumb:hover {
  transform: scale(1.12);
}
.dirt-control__slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f4e3b8, #c9a863 60%, #8a6f3c);
  border: 2px solid #1a1a1e;
  box-shadow: 0 0 12px rgba(201, 168, 99, 0.55);
  cursor: pointer;
}
.dirt-control__slider::-moz-range-track {
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #4a3c22, #c9a863);
}

/* ----- Sections ----- */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}
.section--alt {
  max-width: none;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section--alt > * { max-width: 1200px; margin-left: auto; margin-right: auto; }

.section__head { text-align: center; margin-bottom: 3.5rem; }
.section__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
}
.section__lead {
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto;
}

/* ----- Leistungs-Karten ----- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.45);
}
.card--highlight {
  border-color: rgba(201, 162, 39, 0.5);
  background: linear-gradient(160deg, #1e1a10, var(--surface) 55%);
}
.card h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.card p { color: var(--text-dim); font-size: 0.95rem; }
.card__price {
  margin-top: 1.1rem;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-bright);
}
.prices-note {
  text-align: center;
  margin-top: 2.4rem;
  font-size: 0.92rem;
  color: var(--text-dim);
  font-style: italic;
}

/* ----- Pakete (3 Hauptleistungen) ----- */
.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.6rem;
  align-items: stretch;
}
.package {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.package:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.45);
}
.package--highlight {
  border-color: rgba(201, 162, 39, 0.5);
  background: linear-gradient(160deg, #1e1a10, var(--surface) 55%);
}
.package__head { margin-bottom: 1.2rem; }
.package__head h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.package__tag {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.package__scope {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  flex: 1;
}
.package__scope li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.55rem;
  font-size: 1.02rem;
  color: var(--text-dim);
}
.package__scope li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 0.7rem;
}
.package__prices {
  border-top: 1px solid var(--border);
  padding-top: 1.1rem;
  display: grid;
  gap: 0.55rem;
}
.package__price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1rem;
  color: var(--text-dim);
}
.package__price strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-bright);
}

/* ----- Zusatzleistungen (à la carte) ----- */
.extras {
  margin-top: 3.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
}
.extras__head { text-align: center; margin-bottom: 1.8rem; }
.extras__head h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.extras__head h3 span {
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
}
.extras__head p {
  color: var(--text-dim);
  font-size: 0.95rem;
}
.extras__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0.4rem 2.2rem;
}
.extra {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
  font-size: 1.02rem;
}
.extra__name { color: var(--text); }
.extra__name em {
  display: block;
  font-style: normal;
  font-size: 0.87rem;
  color: var(--text-dim);
  margin-top: 0.1rem;
}
.extra__price {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--gold-bright);
  white-space: nowrap;
}

/* Platzhalter-Visuals: CSS-Gradienten statt Fotos */
.card__visual {
  height: 130px;
  border-radius: 10px;
  margin-bottom: 1.4rem;
  border: 1px solid var(--border);
}
.card__visual--interior {
  background:
    radial-gradient(circle at 30% 40%, rgba(201, 162, 39, 0.15), transparent 60%),
    linear-gradient(135deg, #2b2620, #14130f);
}
.card__visual--polish {
  background:
    radial-gradient(circle at 70% 30%, rgba(230, 195, 92, 0.3), transparent 55%),
    linear-gradient(120deg, #1a1c22, #0e0f13 60%);
}
.card__visual--ceramic {
  background:
    radial-gradient(circle at 50% 50%, rgba(201, 162, 39, 0.35), transparent 50%),
    conic-gradient(from 200deg, #191510, #2a2314, #14120c);
}
.card__visual--underbody {
  background:
    repeating-linear-gradient(45deg, #16181c 0 14px, #101216 14px 28px);
  border-left: 3px solid rgba(201, 162, 39, 0.35);
}
.card__visual--glass {
  background:
    linear-gradient(160deg, rgba(140, 180, 200, 0.12), transparent 40%),
    linear-gradient(200deg, #131820, #0d1016);
}
.card__visual--engine {
  background:
    radial-gradient(circle at 65% 60%, rgba(90, 90, 100, 0.5), transparent 60%),
    linear-gradient(135deg, #17181c, #0f1013);
}

/* ----- Werkstatt-Preisliste ----- */
.workshop-table {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
}
.workshop-table thead {
  background: linear-gradient(160deg, #1e1a10, var(--surface) 70%);
}
.workshop-table thead th {
  padding: 1.1rem 1.4rem;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: transparent;
  border-bottom: 1px solid rgba(201, 162, 39, 0.35);
}
.workshop-table td, .workshop-table .ws-nonprice {
  padding: 0.8rem 1.4rem;
  vertical-align: middle;
}
.workshop-table tbody tr:not(.ws-group) {
  border-top: 1px solid var(--border);
  transition: background 0.25s ease;
}
.workshop-table tbody tr:not(.ws-group):hover { background: rgba(201, 162, 39, 0.05); }

/* Gruppen-Überschriften (Bereiche) */
.workshop-table .ws-group {
  background: linear-gradient(160deg, #1e1a10, var(--surface) 60%);
}
.workshop-table .ws-group th {
  padding: 0.7rem 1.4rem;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  border-top: 1px solid rgba(201, 162, 39, 0.3);
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

/* Leistungsname + Preis */
.workshop-table .ws-name {
  color: rgba(232, 230, 225, 0.92);
  font-size: 1.06rem;
}
.workshop-table .ws-name em {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 0.12rem;
}
.workshop-table .ws-price {
  text-align: right;
  white-space: nowrap;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--gold-bright);
}
.workshop-table .ws-price em {
  font-style: normal;
  font-size: 0.82rem;
  font-family: var(--font-sans);
  font-weight: 400;
  color: rgba(230, 195, 92, 0.7);
  margin-right: 0.25rem;
}
.workshop-table .ws-na {
  text-align: right;
  white-space: nowrap;
  font-size: 0.9rem;
  color: var(--text-dim);
  font-style: italic;
}

@media (max-width: 700px) {
  .workshop-table,
  .workshop-table tbody,
  .workshop-table tr,
  .workshop-table td,
  .workshop-table th {
    display: block;
  }
  .workshop-table thead { display: none; }
  .workshop-table .ws-group th {
    display: block;
    padding: 0.7rem 1.1rem;
  }
  .workshop-table td {
    display: block;
    padding: 0.7rem 1.1rem;
  }
  .workshop-table .ws-name {
    display: block;
  }
  .workshop-table .ws-name em {
    display: block;
    white-space: normal;
  }
  .workshop-table .ws-price,
  .workshop-table .ws-na {
    display: block;
    margin-top: 0.3rem;
    text-align: right;
  }
  .workshop-table .ws-price { white-space: nowrap; }
  .workshop-table .ws-price em {
    display: inline;
    margin-right: 0.25rem;
  }
}

/* ----- Autohandel (bewusst dezent) ----- */
.dealer-band {
  max-width: none;
  padding: 1.6rem 2rem;
  text-align: center;
  background:
    radial-gradient(ellipse 55% 100% at 50% 0%, rgba(201, 162, 39, 0.05), transparent),
    var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-left: 3px solid rgba(201, 162, 39, 0.35);
  border-right: 3px solid rgba(201, 162, 39, 0.35);
}
.dealer-band p {
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-dim);
  font-size: 0.98rem;
}
.dealer-band a {
  color: var(--gold-bright);
  border-bottom: 1px dotted var(--gold);
}
.dealer-band__tag {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-right: 0.5rem;
}

/* ----- Rechtliche Seiten (Impressum / Datenschutz) ----- */
.legal {
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}
.legal__updated {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-style: italic;
  text-align: center;
  margin-top: 2rem;
}
.legal h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin: 2rem 0 0.7rem;
}
.legal h4 {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--gold);
  margin: 1.4rem 0 0.5rem;
}
.legal p, .legal li {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.7;
}
.legal ul {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 1rem;
}
.legal ul li {
  padding-left: 1.3rem;
  margin-bottom: 0.35rem;
}
.legal ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.68rem;
}
.legal ul li { position: relative; }
.legal .legal-hint {
  display: block;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  margin: 0.5rem 0 1rem;
  font-size: 0.88rem;
  color: #d9c98a;
  line-height: 1.55;
}
.legal a {
  color: var(--gold-bright);
  border-bottom: 1px dotted var(--gold);
}

/* Kleine Kopfleiste auf Unterseiten */
.subpage-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
}
.subpage-wrap .backlink {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-dim);
  border-bottom: 1px dotted var(--gold);
}
.subpage-wrap .backlink:hover { color: var(--gold-bright); }

/* ----- Ablauf / Steps ----- */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 2.2rem 1.8rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step__num {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.85;
  margin-bottom: 0.6rem;
}
.step h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.step p { color: var(--text-dim); font-size: 0.95rem; }

/* ----- Warum wir ----- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem;
}
.feature {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 0.25s;
}
.feature:hover { border-color: rgba(201, 162, 39, 0.4); }
.feature__icon { font-size: 2.2rem; margin-bottom: 0.9rem; }
.feature h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.feature p { color: var(--text-dim); font-size: 0.92rem; }

/* ----- Kontakt ----- */
.contact {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.contact__placeholder {
  height: 320px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  background:
    radial-gradient(ellipse 90% 70% at 50% 110%, rgba(201, 162, 39, 0.18), transparent),
    linear-gradient(180deg, #191a1f 0%, #0e0f12 100%);
}
.contact__placeholder-text {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--gold-bright);
}
.contact__info .btn { margin-bottom: 1.6rem; }
.contact__list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.contact__label {
  color: var(--gold);
  font-weight: 500;
  min-width: 90px;
  display: inline-block;
}
.contact__info a { border-bottom: 1px dotted var(--gold); }
.contact__note {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-style: italic;
}

/* ----- Footer ----- */
.footer {
  border-top: 1px solid var(--border);
  background: #08080a;
  padding: 3rem 2rem 2.5rem;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer__brand {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin-bottom: 1.2rem;
}
.footer__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.2rem;
}
.footer__links a { color: var(--text-dim); font-size: 0.9rem; }
.footer__links a:hover { color: var(--gold-bright); }
.footer__note {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-style: italic;
  margin-bottom: 1rem;
}
.footer__copy { font-size: 0.82rem; color: var(--text-dim); }

/* ----- Responsive ----- */
@media (max-width: 900px) {
  .hero { min-height: 92vh; }
  .hero__content {
    max-width: 100%;
    padding: 7rem 1.5rem 4rem;
  }
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(11, 11, 13, 0.55) 0%, rgba(11, 11, 13, 0.82) 60%, rgba(11, 11, 13, 0.95) 100%);
  }
  .hero__scroll { display: none; }
  .showroom__viewer { height: 58vh; }
  .showroom__hint { bottom: 4rem; }
  .contact { grid-template-columns: 1fr; }
  .contact__placeholder { height: 220px; }
}

@media (max-width: 700px) {
  .nav__burger { display: flex; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(11, 11, 13, 0.97);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav__links.open { max-height: 320px; }
  .nav__links a {
    display: block;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
  }
  .section { padding: 4rem 1.4rem; }
}
