/* baron online marketing – shared styles */
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url("/fonts/source-sans-3-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url("/fonts/source-sans-3-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02AF, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --purpur: #993399;
  --purpur-dark: #7a2879;
  --purpur-tint: #f7eef7;
  --ink: #26333a;
  --ink-soft: #4c5b63;
  --bg: #ffffff;
  --bg-alt: #f7f7f9;
  --line: #e7e3ea;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(38, 51, 58, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
}

h1, h2, h3 { font-weight: 800; }

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

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 16px;
}
.logo img { height: 40px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  color: var(--ink); text-decoration: none; font-size: 15.5px; font-weight: 500;
}
.site-nav a:hover { color: var(--purpur); }
.nav-toggle { display: none; }

.btn {
  display: inline-block;
  background: var(--purpur);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: var(--purpur-dark); transform: translateY(-1px); }
.btn.btn-lg { padding: 14px 30px; font-size: 16px; }

/* Hero */
.hero { background: linear-gradient(180deg, var(--purpur-tint) 0%, #fff 100%); }
.hero .wrap { padding: 88px 24px 72px; text-align: center; }
.hero h1 {
  font-size: clamp(1.9rem, 4.2vw, 2.8rem);
  line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 18px;
}
.hero h1 .accent { color: var(--purpur); }
.hero p.lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--ink-soft); max-width: 640px; margin: 0 auto 28px;
}

/* Sections */
section { padding: 72px 0; }
section.alt { background: var(--bg-alt); }
section.tight { padding: 44px 0; }
section.tight .section-head { margin-bottom: 20px; }
section.tight .prose p:last-child { margin-bottom: 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head h2 {
  font-size: clamp(1.35rem, 2.9vw, 1.8rem);
  line-height: 1.22; letter-spacing: -0.015em; margin-bottom: 12px;
}
.section-head p { color: var(--ink-soft); font-size: 1.02rem; }

/* Pain / benefit lists */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.checklist { list-style: none; }
.checklist li {
  padding: 8px 0 8px 36px; position: relative; color: var(--ink-soft);
}
.checklist li::before {
  position: absolute; left: 0; top: 11px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--purpur-tint);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; line-height: 1;
}
.checklist.pains li::before { content: "✕"; color: #c0392b; }
.checklist.gains li::before { content: "✓"; color: var(--purpur); }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow);
}
.card .num {
  display: inline-block; font-size: 0.95rem; font-weight: 700; color: var(--purpur);
  background: var(--purpur-tint); border-radius: 999px; padding: 4px 14px; margin-bottom: 14px;
}
.card h3 { font-size: 1.08rem; margin-bottom: 8px; letter-spacing: -0.01em; }
.card p { color: var(--ink-soft); font-size: 0.95rem; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stat h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--purpur); }
.stat p { color: var(--ink-soft); font-size: 0.95rem; }

/* Testimonials */
.testimonials { display: grid; gap: 28px; }
.testimonial {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow);
  display: grid; grid-template-columns: 96px 1fr; gap: 28px; align-items: start;
}
.testimonial img {
  width: 96px; height: 96px; border-radius: 50%; object-fit: cover;
}
.testimonial blockquote { color: var(--ink-soft); font-size: 1rem; }
.testimonial cite {
  display: block; margin-top: 16px; font-style: normal; font-weight: 700;
  color: var(--ink); font-size: 0.95rem;
}
.testimonial cite span { font-weight: 500; color: var(--ink-soft); }

/* CTA band */
.cta-band { background: var(--purpur); color: #fff; text-align: center; }
.cta-band h2 { font-size: clamp(1.3rem, 2.7vw, 1.7rem); margin-bottom: 12px; letter-spacing: -0.015em; }
.cta-band p { opacity: 0.9; max-width: 560px; margin: 0 auto 28px; }
.cta-band .btn { background: #fff; color: var(--purpur) !important; }
.cta-band .btn:hover { background: var(--purpur-tint); }

/* Prose pages (Über mich, legal) */
.prose { max-width: 760px; margin: 0 auto; }
.prose h1 { font-size: clamp(1.7rem, 3.6vw, 2.2rem); letter-spacing: -0.02em; margin-bottom: 22px; }
.prose h2 { font-size: 1.35rem; margin: 36px 0 12px; letter-spacing: -0.015em; }
.prose p { margin-bottom: 16px; color: var(--ink-soft); }
.prose strong { color: var(--ink); }
.prose ul, .prose ol {
  list-style-position: inside;
  padding-left: 0;
  margin: 0 0 16px;
}
.prose li { color: var(--ink-soft); margin-bottom: 6px; }
.prose a { color: var(--purpur); }
.prose a:hover { color: var(--purpur-dark); }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-list details {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; margin-bottom: 14px; box-shadow: var(--shadow);
}
.faq-list summary {
  cursor: pointer; padding: 20px 24px; font-weight: 600; font-size: 1.02rem;
  list-style: none; position: relative; padding-right: 52px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
  color: var(--purpur); font-size: 1.4rem; font-weight: 400;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list .faq-body { padding: 0 24px 20px; color: var(--ink-soft); }
.faq-list .faq-body p { margin-bottom: 10px; }

/* Footer */
.site-footer {
  background: var(--ink); color: #cfd8dc; padding: 40px 0; font-size: 0.95rem;
}
.site-footer .wrap {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-links { display: flex; gap: 20px; }

/* Responsive */
@media (max-width: 820px) {
  .two-col, .cards, .stats { grid-template-columns: 1fr; }
  .two-col { gap: 0; }
  .hero .wrap { padding: 56px 24px 44px; }
  .testimonial { grid-template-columns: 1fr; }
  .testimonial img { margin-bottom: 4px; }
  .site-nav { display: none; }
  .site-nav.open {
    display: flex; flex-direction: column; position: absolute;
    top: 72px; left: 0; right: 0; background: #fff;
    padding: 20px 24px; border-bottom: 1px solid var(--line); gap: 18px;
  }
  .nav-toggle {
    display: block; background: none; border: none; font-size: 1.6rem;
    color: var(--ink); cursor: pointer;
  }
  section { padding: 56px 0; }
}
