:root {
  --bg: #f6f1eb;
  --cream: #fffaf4;
  --text: #2f2823;
  --muted: #6f625a;
  --gold: #a9744f;
  --gold-dark: #8f5f3f;
  --gold-light: #d6b08b;
  --line: rgba(169, 116, 79, 0.26);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
}

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

/* HERO */

.hero-section {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 20px 48px;
  background:
    radial-gradient(circle at top, rgba(214, 176, 139, 0.18), transparent 38%),
    linear-gradient(180deg, #f8f3ed 0%, #fffaf4 100%);
}

.hero-card {
  width: 100%;
  max-width: 980px;
  text-align: center;
  background: rgba(255, 250, 244, 0.86);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 48px 42px 32px;
  box-shadow: 0 28px 90px rgba(91, 60, 38, 0.09);
}

.logo {
  width: 95px;
  height: auto;
  margin: 0 auto 18px;
}

.eyebrow,
.small-label {
  font-family: Arial, sans-serif;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 14px;
}

h1 {
  max-width: 820px;
  margin: 0 auto 18px;
  color: var(--gold);
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.9;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}

.claim {
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--gold-dark);
  font-size: 0.86rem;
  margin-bottom: 24px;
}

.hero-text {
  max-width: 680px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.22rem);
  line-height: 1.75;
}

.hero-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center 70%;
  border-radius: 22px;
  margin-top: 34px;
  background: #d8c8bb;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
}

.btn-secondary {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-light {
  background: #fff;
  color: var(--gold);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(169, 116, 79, 0.22);
}

/* GENERAL */

section {
  padding: 96px 20px;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

h2 {
  color: var(--gold);
  font-size: clamp(2.25rem, 4.6vw, 4.1rem);
  line-height: 1.08;
  font-weight: 400;
  margin-bottom: 28px;
}

h3 {
  color: var(--gold);
  font-size: 1.55rem;
  font-weight: 400;
}

p {
  font-size: 1.08rem;
}

/* INTRO */

.intro-section {
  background: #f1ebe4;
  padding-top: 86px;
  padding-bottom: 86px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: stretch;
}

.text-block,
.info-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-block p {
  max-width: 680px;
  color: var(--muted);
  margin-bottom: 18px;
}

.info-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 46px;
  box-shadow: 0 18px 50px rgba(91, 60, 38, 0.06);
}

.info-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

/* OFFER */

.offer {
  background: var(--cream);
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  margin-top: 48px;
}

.offer-item {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.offer-item span {
  display: block;
  color: var(--gold-light);
  font-size: 2rem;
  margin-bottom: 10px;
}

.offer-item h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.offer-item p {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

/* TRAINING */

.training-section {
  background:
    linear-gradient(rgba(246, 241, 235, 0.78), rgba(246, 241, 235, 0.78)),
    url("/assets/bild-2.jpg") center/cover no-repeat;
}

.training-box {
  max-width: 900px;
  background: rgba(255, 250, 244, 0.86);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px 58px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(91, 60, 38, 0.07);
}

.training-box h2 {
  margin-bottom: 22px;
}

.training-box p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* PRICES */

.prices-section {
  background: var(--cream);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 46px;
}

.price-card {
  min-height: 185px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px 22px;
  box-shadow: 0 14px 38px rgba(91, 60, 38, 0.04);
}

.price-card h3 {
  font-size: 1.25rem;
  line-height: 1.15;
}

.price-card strong {
  display: block;
  color: var(--gold);
  font-size: 1.18rem;
  line-height: 1.25;
  margin: 14px 0;
}

.price-card p {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* FAQ */

.faq-section {
  background: #f6f1eb;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 30px 0;
}

.faq-item h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.faq-item p {
  max-width: 760px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 1.02rem;
  line-height: 1.75;
}

/* CTA */

.cta {
  padding: 90px 20px;
  background:
    linear-gradient(135deg, rgba(143, 95, 63, 0.96), rgba(208, 164, 125, 0.96));
  text-align: center;
  color: #fff;
}

.cta h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.cta p {
  max-width: 720px;
  margin: 0 auto 28px;
  color: #fff;
  font-size: 1.18rem;
}

/* FOOTER */

footer {
  background: #efe5dc;
  padding: 42px 20px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.footer-logo {
  width: 125px;
  max-width: 100%;
  margin-bottom: 10px;
}

.footer-brand h3 {
  margin-bottom: 6px;
}

.footer-brand p {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--gold);
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
}

.footer-links a:hover {
  opacity: 0.7;
}

/* LEGAL PAGES */

.legal-header {
  text-align: center;
  padding: 50px 20px 0;
}

.legal-logo {
  width: 140px;
  max-width: 45%;
  height: auto;
  display: block;
  margin: 0 auto 18px;
}

.back-home {
  color: var(--gold);
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
}

.back-home:hover {
  opacity: 0.7;
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 20px 100px;
}

.legal-page h1 {
  color: var(--gold);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  margin-bottom: 34px;
}

.legal-page h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-top: 44px;
  margin-bottom: 18px;
}

.legal-page h3 {
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 1.02rem;
}

.legal-page p {
  margin-bottom: 18px;
}

.legal-page ul {
  margin: 0 0 24px 24px;
}

.legal-page a {
  color: var(--gold);
}

/* TABLET */

@media (max-width: 1020px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */

@media (max-width: 820px) {
  .hero-section {
    padding: 30px 14px;
  }

  .hero-card {
    padding: 34px 20px 24px;
    border-radius: 24px;
  }

  .logo {
    width: 82px;
  }

  h1 {
    font-size: clamp(2.6rem, 14vw, 4.4rem);
    letter-spacing: 0.02em;
  }

  .claim {
    letter-spacing: 0.16em;
    font-size: 0.78rem;
  }

  .hero-text {
    font-size: 1.03rem;
  }

  .hero-image {
    height: 190px;
    margin-top: 28px;
  }

  .buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  section {
    padding: 72px 20px;
  }

  .intro-grid,
  .offer-list {
    grid-template-columns: 1fr;
  }

  .info-card {
    padding: 28px;
  }

  .training-box {
    padding: 34px 24px;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

/* UPDATE v5 - Kundenkommentare PDF */

.logo {
  width: 130px;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 0.95;
}

/* Alle Inhaltsbereiche zentrieren */
.intro-section,
.offer,
.training-section,
.prices-section,
.faq-section {
  text-align: center;
}

.text-block p,
.info-card p,
.faq-item p {
  margin-left: auto;
  margin-right: auto;
}

/* Kasten bei "Warum Pilates?" entfernen */
.info-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

/* Angebot zentriert */
.offer-item {
  text-align: center;
}

/* Preise zentriert und Preis in einer Zeile */
.price-card {
  text-align: center;
}

.price-card strong {
  white-space: nowrap;
  font-size: 1.1rem;
}

.price-card p {
  margin-top: 8px;
}

/* FAQ komplett mittig */
.faq-item {
  text-align: center;
}

.faq-item p {
  max-width: 760px;
}

/* Footer Text unter Logo entfernen/ausblenden */
.footer-brand p {
  display: none;
}