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

:root {
  --cream:   #F7F3EE;
  --warm:    #EDE5D8;
  --sage:    #5E8B6E;
  --sage-lt: #8AB39A;
  --terra:   #B36B50;
  --ink:     #2A2520;
  --mid:     #5C5249;
  --light:   #9C9088;
}

html { scroll-behavior: smooth; font-size: 18px; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 3rem;
  background: rgba(247,243,238,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(94,139,110,.15);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: 1.05rem; letter-spacing: .04em;
  color: var(--sage); text-decoration: none;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--mid); text-decoration: none; transition: color .3s;
}
.nav-links a:hover { color: var(--sage); }

/* Hamburger – nur mobil sichtbar */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; padding: 10px;
  flex-direction: column; justify-content: center; gap: 5px;
  z-index: 120;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--sage); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 80px;
}

.hero-text {
  padding: 6rem 4rem 6rem 7rem;
}

.hero-eyebrow {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 1.8rem;
  display: flex; align-items: center; gap: .75rem;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 2.5rem; height: 1px; background: var(--terra);
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 1.1; letter-spacing: -.01em;
  color: var(--ink); margin-bottom: .4rem;
}
h1 em { font-style: italic; color: var(--sage); }

.hero-subject {
  font-size: 1.05rem; color: var(--mid); margin-bottom: 1.4rem;
  line-height: 1.8;
}

.hero-text h1 { margin-bottom: 2.5rem; }

.hero-title {
  font-size: .95rem; color: var(--mid); margin-bottom: 2.5rem;
  letter-spacing: .04em; font-weight: 400;
}

.hero-intro {
  font-size: 1.05rem; color: var(--mid); line-height: 1.8;
  max-width: 34rem; margin-bottom: 3rem;
}

.hero-cta {
  display: inline-flex; align-items: center; gap: .75rem;
  background: var(--sage); color: #fff;
  padding: .9rem 2rem; border-radius: 2px;
  text-decoration: none; font-size: .82rem; letter-spacing: .1em;
  text-transform: uppercase; transition: background .3s, transform .3s;
}
.hero-cta:hover { background: var(--terra); transform: translateY(-2px); }

/* Photo side */
.hero-image {
  position: relative; height: 100vh;
  background: var(--warm);
  overflow: hidden;
}
.hero-image::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--sage-lt) 0%, var(--warm) 60%);
  opacity: .35;
}

.photo-frame {
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 82%; max-width: 500px;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.photo-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  display: block;
}

.deco-circle {
  position: absolute; top: 12%; right: 8%;
  width: 200px; height: 200px; border-radius: 50%;
  border: 1px solid rgba(94,139,110,.25);
  animation: spin 20s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* SECTIONS */
section { padding: 7rem 7rem; }

.section-label {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 1rem;
  display: flex; align-items: center; gap: .75rem;
}
.section-label::before {
  content: ''; display: block; width: 2rem; height: 1px; background: var(--terra);
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15; margin-bottom: 2rem;
}

/* INTRO / WILLKOMMEN */
#willkommen {
  background: var(--warm);
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; align-items: center;
}
.intro-right p { color: var(--mid); font-size: 1.05rem; margin-bottom: 1.2rem; }
.intro-right p:last-of-type { margin-bottom: 0; }
.intro-right strong { color: var(--ink); font-weight: 500; }

.about-badges {
  display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem;
}
.badge {
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .4rem 1rem; border: 1px solid var(--sage-lt);
  color: var(--sage); border-radius: 2px;
}

/* ÜBER MICH / QUALIFIKATION */
#ueber { background: var(--cream); }
.qual-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem; margin-top: 3rem;
}
.qual-col h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: 1.4rem; color: var(--ink);
  margin-bottom: 1rem; padding-bottom: .6rem;
  border-bottom: 1px solid rgba(94,139,110,.25);
}
.qual-col ul { list-style: none; }
.qual-col li {
  position: relative; padding-left: 1.3rem; margin-bottom: .7rem;
  font-size: .95rem; color: var(--mid); line-height: 1.6;
}
.qual-col li::before {
  content: ''; position: absolute; left: 0; top: .65rem;
  width: 6px; height: 6px; border-radius: 50%; background: var(--sage-lt);
}

/* THERAPIE */
#therapie {
  background: var(--warm);
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start;
}
.therapie-right p { color: var(--mid); font-size: 1.05rem; margin-bottom: 1.2rem; }
.info-card {
  background: var(--cream); padding: 1.8rem 2rem; margin-top: 2rem;
  border-left: 3px solid var(--sage);
}
.info-card .info-row { display: flex; flex-wrap: wrap; gap: .5rem 2rem; }
.info-card .info-label {
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--light); margin-bottom: .3rem;
}
.info-card .info-block { margin-bottom: 1.2rem; }
.info-card .info-block:last-child { margin-bottom: 0; }
.info-card .info-value { font-size: .98rem; color: var(--ink); }

/* ANGEBOTE */
#angebote { background: var(--ink); color: #fff; }
#angebote .section-label { color: var(--sage-lt); }
#angebote .section-label::before { background: var(--sage-lt); }
#angebote h2 { color: #fff; }

.offer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 3rem;
}
.offer-item { border-top: 1px solid rgba(255,255,255,.15); padding-top: 1.5rem; }
.offer-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; color: var(--sage-lt); opacity: .4; line-height: 1; margin-bottom: .75rem;
}
.offer-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400; font-size: 1.4rem; margin-bottom: 1rem; color: #fff;
}
.offer-item .offer-sub {
  font-size: .82rem; color: var(--sage-lt); margin-bottom: 1rem;
  letter-spacing: .04em;
}
.offer-item ul { list-style: none; }
.offer-item li {
  position: relative; padding-left: 1.2rem; margin-bottom: .55rem;
  font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.5;
}
.offer-item li::before {
  content: ''; position: absolute; left: 0; top: .55rem;
  width: 5px; height: 5px; border-radius: 50%; background: var(--sage-lt);
}
.offer-note {
  margin-top: 3rem; padding: 1.6rem 2rem;
  background: rgba(255,255,255,.05); border-left: 3px solid var(--sage-lt);
  font-size: .92rem; color: rgba(255,255,255,.7); max-width: 60rem;
}

/* PROFIL STRIP */
.profil-strip {
  background: var(--warm);
  display: flex; flex-wrap: wrap;
  border-top: 1px solid rgba(94,139,110,.2);
}
.profil-item {
  flex: 1; min-width: 200px;
  padding: 3rem; border-right: 1px solid rgba(94,139,110,.2);
}
.profil-item:last-child { border-right: none; }
.profil-item-label {
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--light); margin-bottom: .75rem;
}
.profil-item-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; color: var(--ink); line-height: 1.4;
}

/* KONTAKT */
#kontakt {
  background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start;
}
.kontakt-info h2 { margin-bottom: 1.5rem; }
.kontakt-info p.lead { color: var(--mid); font-size: 1.05rem; margin-bottom: 2.5rem; }

.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem;
}
.contact-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--warm); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--sage); font-size: 1rem;
}
.contact-text { font-size: .95rem; color: var(--mid); }
.contact-text strong { display: block; font-weight: 500; color: var(--ink); margin-bottom: .1rem; }
.contact-text a { color: var(--sage); text-decoration: none; }

.address-box {
  background: var(--warm);
  padding: 3rem;
  border-left: 3px solid var(--sage);
}
.address-box p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; line-height: 1.7;
  color: var(--ink); margin-bottom: 0 !important;
}
.address-box .address-label {
  font-family: 'Jost', sans-serif;
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--light); margin-bottom: 1rem !important;
}
.address-map-link {
  display: inline-block; margin-top: 1.5rem;
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--sage); text-decoration: none; border-bottom: 1px solid var(--sage-lt);
  padding-bottom: 2px; transition: color .3s;
}
.address-map-link:hover { color: var(--terra); border-color: var(--terra); }

.erstgespraech-note {
  margin-top: 1.5rem; background: rgba(94,139,110,.08);
  padding: 1.1rem 1.4rem; border-radius: 2px;
  font-size: .9rem; color: var(--mid);
}
.erstgespraech-note strong { color: var(--ink); }

/* FOOTER */
footer {
  background: var(--ink); color: rgba(255,255,255,.4);
  padding: 2.5rem 7rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: .78rem; letter-spacing: .05em;
}
footer a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .3s; }
footer a:hover { color: var(--sage-lt); }
.footer-links { display: flex; gap: 1.5rem; }

/* ANIMATIONS */
.fade-in {
  opacity: 0; transform: translateY(24px);
  animation: fadeUp .8s ease forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }
.delay-4 { animation-delay: .6s; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0;
    width: min(78vw, 320px); height: 100vh; height: 100dvh;
    flex-direction: column; gap: 0;
    background: var(--cream);
    box-shadow: -8px 0 32px rgba(42,37,32,.12);
    padding: 6rem 2rem 2rem;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    z-index: 110;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { border-bottom: 1px solid rgba(94,139,110,.15); }
  .nav-links a {
    display: block; padding: 1.1rem 0;
    font-size: .9rem; color: var(--ink);
  }
  .nav-overlay {
    position: fixed; inset: 0; z-index: 900;
    background: rgba(42,37,32,.4); backdrop-filter: blur(2px);
    opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease;
  }
  .nav-overlay.open { opacity: 1; visibility: visible; }
  .hero { grid-template-columns: 1fr; }
  .hero-image { height: 65vw; min-height: 300px; }
  .hero-text { padding: 3rem 1.5rem; }
  section { padding: 4rem 1.5rem; }
  #willkommen { grid-template-columns: 1fr; gap: 2.5rem; }
  #therapie { grid-template-columns: 1fr; gap: 2.5rem; }
  #kontakt { grid-template-columns: 1fr; gap: 2.5rem; }
  .offer-grid { grid-template-columns: 1fr; }
  footer { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; }
  .profil-item { border-right: none; border-bottom: 1px solid rgba(94,139,110,.2); }
  .profil-item:last-child { border-bottom: none; }
}
