/* Titillium Web ist als primäre Schrift gesetzt. Für eine datenschutzfreundliche Live-Nutzung die Webfont-Dateien lokal bereitstellen, statt Google Fonts extern einzubinden. */

:root {
  --brand: #2f64b3;
  --brand-dark: #16345f;
  --text: #111827;
  --muted: #5b6472;
  --line: rgba(47, 100, 179, 0.18);
  --card: rgba(255, 255, 255, 0.88);
  --background: #f4f7fb;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: "Titillium Web", "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(47, 100, 179, 0.18), transparent 34rem),
    linear-gradient(135deg, #ffffff 0%, var(--background) 52%, #e8eef8 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(47, 100, 179, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 100, 179, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.page-shell {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 32px 18px;
}

.hero {
  width: min(960px, 100%);
  padding: clamp(32px, 6vw, 72px);
  text-align: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: 0 28px 90px rgba(22, 52, 95, 0.16);
  backdrop-filter: blur(10px);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-dark);
  background: rgba(47, 100, 179, 0.08);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo {
  display: block;
  width: min(390px, 82vw);
  height: auto;
  margin: 0 auto 22px;
  filter: drop-shadow(0 14px 22px rgba(22, 52, 95, 0.12));
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-weight: 900;
  color: var(--text);
  font-size: clamp(2.2rem, 6.2vw, 4.7rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.lead {
  max-width: 660px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 2.5vw, 1.42rem);
  line-height: 1.55;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 34px auto 0;
}

.services span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  color: var(--brand-dark);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(22, 52, 95, 0.07);
}

.contact-card {
  display: grid;
  gap: 14px;
  max-width: 440px;
  margin: 34px auto 0;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.72));
  border: 1px solid var(--line);
}

.phone {
  color: var(--brand-dark);
  font-size: clamp(1.65rem, 4vw, 2.45rem);
  font-weight: 900;
  text-decoration: none;
}

.phone:hover,
.phone:focus {
  color: var(--brand);
  text-decoration: underline;
}

address {
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
}

.primary {
  color: #ffffff;
  background: var(--brand);
  box-shadow: 0 14px 30px rgba(47, 100, 179, 0.32);
}

.secondary {
  color: var(--brand-dark);
  background: #ffffff;
  border: 1px solid var(--line);
}

@media (max-width: 560px) {
  .hero {
    border-radius: 24px;
  }

  .services {
    display: grid;
  }

  .button {
    width: 100%;
  }
}

.workshop-visual {
  max-width: 760px;
  margin: 34px auto 0;
}

.workshop-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 22px 50px rgba(22, 52, 95, 0.12);
}
