:root {
  --rot: #b31217;
  --weinrot: #8e1f28;
  --beige: #e2cf97;
  --dunkel: #222222;
  --hell: #f8f6f1;
  --weiss: #ffffff;
  --grau: #666666;
  --rand: #e6e0d4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dunkel);
  background: var(--hell);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--weinrot);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--weiss);
  border-bottom: 1px solid var(--rand);
  position: sticky;
  top: 0;
  z-index: 50;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 130px;
  height: auto;
}

.brand-text strong {
  display: block;
  font-size: 22px;
  color: var(--weinrot);
}

.brand-text span {
  display: block;
  font-size: 14px;
  color: var(--grau);
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--dunkel);
  font-weight: bold;
}

.hero {
  background: linear-gradient(135deg, var(--hell), #fffdf8);
  padding: 60px 0 30px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 34px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: var(--beige);
  color: var(--weinrot);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: bold;
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: 44px;
  line-height: 1.15;
  color: var(--weinrot);
}

.hero p {
  margin: 0 0 20px;
  font-size: 18px;
  color: #333;
}

.buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--rot);
  color: var(--weiss);
}

.btn-primary:hover {
  background: var(--weinrot);
  text-decoration: none;
}

.btn-secondary {
  background: var(--weiss);
  color: var(--weinrot);
  border: 2px solid var(--weinrot);
}

.btn-secondary:hover {
  text-decoration: none;
  background: #faf7ef;
}

.hero-image {
  background: var(--weiss);
  border: 1px solid var(--rand);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 70px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 14px;
  color: var(--weinrot);
  font-size: 34px;
}

.section-subtitle {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
  color: var(--grau);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--weiss);
  border: 1px solid var(--rand);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.card h3 {
  margin-top: 0;
  color: var(--weinrot);
}

.highlight {
  background: var(--weiss);
  border-top: 1px solid var(--rand);
  border-bottom: 1px solid var(--rand);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.box {
  background: var(--weiss);
  border: 1px solid var(--rand);
  border-radius: 14px;
  padding: 26px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.checklist li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.checklist li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--rot);
  font-size: 22px;
  line-height: 1;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.gallery img {
  border-radius: 14px;
  border: 1px solid var(--rand);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-card {
  background: var(--weiss);
  border: 1px solid var(--rand);
  border-radius: 14px;
  padding: 26px;
}

.contact-card h3 {
  margin-top: 0;
  color: var(--weinrot);
}

.footer {
  background: var(--weinrot);
  color: var(--weiss);
  padding: 30px 0;
  margin-top: 20px;
}

.footer a {
  color: var(--weiss);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.legal {
  max-width: 900px;
  margin: 50px auto;
  background: var(--weiss);
  border: 1px solid var(--rand);
  border-radius: 14px;
  padding: 30px;
}

.legal h1,
.legal h2 {
  color: var(--weinrot);
}

.notice {
  background: #fff7df;
  border: 1px solid #ead897;
  padding: 14px 16px;
  border-radius: 10px;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .gallery,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 34px;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .brand {
    align-items: flex-start;
  }

  .brand img {
    width: 110px;
  }

  .hero {
    padding-top: 35px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .section-title {
    font-size: 28px;
  }
}