:root {
  --taupe: #7B6553;
  --taupe-dark: #5F4E40;
  --sand: #DCCDBD;
  --step-bg: #F3ECE2;
  --ivory: #F8F6F2;
  --white: #FFFFFF;
  --sage: #AEBBA5;
  --sage-dark: #8CA07F;
  --charcoal: #2F2A27;
  --line: #E7DFD5;
  --muted: #9b8f82;
  --muted-2: #7c7168;
  --icon-bg: #EEF1EA;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(248,246,242,.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  flex-wrap: wrap;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo svg #gc-heart-l { transform-box: fill-box; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .name { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 19px; color: var(--charcoal); letter-spacing: -.02em; }
.logo-text .sub { font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 9px; color: var(--taupe); letter-spacing: .2em; text-transform: uppercase; margin-top: 3px; }
nav.main-nav { display: flex; align-items: center; gap: clamp(14px,2.2vw,30px); flex-wrap: wrap; }
nav.main-nav a.nav-link { font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 15px; color: var(--taupe-dark); text-decoration: none; transition: color .18s ease; }
nav.main-nav a.nav-link:hover { color: var(--taupe); }
nav.main-nav a.nav-link.active { color: var(--taupe); }
.btn-pill {
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15px;
  color: #fff; background: var(--taupe); text-decoration: none;
  padding: 10px 20px; border-radius: 100px; transition: background .18s ease;
  display: inline-flex; align-items: center; gap: 7px;
}
.btn-pill:hover { background: var(--taupe-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 14.5px;
  border-radius: 10px; padding: 14px 26px; text-decoration: none; cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
  border: 1.5px solid transparent;
}
.btn-solid { background: var(--taupe); color: #fff; }
.btn-solid:hover { background: var(--taupe-dark); }
.btn-outline-light { border-color: #fff; color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--taupe-dark); }
.btn-outline { border-color: var(--taupe); color: var(--taupe); background: transparent; }
.btn-outline:hover { background: var(--taupe); color: #fff; }
.btn-on-taupe { background: #fff; color: var(--taupe-dark); }
.btn-on-taupe:hover { background: var(--ivory); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('hero-praxis.jpg') center 38% / cover no-repeat;
  animation: gcKen 30s ease-in-out infinite alternate;
  transform-origin: center;
}
@keyframes gcKen { 0% { transform: scale(1.04); } 100% { transform: scale(1.13) translate(-1.2%,-1%); } }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(43,36,30,.4) 0%, rgba(43,36,30,.52) 40%, rgba(43,36,30,.72) 100%);
}
.hero-fade-bottom {
  position: absolute; left: 0; right: 0; bottom: 0; height: 100px; z-index: 1;
  background: linear-gradient(180deg, rgba(184,164,143,0) 0%, var(--ivory) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 620px; padding: 90px 28px 70px; }
.eyebrow { display: block; font-family: 'Inter', sans-serif; font-weight: 500; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--sage); margin-bottom: 20px; }
.hero-content h1 {
  font-family: 'Fraunces', serif; font-weight: 600; font-style: normal;
  font-size: clamp(32px, 5vw, 46px); line-height: 1.2; color: #fff;
  margin: 0 0 34px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
}

/* ---------- Nutzen-Streifen ---------- */
.nutzen {
  background: var(--taupe);
  padding: 24px 28px;
  display: flex; justify-content: center; align-items: center;
  gap: clamp(18px, 3vw, 36px); flex-wrap: wrap;
}
.nutzen-item { display: flex; align-items: center; gap: 12px; }
.nutzen-item span { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15.5px; color: var(--ivory); }
.nutzen-divider { width: 1px; height: 24px; background: rgba(248,246,242,.35); }

/* ---------- Section base ---------- */
section.block { padding: clamp(48px, 6vw, 80px) 28px; }
.section-head { max-width: var(--max); margin: 0 auto 34px; }
.section-head h2 { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(24px, 3.4vw, 32px); line-height: 1.25; color: var(--charcoal); margin: 10px 0 0; max-width: 34ch; }

/* ---------- Leistungen ---------- */
.leistungen-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 28px;
  display: flex; flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover { box-shadow: 0 10px 26px rgba(47,42,39,.08); transform: translateY(-2px); }
.icon-tile { width: 50px; height: 50px; border-radius: 12px; background: var(--icon-bg); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.card h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 18px; color: var(--charcoal); margin: 0 0 10px; }
.card p { font-family: 'Inter', sans-serif; font-size: 14.5px; line-height: 1.6; color: var(--taupe-dark); margin: 0 0 16px; flex: 1; }
.card .more { font-family: 'DM Sans', sans-serif; font-size: 13.5px; font-weight: 600; color: var(--taupe); text-decoration: none; }
.card .more:hover { color: var(--taupe-dark); }

/* ---------- Ablauf (1-3 / 4-6 nebeneinander, Nummer vor dem Text) ---------- */
.ablauf-section { background: var(--sand); }
.ablauf-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 28px; }
.ablauf-step { }
.marker-row { display: flex; align-items: center; margin-bottom: 14px; }
.step-circle {
  width: 36px; height: 36px; border-radius: 50%; background: var(--step-bg); color: var(--taupe-dark);
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background .4s ease, color .4s ease;
}
.step-circle.active { background: var(--taupe); color: var(--ivory); }
.h-connector { flex: 1; height: 2px; margin-left: 10px; background: rgba(255,255,255,.55); position: relative; overflow: hidden; }
.h-connector .fill-h { position: absolute; top: 0; left: 0; height: 100%; width: 0%; background: var(--taupe); transition: width .6s ease; }
.ablauf-step h3 { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 16px; color: var(--charcoal); margin: 0 0 8px; }
.ablauf-step p { font-family: 'Inter', sans-serif; font-size: 14px; line-height: 1.55; color: var(--taupe-dark); margin: 0; }

/* ---------- Kontakt teaser (Startseite) ---------- */
.kontakt-grid { max-width: var(--max); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 22px; }
.kontakt-card { flex: 1 1 320px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 4px 14px rgba(0,0,0,.06); padding: 30px; }
.kontakt-card h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 18px; margin: 0 0 18px; color: var(--charcoal); }
.hours-row { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid #F1EAE0; padding-bottom: 12px; font-size: 14.5px; color: var(--taupe-dark); }
.hours-row:last-child { border-bottom: none; }
.hours-row strong { color: var(--charcoal); font-weight: 500; }
.cta-panel { flex: 1 1 320px; background: var(--taupe); border-radius: 14px; box-shadow: 0 12px 30px rgba(123,101,83,.26); padding: 34px; display: flex; flex-direction: column; justify-content: center; }
.cta-panel h3 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 22px; color: #fff; margin: 0 0 12px; }
.cta-panel p { font-family: 'Inter', sans-serif; font-size: 15px; line-height: 1.6; color: #F0E6DC; margin: 0 0 24px; }
.placeholder-note { margin-top: 20px; padding: 11px 14px; background: var(--ivory); border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 11.5px; color: var(--muted); }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--ivory); border-top: 1px solid var(--line); }
.footer-top { max-width: var(--max); margin: 0 auto; padding: 44px 28px 26px; display: flex; flex-wrap: wrap; gap: 36px; justify-content: space-between; }
.footer-brand { max-width: 320px; }
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { font-family: 'Fraunces', serif; font-size: 15px; color: var(--taupe-dark); margin: 0; }
.footer-cols { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 9px; }
.footer-col .label { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 2px; }
.footer-col a { font-size: 14px; color: var(--taupe-dark); text-decoration: none; }
.footer-col a:hover { color: var(--taupe); }
.footer-bottom { border-top: 1px solid var(--line); max-width: var(--max); margin: 0 auto; padding: 18px 28px; font-family: 'Inter', sans-serif; font-size: 12.5px; color: var(--muted); }

/* ---------- Form ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: clamp(26px,3vw,36px); box-shadow: 0 12px 34px rgba(47,42,39,.09); }
.form-field { display: flex; flex-direction: column; gap: 6px; font-family: 'Inter', sans-serif; font-size: 13.5px; font-weight: 500; color: var(--taupe-dark); margin-bottom: 15px; }
.form-field input, .form-field textarea {
  font-family: 'Inter', sans-serif; font-size: 15px; color: var(--charcoal);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--ivory);
  outline: none; transition: border-color .15s, box-shadow .15s;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(174,187,165,.35); }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-family: 'Inter', sans-serif; font-size: 13px; line-height: 1.5; color: var(--muted-2); margin-bottom: 18px; }
.form-check input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--taupe); flex-shrink: 0; }
.form-note { margin: 10px 0 0; font-family: 'Inter', sans-serif; font-size: 11.5px; color: var(--muted); text-align: center; }
.submitted-msg { display: none; font-family: 'DM Sans', sans-serif; font-weight: 600; color: var(--taupe-dark); text-align: center; padding: 20px 0; }
.calendar-embed-wrap { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: var(--ivory); }
.calendar-embed-wrap iframe { display: block; }

/* ---------- Utility page hero ---------- */
.page-hero { padding: 64px 28px 20px; max-width: var(--max); margin: 0 auto; }
.page-hero h1 { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(28px,4vw,38px); color: var(--charcoal); margin: 10px 0 0; }

/* ---------- Über mich ---------- */
.about-intro { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; padding: 20px 28px 70px; }
.about-intro p.lead { font-family: 'Inter', sans-serif; font-size: 16.5px; line-height: 1.7; color: var(--taupe-dark); text-align: justify; text-justify: inter-word; hyphens: auto; }
.img-slot { border-radius: 18px; background: #ddd3c4; width: 100%; object-fit: cover; display: block; }
.slot-4-5 { aspect-ratio: 4 / 5; }
.slot-5-4 { aspect-ratio: 5 / 4; }
.img-slot-small { max-width: 480px; margin: 0 auto; }
.story-section { background: var(--sand); padding: 64px 28px; }
.story-section .wrap-narrow { max-width: 760px; margin: 0 auto; }
.story-section h2 { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(24px,3.2vw,30px); color: var(--charcoal); margin: 0 0 26px; }
.story-section p { font-family: 'Inter', sans-serif; font-size: 15.5px; line-height: 1.75; color: var(--taupe-dark); margin: 0 0 18px; }
.werte-section { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; padding: 64px 28px; }
.werte-list { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.werte-list li { display: flex; align-items: flex-start; gap: 12px; font-family: 'Inter', sans-serif; font-size: 16px; color: var(--charcoal); }
.werte-list li svg { flex-shrink: 0; margin-top: 2px; }
.cta-strip { background: var(--taupe); text-align: center; padding: 64px 28px; }
.cta-strip h2 { font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(24px,3.2vw,30px); color: #fff; margin: 0 0 24px; }

/* ---------- Kontakt page ---------- */
.kontakt-page-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; padding: 20px 28px 60px; align-items: start; }
.info-cards { display: flex; flex-direction: column; gap: 20px; }
.impressum-section { background: var(--sand); padding: 56px 28px; }
.impressum-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 28px; }
.impressum-grid h4 { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 13px; color: var(--taupe-dark); text-transform: uppercase; letter-spacing: .08em; margin: 0 0 10px; }
.impressum-grid p { font-family: 'Inter', sans-serif; font-size: 14px; line-height: 1.6; color: var(--charcoal); margin: 0; }
.impressum-grid .ph { color: var(--muted); font-style: italic; }

/* ---------- Legal pages (Datenschutz/AGB) ---------- */
.legal-content { max-width: 760px; margin: 0 auto; padding: 20px 28px 70px; }
.legal-content h2 { font-family: 'Fraunces', serif; font-weight: 600; font-size: 21px; color: var(--charcoal); margin: 36px 0 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { font-family: 'Inter', sans-serif; font-size: 15px; line-height: 1.7; color: var(--taupe-dark); }
.legal-content ul { padding-left: 20px; }
.legal-disclaimer { background: var(--icon-bg); border-radius: 12px; padding: 16px 20px; font-family: 'Inter', sans-serif; font-size: 13px; line-height: 1.6; color: var(--taupe-dark); margin-bottom: 30px; }

@media (max-width: 760px) {
  .about-intro, .werte-section, .kontakt-page-grid { grid-template-columns: 1fr; }
  .ablauf-grid { grid-template-columns: 1fr; }
  .h-connector { display: none; }
}
@media (max-width: 900px) and (min-width: 761px) {
  .ablauf-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.leistungen-grid .card:nth-child(1) { transition-delay: 0s; }
.leistungen-grid .card:nth-child(2) { transition-delay: .12s; }
.leistungen-grid .card:nth-child(3) { transition-delay: .24s; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

#gc-heart-l.beat, #gc-heart-l-footer.beat { animation: gcBeat .6s ease; }
@keyframes gcBeat { 0% { transform: scale(1); } 40% { transform: scale(1.18); } 100% { transform: scale(1); } }

/* ---------- WhatsApp-Kontaktbutton ---------- */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(47,42,39,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover { transform: scale(1.06); box-shadow: 0 10px 26px rgba(47,42,39,.32); }
@media (max-width: 600px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}
