/* SPINNERSTOPP – statischer Nachbau */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap');

:root {
  --accent: #FFD22C;
  --dark: #222;
  --text: #54595F;
  --muted: #7A7A7A;
  --white: #ffffff;
  --maxw: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #f0f0f0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
}

.brand img { height: 56px; width: auto; }

.nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  font-weight: 600;
  text-transform: none;
  font-size: 17px;
  color: var(--dark);
  padding: 6px 0;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .25s ease;
}

.nav a:hover::after,
.nav a.active::after { width: 100%; }

.nav a.active { color: var(--dark); }

/* Mobile-Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
}

/* ---------- Hero / Sections ---------- */
.section { padding: 90px 0; }
.section--tight { padding: 60px 0; }

.eyebrow {
  font-size: 29px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--accent);
  margin: 0 0 15px;
}

.headline {
  font-size: 50px;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--dark);
  margin: 0 0 20px;
  font-weight: 500;
}

.lead {
  font-size: 18px;
  max-width: 760px;
}

.split {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
.split > * { flex: 1 1 360px; min-width: 280px; }

.split .media img {
  margin: 0 auto;
  max-width: 100%;
  border-radius: 12px;
}
.split .media.media--round img { border-radius: 50%; }

.center { text-align: center; }

/* ---------- Preise-Tabelle ---------- */
.price-table {
  width: 100%;
  max-width: 640px;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 18px;
}
.price-table th {
  background: var(--accent);
  color: var(--dark);
  text-align: left;
  padding: 14px 18px;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: .5px;
}
.price-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #eee;
}
.price-table td:last-child {
  font-weight: 700;
  white-space: nowrap;
  text-align: right;
}

.info-block { margin-bottom: 28px; }
.info-block h3 {
  color: var(--dark);
  text-transform: uppercase;
  font-size: 22px;
  margin: 0 0 8px;
}

/* ---------- Footer / Kontakt ---------- */
.contact-bar {
  background: var(--accent);
  color: var(--dark);
  text-align: center;
  padding: 50px 20px;
}
.contact-bar .label {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 15px;
  margin-bottom: 6px;
}
.contact-bar .phone {
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 6px;
}
.contact-bar a { color: var(--dark); }
.contact-bar .email { font-size: 20px; font-weight: 500; }

.site-footer {
  background: #1c1c1c;
  color: #cfcfcf;
  text-align: center;
  padding: 28px 20px;
  font-size: 14px;
}
.site-footer a { color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .section { padding: 60px 0; }
  .headline { font-size: 40px; }
  .eyebrow { font-size: 22px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid #eee;
    display: none;
  }
  .nav.open { display: block; }
  .nav ul {
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
  }
  .nav li { text-align: center; }
  .nav a { display: block; padding: 14px; }
  .headline { font-size: 32px; }
  .contact-bar .phone { font-size: 28px; }
}
