/* MZD Motorradreisen — Wartungsseite
   Eigenständig: keine externen Schriften, Skripte oder CDNs. */

:root {
  --grund:        #0f1519;
  --grund-tief:   #0a0e11;
  --flaeche:      #161e24;
  --flaeche-hell: #1d272e;
  --linie:        rgba(255, 255, 255, .09);
  --linie-stark:  rgba(255, 255, 255, .16);

  --schrift:        #eef3f6;
  --schrift-leise:  #a3b2bc;
  --schrift-still:  #74848f;

  --akzent:       #649fb8;
  --akzent-hell:  #8dbdd2;
  --akzent-tief:  rgba(100, 159, 184, .13);

  --radius:     14px;
  --radius-gro: 20px;
  --schatten:   0 24px 60px rgba(0, 0, 0, .45);

  --stapel: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
            "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: var(--grund-tief);
  background-image:
    radial-gradient(1100px 620px at 50% -8%, #1a252c 0%, var(--grund) 46%, var(--grund-tief) 100%);
  color: var(--schrift);
  font-family: var(--stapel);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 56px);
}

.seite {
  width: 100%;
  max-width: 940px;
  background: var(--flaeche);
  border: 1px solid var(--linie);
  border-radius: var(--radius-gro);
  box-shadow: var(--schatten);
  overflow: hidden;
}

/* ---------- Bühne (Bild + Wortmarke) ---------- */

.buehne {
  position: relative;
  isolation: isolate;
  aspect-ratio: 1920 / 620;
  min-height: 210px;
  max-height: 340px;
  background: #0b1013;
}

.buehne__bild {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  filter: saturate(.92) contrast(1.02);
}

.buehne__verlauf {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      var(--flaeche) 0%,
      rgba(22, 30, 36, .88) 18%,
      rgba(22, 30, 36, .35) 52%,
      rgba(10, 14, 17, .30) 100%);
}

.buehne__inhalt {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(16px, 3.4vw, 30px);
  padding: 0 clamp(22px, 5vw, 52px);
  text-align: center;
}

.marke {
  margin: 0;
  font-size: clamp(1.55rem, 5.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .55);
}

.marke span {
  display: block;
  margin-top: .3em;
  font-size: .42em;
  font-weight: 600;
  letter-spacing: .38em;
  color: var(--akzent-hell);
}

.claim {
  margin: clamp(10px, 2vw, 16px) 0 0;
  font-size: clamp(.82rem, 2.3vw, .95rem);
  font-style: italic;
  color: var(--schrift-leise);
  text-shadow: 0 1px 10px rgba(0, 0, 0, .5);
}

/* ---------- Karte (Text + Kontakt) ---------- */

.karte {
  padding: clamp(26px, 5vw, 52px) clamp(22px, 5vw, 52px) clamp(22px, 4vw, 38px);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 clamp(14px, 2.6vw, 20px);
  padding: 6px 14px 6px 11px;
  border: 1px solid rgba(100, 159, 184, .32);
  border-radius: 999px;
  background: var(--akzent-tief);
  color: var(--akzent-hell);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  line-height: 1;
}

.status__punkt {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--akzent);
  box-shadow: 0 0 0 4px rgba(100, 159, 184, .18);
  animation: pulsieren 2.4s ease-in-out infinite;
}

@keyframes pulsieren {
  0%, 100% { opacity: 1;  transform: scale(1);    }
  50%      { opacity: .45; transform: scale(.82); }
}

h1 {
  margin: 0 0 clamp(10px, 2vw, 16px);
  font-size: clamp(1.45rem, 4.6vw, 2.1rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -.015em;
}

.fliess {
  margin: 0 0 clamp(24px, 4vw, 34px);
  max-width: 62ch;
  color: var(--schrift-leise);
  font-size: clamp(.95rem, 2.4vw, 1.03rem);
}

/* ---------- Kontaktfelder ---------- */

.kontakt {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

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

.kontakt__feld {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  background: var(--flaeche-hell);
  color: inherit;
  text-decoration: none;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}

.kontakt__feld--aktiv:hover,
.kontakt__feld--aktiv:focus-visible {
  border-color: rgba(100, 159, 184, .5);
  background: #22303a;
  transform: translateY(-2px);
  outline: none;
}

.kontakt__feld--aktiv:focus-visible {
  box-shadow: 0 0 0 3px rgba(100, 159, 184, .35);
}

.kontakt__symbol {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--akzent-tief);
  color: var(--akzent-hell);
}

.kontakt__symbol svg { width: 21px; height: 21px; }

.kontakt__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.kontakt__label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--schrift-still);
}

.kontakt__wert {
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.35;
  word-break: break-word;
}

.kontakt__zusatz {
  font-size: .86rem;
  color: var(--schrift-leise);
  line-height: 1.4;
}

/* ---------- Fuß ---------- */

.fuss {
  margin-top: clamp(24px, 4vw, 34px);
  padding-top: clamp(16px, 3vw, 22px);
  border-top: 1px solid var(--linie);
}

.fuss__zeile {
  margin: 0;
  font-size: .84rem;
  color: var(--schrift-leise);
  line-height: 1.7;
}

.fuss__zeile strong { color: var(--schrift); font-weight: 600; }

.fuss__zeile--klein {
  margin-top: 2px;
  font-size: .78rem;
  color: var(--schrift-still);
}

/* ---------- Schmale Geräte ---------- */

@media (max-width: 560px) {
  body { padding: 0; align-items: flex-start; }

  .seite {
    border: none;
    border-radius: 0;
    box-shadow: none;
    min-height: 100vh;
  }

  .buehne { max-height: 240px; aspect-ratio: 4 / 3; }
}

/* Flache Fenster (Notebooks): kompakter, damit die Kontaktdaten
   ohne Scrollen sichtbar bleiben. */
@media (min-width: 561px) and (max-height: 920px) {
  body   { padding-top: 24px; padding-bottom: 24px; }
  .buehne { max-height: 220px; }
  .karte { padding-top: 28px; padding-bottom: 26px; }
  .fliess { margin-bottom: 24px; }
  .fuss  { margin-top: 24px; padding-top: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .status__punkt { animation: none; }
  .kontakt__feld { transition: none; }
  .kontakt__feld--aktiv:hover { transform: none; }
}

@media print {
  body { background: #fff; color: #000; padding: 0; }
  .seite { border: none; box-shadow: none; background: #fff; }
  .buehne__verlauf, .status__punkt { display: none; }
  .kontakt__feld { background: #fff; border-color: #ccc; }
  .marke, h1, .kontakt__wert, .fuss__zeile strong { color: #000; }
  .fliess, .kontakt__zusatz, .fuss__zeile { color: #333; }
}
