/* ============================================================
   Smooth Aesthetics – Gemeinsames Stylesheet für Landingpages
   Wird von allen Unterseiten (Orte, Behandlungen, Ratgeber) geladen.
   Design-Tokens identisch zur Startseite.
   ============================================================ */

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

:root {
  --cream: #F3EDE4;
  --sand: #E2D6C6;
  --taupe: #A99680;
  --espresso: #2C2420;
  --warm-black: #1A1614;
  --rose: #C4A68A;
  --rose-light: #D4BFA8;
  --white: #FAF6F0;
  --maxw: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--espresso);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--rose); text-decoration: none; }
a:hover { color: var(--espresso); }

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.15; }

/* ─── NAV ─── */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(243,237,228,0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,166,138,0.2);
}
.nav-logo { display: flex; align-items: center; gap: 0.5rem; }
.nav-logo img { height: 52px; width: auto; }
.nav-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; letter-spacing: 0.08em; color: var(--espresso); }
.nav-logo-sub { display: block; font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); }
.nav-links { display: flex; gap: 1.8rem; list-style: none; align-items: center; }
.nav-links a { font-size: 0.8rem; letter-spacing: 0.05em; color: var(--espresso); }
.nav-cta {
  background: var(--espresso); color: var(--white) !important;
  padding: 0.7rem 1.4rem; border-radius: 50px; font-size: 0.75rem;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.nav-cta:hover { background: var(--rose); color: var(--white) !important; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-burger span { width: 24px; height: 2px; background: var(--espresso); }

/* ─── BREADCRUMB ─── */
.breadcrumb { max-width: var(--maxw); margin: 0 auto; padding: 1.2rem 2rem 0; font-size: 0.75rem; color: var(--taupe); }
.breadcrumb a { color: var(--taupe); }
.breadcrumb a:hover { color: var(--rose); }
.breadcrumb span { margin: 0 0.4rem; }

/* ─── PAGE HERO ─── */
.page-hero {
  max-width: var(--maxw); margin: 0 auto; padding: 3rem 2rem 2.5rem;
}
.page-hero .eyebrow { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rose); margin-bottom: 1rem; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--espresso); margin-bottom: 1.2rem; }
.page-hero .lead { font-size: 1.1rem; color: var(--taupe); max-width: 760px; }
.page-hero .hero-cta {
  display: inline-block; margin-top: 1.8rem; background: var(--espresso); color: var(--white);
  padding: 0.9rem 2rem; border-radius: 50px; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.page-hero .hero-cta:hover { background: var(--rose); color: var(--white); }

/* ─── CONTENT ─── */
.content { max-width: 860px; margin: 0 auto; padding: 1.5rem 2rem 4rem; }
.content h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); color: var(--espresso); margin: 2.8rem 0 1rem; }
.content h3 { font-size: 1.35rem; color: var(--espresso); margin: 1.8rem 0 0.6rem; }
.content p { margin-bottom: 1.1rem; color: #4a423c; }
.content ul, .content ol { margin: 0 0 1.3rem 1.3rem; color: #4a423c; }
.content li { margin-bottom: 0.5rem; }
.content strong { color: var(--espresso); }

/* ─── INFO BOX ─── */
.infobox {
  background: var(--white); border: 1px solid rgba(196,166,138,0.25);
  border-left: 3px solid var(--rose); border-radius: 12px;
  padding: 1.5rem 1.8rem; margin: 2rem 0;
}
.infobox h3 { margin-top: 0; }

/* ─── PREIS-TABELLE ─── */
.price-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; background: var(--white); border-radius: 12px; overflow: hidden; }
.price-table th, .price-table td { padding: 0.9rem 1.2rem; text-align: left; border-bottom: 1px solid rgba(196,166,138,0.15); }
.price-table th { background: var(--sand); font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 500; }
.price-table td:last-child { text-align: right; font-weight: 500; color: var(--espresso); white-space: nowrap; }
.price-table tr:last-child td { border-bottom: none; }

/* ─── CROSS-LINK CHIPS ─── */
.chip-section { margin: 2.5rem 0; }
.chip-section h3 { margin-bottom: 1rem; }
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip {
  display: inline-block; background: var(--sand); color: var(--espresso) !important;
  padding: 0.5rem 1.1rem; border-radius: 50px; font-size: 0.82rem;
}
.chip:hover { background: var(--rose); color: var(--white) !important; }

/* ─── FAQ ─── */
.faq { margin: 2.5rem 0; }
.faq-item { border-bottom: 1px solid rgba(196,166,138,0.25); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1.2rem 0; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem;
  color: var(--espresso); display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q::after { content: '+'; font-size: 1.5rem; color: var(--rose); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 0 1.2rem; color: #4a423c; }

/* ─── CTA BLOCK ─── */
.cta-block {
  background: var(--espresso); color: var(--white); border-radius: 18px;
  padding: 3rem 2rem; text-align: center; margin: 3rem auto; max-width: 860px;
}
.cta-block h2 { color: var(--white); margin: 0 0 0.8rem; }
.cta-block p { color: rgba(255,255,255,0.75); margin-bottom: 1.8rem; }
.cta-block a {
  display: inline-block; background: var(--rose); color: var(--white);
  padding: 1rem 2.4rem; border-radius: 50px; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.cta-block a:hover { background: var(--rose-light); }

/* ─── MAP ─── */
.map-wrap { max-width: var(--maxw); margin: 2rem auto; padding: 0 2rem; }
.map-wrap iframe { width: 100%; height: 340px; border: 0; border-radius: 16px; }

/* ─── FOOTER ─── */
.site-footer { background: var(--warm-black); color: var(--taupe); padding: 3rem 2rem 2rem; margin-top: 3rem; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.footer-col h4 { color: var(--rose); font-size: 1.1rem; margin-bottom: 0.9rem; }
.footer-col a { display: block; color: var(--taupe); font-size: 0.82rem; margin-bottom: 0.5rem; }
.footer-col a:hover { color: var(--rose-light); }
.footer-bottom { max-width: var(--maxw); margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(200,180,160,0.15); text-align: center; font-size: 0.75rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; }
  .nav { padding: 0.8rem 1.2rem; }
  .page-hero, .content { padding-left: 1.3rem; padding-right: 1.3rem; }
}
