:root {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f6f2ea;
  color: #1d1d1b;
  line-height: 1.65;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #f6f2ea 0%, #e8e2d7 100%);
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

/* R2 Fitness Ventures – korporativer Schriftzug */
.brand {
  font-family: "Helvetica Neue", Helvetica, Arial, Inter, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #1d1d1b;
  text-decoration: none;
  line-height: 1;
}

.brand:hover { color: #000; }

.nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: #4f4f4f;
}

.nav a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav a:hover { color: #000; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: center;
  padding: 3rem 0 5rem;
}

.hero-title {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, Inter, sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.01em;
  color: #1d1d1b;
  line-height: 1.12;
}

.hero-text {
  margin: 1.5rem 0 0;
  max-width: 40rem;
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  color: #4f4f4f;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid #1d1d1b;
  background: transparent;
  color: #1d1d1b;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.button:hover {
  background: #1d1d1b;
  color: #f6f2ea;
}

.hero-image {
  position: relative;
  min-height: 320px;
  background: #fff;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid #ddd4c8;
  box-shadow: 0 28px 60px rgba(29, 29, 27, 0.08);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card {
  background: #fff;
  border: 1px solid #e4dad0;
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(29, 29, 27, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(29, 29, 27, 0.15);
}

.card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.card:hover img,
.card:focus-within img { transform: scale(1.02); }

.section {
  padding: 3rem 0;
  border-top: 1px solid #ddd4c8;
}

.section-title {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.85rem;
  color: #9f8f77;
}

.section-heading {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, Inter, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 0.01em;
  color: #1d1d1b;
  line-height: 1.15;
}

.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 2rem;
}

.card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.card-title {
  margin: 0;
  font-size: 1.25rem;
  color: #1d1d1b;
}

.card-text {
  margin: 0;
  color: #58544d;
  font-size: 1rem;
  line-height: 1.8;
  flex: 1;
}

.footer {
  padding-top: 3rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid #ddd4c8;
  color: #4f4f4f;
  font-size: 0.95rem;
}

.footer a {
  color: #1d1d1b;
  text-decoration: none;
  opacity: 0.9;
}

.footer a:hover { opacity: 1; }

.footer-legal {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* Rechtsseiten / Textseiten */
.legal {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e4dad0;
  border-radius: 1.75rem;
  padding: clamp(1.5rem, 4vw, 3.25rem);
  box-shadow: 0 18px 40px rgba(29, 29, 27, 0.06);
}

.legal h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
}

.legal h2 {
  margin: 2.5rem 0 0.75rem;
  font-size: 1.35rem;
}

.legal h3 {
  margin: 1.75rem 0 0.5rem;
  font-size: 1.1rem;
}

.legal p,
.legal li {
  color: #44423d;
  font-size: 1rem;
  line-height: 1.85;
}

.legal a { color: #1d1d1b; }

.legal .muted { color: #9f8f77; font-size: 0.9rem; }

.legal .todo {
  background: #faf4e6;
  border: 1px dashed #cbb98f;
  border-radius: 0.5rem;
  padding: 0.1rem 0.4rem;
  color: #8a7333;
  font-size: 0.95rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 2rem;
  color: #4f4f4f;
  text-decoration: none;
  font-size: 0.95rem;
}

.back-link:hover { color: #000; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { min-height: 320px; }
}

@media (max-width: 768px) {
  .page { padding: 2rem 1rem 3rem; }
  .topbar { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .nav { width: 100%; justify-content: flex-start; gap: 1rem; }
  .hero { gap: 1.5rem; }
  .section-heading { font-size: clamp(1.9rem, 6vw, 2.75rem); }
  .hero-text { max-width: 100%; }
}

@media (max-width: 620px) {
  .page { padding: 1.25rem; }
  .hero-title { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .card img { aspect-ratio: auto; height: 200px; }
}
