/* ============================================================
   Manuela Wellness Massagen — Stylesheet
   Naturnaher, ruhiger Wellness-Look
   ============================================================ */

:root {
  --sage:        #8fa06b;
  --sage-dark:   #6e7f4e;
  --sage-soft:   #e9eede;
  --cream:       #f7f5ee;
  --cream-2:     #fbfaf5;
  --ink:         #4a4a40;
  --ink-soft:    #6b6b5e;
  --accent:      #b18f74;   /* warmes Braun wie im Flyer */
  --accent-dark: #8f6f57;
  --line:        #d9d6c8;
  --shadow:      0 10px 30px rgba(74, 74, 64, 0.08);
  --radius:      18px;
  --maxw:        1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.72;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--sage-dark); }

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  color: var(--sage-dark);
  line-height: 1.2;
}

.script {
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--sage-dark);
}
.brand img { width: 42px; height: auto; flex: none; }
.brand-name {
  font-family: 'Great Vibes', cursive;
  font-size: 26px;
  line-height: 1;
  color: var(--sage-dark);
}
.brand-sub {
  display: block;
  font-family: 'Mulish', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--ink);
  font-size: 15px;
  letter-spacing: .3px;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--sage-dark);
  border-bottom-color: var(--sage);
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 26px;
  color: var(--sage-dark);
  line-height: 1;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--sage);
  color: #fff;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: .4px;
  border: 2px solid var(--sage);
  transition: all .2s;
  cursor: pointer;
}
.btn:hover { background: var(--sage-dark); border-color: var(--sage-dark); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--sage-dark);
}
.btn-outline:hover { background: var(--sage); color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  text-align: center;
  padding: 90px 24px 100px;
  background:
    radial-gradient(circle at 50% 30%, var(--sage-soft), var(--cream) 70%);
  overflow: hidden;
}
.hero-inner { position: relative; max-width: 720px; margin: 0 auto; }
.hero .tree { width: 132px; height: auto; margin: 0 auto 18px; }
.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  color: var(--sage-dark);
  margin-bottom: 6px;
}
.hero .tagline {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--accent);
  margin-bottom: 22px;
}
.hero p.lead {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 30px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Sections ---------- */
section.block { padding: 72px 0; }
section.block.alt { background: var(--cream-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head .eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(30px, 4vw, 42px); margin-bottom: 12px; }
.section-head p { color: var(--ink-soft); }

/* ---------- Value cards ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}
.value-card .ic {
  width: 52px; height: 52px; margin: 0 auto 16px;
  color: var(--sage);
}
.value-card h3 { font-size: 24px; margin-bottom: 8px; }
.value-card p { color: var(--ink-soft); font-size: 15.5px; }

/* ---------- Price list ---------- */
.price-list {
  max-width: 720px;
  margin: 0 auto;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 34px;
  box-shadow: var(--shadow);
}
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.price-row:last-child { border-bottom: 0; }
.price-row .name { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--sage-dark); font-weight: 600; }
.price-row .desc { font-size: 14px; color: var(--ink-soft); display: block; font-family: 'Mulish', sans-serif; }
.price-row .dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); min-width: 20px; }
.price-row .meta { text-align: right; white-space: nowrap; }
.price-row .price { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 700; color: var(--accent-dark); }
.price-row .time { display: block; font-size: 13px; color: var(--ink-soft); }

.note-box {
  max-width: 720px;
  margin: 32px auto 0;
  background: var(--sage-soft);
  border-radius: var(--radius);
  padding: 26px 30px;
  font-size: 15.5px;
  color: var(--ink);
}
.note-box strong { color: var(--sage-dark); }
.note-box ul { list-style: none; margin-top: 8px; }
.note-box li { padding: 4px 0 4px 26px; position: relative; }
.note-box li::before { content: '\271A'; position: absolute; left: 0; color: var(--sage); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
}
.about-portrait {
  background: linear-gradient(160deg, var(--sage-soft), var(--cream));
  border-radius: var(--radius);
  border: 1px solid var(--line);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.about-portrait img { width: 82%; height: auto; opacity: .96; }
.about-text h2 { font-size: clamp(30px, 4vw, 42px); margin-bottom: 18px; }
.about-text p { margin-bottom: 16px; color: var(--ink-soft); }
.about-text .sign { font-family: 'Great Vibes', cursive; font-size: 34px; color: var(--accent); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-card {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.contact-card h3 { font-size: 26px; margin-bottom: 18px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.contact-item .ic { width: 24px; height: 24px; color: var(--sage); flex: none; margin-top: 3px; }
.contact-item .label { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-soft); display: block; }
.contact-item .val { font-size: 17px; color: var(--ink); }

/* ---------- CTA banner ---------- */
.cta {
  text-align: center;
  background: linear-gradient(160deg, var(--sage), var(--sage-dark));
  color: #fff;
  padding: 72px 24px;
}
.cta h2 { color: #fff; font-size: clamp(28px, 4vw, 40px); margin-bottom: 12px; }
.cta p { color: rgba(255,255,255,.9); max-width: 520px; margin: 0 auto 26px; }
.cta .btn { background: #fff; color: var(--sage-dark); border-color: #fff; }
.cta .btn:hover { background: var(--cream); }

/* ---------- Footer ---------- */
.site-footer {
  background: #41472f;
  color: #d8dcc7;
  padding: 50px 24px 30px;
  text-align: center;
}
.site-footer .brand-name { color: #f0f0e2; }
.site-footer .f-contact { margin: 18px 0; font-size: 15px; line-height: 1.9; }
.site-footer a { color: #e6e9d6; }
.site-footer a:hover { color: #fff; }
.site-footer .copy { font-size: 13px; color: #9aa182; margin-top: 22px; border-top: 1px solid #565d3e; padding-top: 18px; }
.site-footer .nav-links { justify-content: center; flex-wrap: wrap; gap: 22px; margin-top: 14px; }
.site-footer .nav-links a { color: #d8dcc7; border: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .values { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { max-width: 320px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }

  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 12px; border: 0; }
}


/* ---------- Größere Darstellung auf großen Desktop-Monitoren ---------- */
@media (min-width: 1500px) {
  :root { --maxw: 1280px; }
  body { font-size: 19px; }
  .hero { padding: 120px 24px 130px; }
  section.block { padding: 92px 0; }
  .hero p.lead { font-size: 21px; }
  .nav-links a { font-size: 16px; }
}
