/* ============================================================
   SEI SCHMERZFREI — DENITSA STRACKE
   Gemeinsames Stylesheet für alle Seiten
   ============================================================ */

:root {
  --bg: #f5f0e8;
  --bg-warm: #ebe2d2;
  --cream: #faf6ef;
  --ink: #1a1612;
  --ink-soft: #3d352b;
  --muted: #7a6f5f;
  --line: #d4c8b3;
  --accent: #8b3a1f;          /* terracotta */
  --accent-warm: #c47a3f;     /* amber */
  --sage: #6b7a5a;
  --gold: #b8893d;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; }

/* ============ NAVIGATION ============ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(0px);
}

nav.scrolled {
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  padding: 16px 48px;
  border-bottom: 1px solid var(--line);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}

.nav-logo span { color: var(--accent); }

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

.nav-links > li { position: relative; }

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links > li > a:not(.nav-cta):hover::after { width: 100%; }
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--accent); }
.nav-links > li > a.active::after { width: 100%; background: var(--accent); }

.nav-cta {
  background: var(--ink);
  color: var(--cream) !important;
  padding: 12px 24px;
  border-radius: 999px;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--accent) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

.nav-review {
  background: transparent;
  color: var(--accent) !important;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--accent);
  transition: all 0.3s !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-review:hover {
  background: var(--accent);
  color: var(--cream) !important;
  transform: translateY(-1px);
}

.nav-review::after { display: none !important; }

/* Dropdown */
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 0;
  list-style: none;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  margin-top: 12px;
}

.dropdown::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0; right: 0;
  height: 20px;
}

.dropdown li a {
  display: block;
  padding: 10px 24px;
  font-size: 14px;
  transition: all 0.2s;
}

.dropdown li a:hover {
  background: var(--bg-warm);
  color: var(--accent);
  padding-left: 28px;
}

.dropdown li a::after { display: none; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--ink);
  z-index: 101;
}

/* ============ SUBPAGE HERO ============ */
.subpage-hero {
  position: relative;
  padding: 160px 48px 100px;
  background: var(--cream);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.subpage-hero-bg {
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  z-index: 0;
}

.subpage-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.subpage-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 30%);
}

.subpage-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 32px;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--accent); }

.breadcrumb-sep {
  width: 24px;
  height: 1px;
  background: var(--line);
}

.breadcrumb-current { color: var(--accent); }

.subpage-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 500;
}

.subpage-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.subpage-title {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 900px;
}

.subpage-title em {
  font-style: italic;
  color: var(--accent);
}

.subpage-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 580px;
}

/* ============ BUTTONS ============ */
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  padding: 18px 36px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 58, 31, 0.3);
}

.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-secondary {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--ink);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover { color: var(--accent); border-color: var(--accent); }

.btn-light {
  background: var(--cream);
  color: var(--ink);
  padding: 18px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.btn-light:hover { background: var(--accent-warm); color: var(--ink); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  padding: 18px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.btn-outline:hover { border-color: var(--accent-warm); color: var(--accent-warm); }

/* ============ SECTION BASE ============ */
section {
  padding: 120px 48px;
  position: relative;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 500;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  max-width: 900px;
}

.section-title em { font-style: italic; color: var(--accent); }

/* ============ CONTENT PROSE (for long text pages) ============ */
.content-section {
  padding: 100px 48px;
  background: var(--cream);
}

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

.content-prose {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.content-prose p {
  margin-bottom: 24px;
}

.content-prose p strong {
  color: var(--ink);
  font-weight: 500;
}

.content-prose h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 60px 0 24px;
}

.content-prose h2 em { font-style: italic; color: var(--accent); }

.content-prose h2:first-child { margin-top: 0; }

.content-prose h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
  color: var(--accent);
  margin: 40px 0 16px;
}

.content-prose ul {
  list-style: none;
  margin: 24px 0;
}

.content-prose ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.7;
}

.content-prose ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 500;
}

.content-prose ol {
  margin: 24px 0;
  padding-left: 0;
  counter-reset: list;
  list-style: none;
}

.content-prose ol li {
  position: relative;
  padding-left: 48px;
  margin-bottom: 16px;
  line-height: 1.7;
  counter-increment: list;
}

.content-prose ol li::before {
  content: counter(list, decimal-leading-zero);
  position: absolute;
  left: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--accent);
  font-weight: 500;
}

.content-prose a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(139, 58, 31, 0.3);
  transition: border-color 0.2s;
}

.content-prose a:hover { border-color: var(--accent); }

.content-prose blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: var(--ink);
  padding: 32px 40px;
  margin: 40px 0;
  background: var(--bg);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
}

/* ============ PRICE BOX ============ */
.price-box {
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  padding: 32px 36px;
  border-radius: 4px;
  margin: 48px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.price-box-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.price-box-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
}

.price-box-title em {
  font-style: italic;
  color: var(--accent);
}

.price-box-duration {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

.price-box-price {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}

.price-box-price em { font-style: italic; }

.price-multiple {
  display: grid;
  gap: 16px;
  margin: 48px 0;
}

.price-multiple .price-box {
  margin: 0;
}

/* ============ FEATURE LIST ============ */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.feature-card {
  background: var(--bg);
  padding: 32px 28px;
  border-radius: 4px;
  border: 1px solid var(--line);
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
}

.feature-card h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--ink);
}

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

/* ============ INFO NOTE ============ */
.info-note {
  background: var(--bg-warm);
  padding: 20px 24px;
  border-radius: 4px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 32px 0;
}

.info-note-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  font-weight: 500;
}

.info-note-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============ CTA SECTION ============ */
.cta-section {
  background: var(--ink);
  color: var(--cream);
  padding: 100px 48px;
  text-align: center;
}

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

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-warm);
  margin-bottom: 24px;
  font-weight: 500;
  justify-content: center;
}

.cta-eyebrow::before, .cta-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent-warm);
}

.cta-section h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  color: var(--cream);
}

.cta-section h2 em { font-style: italic; color: var(--accent-warm); }

.cta-section p {
  font-size: 17px;
  color: rgba(250, 246, 239, 0.8);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-phone {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--accent-warm);
  text-decoration: none;
  display: inline-block;
  margin-top: 16px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.cta-phone:hover { border-color: var(--accent-warm); }

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

/* ============ FOOTER ============ */
footer {
  background: var(--ink);
  color: rgba(250, 246, 239, 0.7);
  padding: 80px 48px 32px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 16px;
  text-decoration: none;
  display: inline-block;
}

.footer-brand span { color: var(--accent-warm); }

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 24px;
}

footer h4 {
  color: var(--cream);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  font-weight: 500;
}

footer ul { list-style: none; }

footer li { padding: 6px 0; }

footer li a, footer li {
  color: rgba(250, 246, 239, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

footer li a:hover { color: var(--accent-warm); }

.footer-bottom {
  max-width: 1400px;
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(250, 246, 239, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(250, 246, 239, 0.5);
  text-decoration: none;
}

.footer-bottom-links a:hover { color: var(--accent-warm); }

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scroll {
  to { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ MOBILE ============ */
@media (max-width: 968px) {
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    height: 100vh;
    align-items: flex-start;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 22px; }
  .menu-toggle { display: block; }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 12px 0 0 0;
    background: transparent;
    min-width: auto;
  }
  .dropdown li a { padding: 8px 0; font-size: 16px; color: var(--muted); }
  .dropdown li a:hover { background: transparent; padding-left: 8px; }

  section { padding: 80px 24px; }
  .subpage-hero { padding: 120px 24px 60px; }
  .subpage-hero-bg { display: none; }
  .content-section { padding: 60px 24px; }
  .cta-section { padding: 80px 24px; }

  .price-box {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  .footer-container { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; padding: 32px 0 0; text-align: center; }

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

@media (max-width: 600px) {
  .footer-container { grid-template-columns: 1fr; }
  footer { padding: 60px 24px 24px; }
  .price-box-price { font-size: 28px; }
  .content-prose blockquote { padding: 24px; font-size: 18px; }
}
