:root {
  --bg: #FBF6F1;
  --bg-soft: #F4ECE4;
  --ink: #4A3B3F;
  --ink-soft: #7A6268;
  --rose: #F2B5D4;
  --rose-soft: #F7D6E0;
  --rose-deep: #D98AAB;
  --teal: #7BDFF2;
  --mint: #B2F7EF;
  --leaf: #8FB8B0;
  --stroke: #C9A8B0;
  --max-width: 1280px;
}

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

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

/* ── NAVIGATION ──────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(30,20,40,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo em {
  font-style: italic;
  color: #F2B5D4;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.03em;
  transition: color .2s;
}

.nav-links a:hover { color: #F2B5D4; }

.nav-links a.active { color: #fff; }

.nav-cta {
  background: var(--rose-deep) !important;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px !important;
  transition: opacity .2s !important;
}
.nav-cta:hover { opacity: 0.85; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #fff;
}

/* ── PAGE HERO (DUNKEL) ──────────────────────────────── */

.page-hero {
  background: #1E1428;
  padding: 80px 40px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 15% 50%, rgba(217,138,171,0.16), transparent 55%),
    radial-gradient(ellipse 500px 400px at 88% 30%, rgba(123,223,242,0.1), transparent 55%);
  pointer-events: none;
}
.page-hero > * { position: relative; }
.page-hero .eyebrow { color: rgba(242,181,212,0.7); }
.page-hero h1 { color: #fff; }
.page-hero h1 em { color: #F2B5D4; }
.page-hero p { color: rgba(255,255,255,0.55); }
.page-hero .divider { background: rgba(255,255,255,0.2); }
.page-hero .divider::before,
.page-hero .divider::after { background: #F2B5D4; }

/* Homepage hero: Text links, Leber rechts */
.hero-split {
  background: #1E1428;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.hero-split::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 10% 60%, rgba(217,138,171,0.18), transparent 55%),
    radial-gradient(ellipse 600px 400px at 92% 20%, rgba(123,223,242,0.12), transparent 55%);
  pointer-events: none;
}
.hero-split-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-split { padding: 60px 30px; }
  .hero-split-inner { grid-template-columns: 1fr; }
  .hero-split model-viewer { height: 300px; }
}

/* ── PAGE WRAPPER ────────────────────────────────────── */

.page-bg {
  background:
    radial-gradient(ellipse 600px 400px at 15% 10%, rgba(178,247,239,0.22), transparent 60%),
    radial-gradient(ellipse 700px 500px at 90% 95%, rgba(242,181,212,0.2), transparent 65%),
    radial-gradient(ellipse 500px 300px at 80% 15%, rgba(247,214,224,0.25), transparent 60%),
    var(--bg);
  min-height: 100vh;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── EYEBROW / SECTION LABEL ─────────────────────────── */

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ── HEADINGS ────────────────────────────────────────── */

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: var(--ink);
}

h1 { font-size: clamp(40px, 5.5vw, 72px); line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.1; letter-spacing: -0.01em; }
h3 { font-size: 28px; line-height: 1.2; }

h1 em, h2 em { font-style: italic; color: var(--rose-deep); font-weight: 400; }

/* ── DIVIDER ─────────────────────────────────────────── */

.divider {
  width: 80px;
  height: 1px;
  background: var(--stroke);
  position: relative;
  margin: 24px auto;
}
.divider::before, .divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose-deep);
  transform: translateY(-50%);
}
.divider::before { left: -14px; }
.divider::after { right: -14px; }

/* ── BUTTONS ─────────────────────────────────────────── */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all .25s;
  border: none;
}

.btn-primary {
  background: var(--rose-deep);
  color: #fff;
  box-shadow: 0 4px 20px rgba(217,138,171,0.35);
}
.btn-primary:hover {
  background: #c97a9c;
  box-shadow: 0 6px 28px rgba(217,138,171,0.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: #1E1428;
  color: var(--rose-deep);
  border: 1.5px solid var(--rose-deep);
}
.btn-outline:hover {
  background: var(--rose-soft);
}

.btn-teal {
  background: var(--teal);
  color: var(--ink);
}
.btn-teal:hover { opacity: 0.85; }

/* ── CARDS ───────────────────────────────────────────── */

.card {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,176,0.25);
  border-radius: 20px;
  padding: 40px 34px 36px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px -18px rgba(217,138,171,0.35);
  border-color: rgba(217,138,171,0.35);
}

.card-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.card p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.card-divider {
  width: 28px;
  height: 1px;
  background: var(--stroke);
  margin: 14px 0;
  opacity: .5;
}

.keyword { color: var(--rose-deep); font-weight: 500; }

/* ── GRID ────────────────────────────────────────────── */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* ── STATS STRIP ─────────────────────────────────────── */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 48px 40px;
  background: linear-gradient(135deg, rgba(178,247,239,0.32), rgba(247,214,224,0.38));
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.stat { text-align: center; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-num em {
  font-style: italic;
  font-size: 30px;
  color: var(--rose-deep);
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 10px;
  font-weight: 500;
}

/* ── SECTION ─────────────────────────────────────────── */

section { padding: 80px 0; }

.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header .eyebrow { margin-bottom: 14px; }
.section-header p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  margin-top: 14px;
}

/* ── HERO ────────────────────────────────────────────── */

.hero-section {
  padding: 90px 0 70px;
  text-align: center;
}

.hero-section h1 { margin-bottom: 20px; }

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.55;
}

/* ── LEAD MAGNET SECTION ─────────────────────────────── */

.guide-banner {
  background: linear-gradient(135deg, rgba(217,138,171,0.12), rgba(123,223,242,0.15));
  border: 1px solid rgba(217,138,171,0.2);
  border-radius: 24px;
  padding: 56px 60px;
  text-align: center;
}

.guide-banner h2 { margin-bottom: 14px; }

.guide-banner p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 32px;
}

/* ── FORM ────────────────────────────────────────────── */

.form-row {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}

.form-input {
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid rgba(201,168,176,0.4);
  border-radius: 100px;
  background: rgba(255,255,255,0.7);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
}
.form-input:focus { border-color: var(--rose-deep); }
.form-input::placeholder { color: var(--ink-soft); }

/* ── FOOTER ──────────────────────────────────────────── */

footer {
  padding: 60px 40px;
  border-top: 1px solid rgba(201,168,176,0.22);
  text-align: center;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  display: block;
  margin-bottom: 24px;
}
.footer-logo em { font-style: italic; color: var(--rose-deep); }

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.footer-links a {
  text-decoration: none;
  font-size: 13px;
  color: var(--ink-soft);
  transition: color .2s;
}
.footer-links a:hover { color: var(--rose-deep); }

.footer-copy {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
}

.footer-disclaimer {
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  opacity: 0.7;
}

/* ── PROSE ───────────────────────────────────────────── */

.prose {
  max-width: 720px;
  margin: 0 auto;
}
.prose p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
}
.prose p:last-child { margin-bottom: 0; }

/* ── PAGE HEADER ─────────────────────────────────────── */

.page-header {
  padding: 80px 0 60px;
  text-align: center;
}
.page-header .eyebrow { margin-bottom: 18px; }
.page-header h1 { margin-bottom: 20px; }
.page-header .subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ── PRODUCT CARD ────────────────────────────────────── */

.product-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,176,0.22);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -20px rgba(217,138,171,0.3);
}
.product-card-body { padding: 28px 28px 24px; }
.product-card-tag {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
  margin-bottom: 12px;
}
.product-card h3 { font-size: 24px; margin-bottom: 10px; }
.product-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 20px; }
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 20px;
}
.product-price span { font-size: 16px; color: var(--ink-soft); }

.product-card-header {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

/* ── FAQ ─────────────────────────────────────────────── */

.faq-item {
  border-bottom: 1px solid rgba(201,168,176,0.22);
  padding: 24px 0;
}
.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
}
.faq-a {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ── HIGHLIGHT BOX ───────────────────────────────────── */

.highlight {
  background: linear-gradient(135deg, rgba(178,247,239,0.25), rgba(247,214,224,0.3));
  border-radius: 20px;
  padding: 40px 48px;
  text-align: center;
}
.highlight blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 26px;
  color: var(--ink);
  line-height: 1.4;
  max-width: 680px;
  margin: 0 auto;
}
.highlight blockquote em { color: var(--rose-deep); }

/* ── ABOUT STRIP ─────────────────────────────────────── */

.about-strip {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 20px;
  filter: saturate(0.9);
}
.about-content .eyebrow { margin-bottom: 16px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

/* ── TIMELINE ────────────────────────────────────────── */

.timeline {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  padding-left: 36px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--stroke);
}
.timeline-item {
  position: relative;
  margin-bottom: 36px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose-deep);
}
.timeline-date {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
  margin-bottom: 6px;
}
.timeline-item h3 { font-size: 22px; margin-bottom: 8px; }
.timeline-item p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; }

/* ── BENEFIT LIST ────────────────────────────────────── */

.benefit-list {
  list-style: none;
  max-width: 560px;
  margin: 0 auto 36px;
  text-align: left;
}
.benefit-list li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid rgba(201,168,176,0.15);
}
.benefit-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--rose-deep);
  font-size: 10px;
  top: 13px;
}

/* ── RESPONSIVE ──────────────────────────────────────── */

@media (max-width: 900px) {
  .nav-inner { padding: 0 24px; }
  .container { padding: 0 24px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .about-strip { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { max-width: 320px; }
  .guide-banner { padding: 40px 28px; }
  footer { padding: 40px 24px; }
  .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 64px; left: 0; right: 0; background: #1E1428; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 16px 0; }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 24px; }
  .nav-toggle { display: block; }
  .nav { position: relative; }
}

@media (max-width: 560px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  .form-row { flex-direction: column; }
  .hero-section { padding: 48px 0 40px; text-align: center; }
  .hero-subtitle { font-size: 16px; }
  model-viewer { height: 280px; }
  .stat-num { font-size: 36px; }
  .product-card-body { padding: 20px; }
  .highlight blockquote { font-size: 20px; }
  .timeline-item { padding: 24px 20px; }
  .about-strip { text-align: center; }
  .about-photo { max-width: 240px; margin: 0 auto; }
  div[style*="padding: 80px 40px"] { padding: 60px 20px 40px !important; }
}
