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

:root {
  --cream:   #faf7f2;
  --warm:    #f2ebe0;
  --sage:    #8aaa8c;
  --sage-dk: #5c7a5e;
  --rose:    #c9a598;
  --sand:    #c4a882;
  --text:    #3a3228;
  --muted:   #7a6e65;
  --white:   #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Merriweather', Georgia, serif;
  background: var(--cream);
  color: var(--text);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ─── SKIP LINK ───────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -48px;
  left: 1rem;
  z-index: 9999;
  background: var(--sage-dk);
  color: var(--white);
  padding: .6rem 1.2rem;
  border-radius: 0 0 4px 4px;
  font-size: .85rem;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ─── FOCUS STYLES ────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--sage-dk);
  outline-offset: 3px;
  border-radius: 2px;
}
:focus:not(:focus-visible) { outline: none; }

/* ─── NAV ─────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,168,130,0.2);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(90,70,50,.07); }

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--sage-dk);
  letter-spacing: .04em;
  text-decoration: none;
}
.nav-logo span { font-style: italic; color: var(--rose); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .25s;
  position: relative;
  font-family: 'Merriweather', Georgia, serif;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0; height: 1px;
  background: var(--rose); transform: scaleX(0); transition: transform .3s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

/* ─── HAMBURGER ───────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  border-radius: 4px;
  transition: background .2s;
}
.nav-toggle:hover { background: rgba(138,170,140,.12); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .35s ease, opacity .25s ease;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── HERO ────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  overflow: hidden;
}

.hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 5rem 5rem 6rem;
  animation: fadeUp .9s ease both;
}
.hero-eyebrow {
  font-size: .75rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 1.4rem; display: flex; align-items: center; gap: .8rem;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--rose);
}
h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.8rem;
}
h1 em { font-style: italic; color: var(--sage-dk); }

.hero-sub {
  font-size: 1rem; color: var(--muted);
  max-width: 400px; margin-bottom: 2.8rem; line-height: 1.8;
}

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: .85rem 2.2rem;
  font-family: 'Merriweather', Georgia, serif; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: all .3s; cursor: pointer; border: none;
}
.btn-primary {
  background: var(--sage-dk); color: #fff;
}
.btn-primary:hover { background: var(--sage); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(92,122,94,.25); }
.btn-outline {
  background: transparent; color: var(--sage-dk);
  border: 1.5px solid var(--sage);
}
.btn-outline:hover { background: var(--sage); color: #fff; transform: translateY(-2px); }

.hero-visual {
  position: relative; overflow: hidden;
  animation: fadeIn 1.2s ease both .3s;
}
.hero-img-wrap {
  position: absolute; inset: 4rem 3rem 2rem 0;
  border-radius: 220px 220px 180px 180px;
  background: linear-gradient(160deg, #d4e4d6 0%, #b8cfba 60%, #a8c4ab 100%);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(92,122,94,.18);
}
.hero-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(90,122,94,.12));
}

/* SVG botanical illustration placeholder */
.hero-botanical {
  position: absolute; bottom: 1rem; left: -2rem;
  width: 160px; opacity: .55;
}
.hero-badge {
  position: absolute; bottom: 3.5rem; right: 2rem;
  background: var(--white); border-radius: 50%;
  width: 110px; height: 110px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(90,70,50,.12);
  text-align: center; padding: .8rem;
}
.hero-badge strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem; font-weight: 400; color: var(--sage-dk); line-height: 1;
}
.hero-badge small {
  font-size: .6rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-top: .2rem;
}

/* ─── WAVE DIVIDER ────────────────────────────────── */
.wave { width: 100%; line-height: 0; }

/* ─── SECTION BASE ────────────────────────────────── */
section { padding: 6rem 0; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 2.5rem; }

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

h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300; line-height: 1.2;
  margin-bottom: 1.2rem;
}
h2 em { font-style: italic; color: var(--sage-dk); }

/* ─── INLINE EMPHASIS ─────────────────────────────── */
p em { font-weight: bold; font-style: italic; }

/* ─── ÜBER MICH ───────────────────────────────────── */
#ueber {
  background: var(--white);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-img {
  position: relative;
}
.about-img-frame {
  aspect-ratio: 4/5;
  border-radius: 180px 180px 120px 120px;
  background: linear-gradient(135deg, var(--warm) 0%, #dde8de 100%);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(92,122,94,.14);
}
.about-img-deco {
  position: absolute; top: -1.5rem; right: -1.5rem;
  width: 80px; height: 80px;
  border: 2px solid var(--rose); border-radius: 50%;
  opacity: .4;
}
.about-img-deco2 {
  position: absolute; bottom: -1rem; left: -1rem;
  width: 120px; height: 120px;
  border: 1.5px solid var(--sage); border-radius: 50%;
  opacity: .3;
}
.about-quote {
  position: absolute; bottom: 2.5rem; right: -2rem;
  background: var(--cream); padding: 1.2rem 1.4rem;
  border-left: 3px solid var(--rose);
  max-width: 200px;
  box-shadow: 0 10px 30px rgba(90,70,50,.08);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem; font-style: italic; color: var(--sage-dk);
  line-height: 1.5;
}

.about-text p { color: var(--muted); margin-bottom: 1.2rem; font-size: .97rem; }
.about-facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2rem;
}
.fact {
  display: flex; gap: .8rem; align-items: flex-start;
}
.fact-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--warm); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: .1rem;
}
.fact h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem; font-weight: 600; margin-bottom: .1rem;
}
.fact p { font-size: .82rem; margin: 0; }

/* ─── LEISTUNGEN ──────────────────────────────────── */
#leistungen { background: var(--cream); }
.leistungen-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3.5rem;
}
.leistungen-intro { max-width: 560px; }
.leistungen-intro p { color: var(--muted); font-size: .97rem; margin-top: .8rem; }
.leistungen-header-img {
  width: 200px;
  height: 260px;
  border-radius: 100px 100px 70px 70px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(92,122,94,.14);
  flex-shrink: 0;
}

.cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem;
}
.card {
  background: var(--white); border-radius: 16px;
  padding: 2.2rem 1.8rem;
  box-shadow: 0 4px 24px rgba(90,70,50,.06);
  transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--rose));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(90,70,50,.12); }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--warm); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
}
.card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem; font-weight: 600;
  margin-bottom: .6rem; color: var(--text);
}
.card p { font-size: .88rem; color: var(--muted); line-height: 1.75; }
.card-link {
  display: inline-block; margin-top: 1.2rem;
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--sage-dk); text-decoration: none;
  border-bottom: 1px solid var(--sage); padding-bottom: .1rem;
  transition: color .2s;
}
.card-link:hover { color: var(--rose); border-color: var(--rose); }

/* ─── ABLAUF ──────────────────────────────────────── */
#ablauf {
  background: linear-gradient(160deg, #e8f0e9 0%, #f5ede6 100%);
}
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin-top: 3rem; position: relative;
}
.steps::before {
  content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, var(--sage), var(--rose), var(--sage));
  opacity: .4;
}
.step { text-align: center; padding: 0 .8rem; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--sage);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem; font-weight: 400; color: var(--sage-dk);
  margin: 0 auto 1.4rem; position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(92,122,94,.15);
}
.step h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem; font-weight: 600; margin-bottom: .5rem;
}
.step p { font-size: .83rem; color: var(--muted); }

/* ─── PHILOSOPHIE ─────────────────────────────────── */
#philosophie { background: var(--warm); }
.philosophie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.philosophie-img-wrap {
  aspect-ratio: 4/5;
  border-radius: 180px 180px 120px 120px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(92,122,94,.16);
}
.philosophie-content p { color: var(--muted); margin-bottom: 1.2rem; font-size: .97rem; }
.philosophie-content .btn { margin-top: .8rem; }

/* ─── TESTIMONIAL ─────────────────────────────────── */
#stimmen {
  background: var(--sage-dk);
  color: var(--white);
}
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.testimonial {
  background: rgba(255,255,255,.08); border-radius: 16px;
  padding: 2rem; border: 1px solid rgba(255,255,255,.1);
}
.stars { color: var(--rose); font-size: 1rem; letter-spacing: .1em; margin-bottom: 1rem; }
.testimonial blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem; font-style: italic;
  line-height: 1.65; color: rgba(255,255,255,.88);
  margin-bottom: 1.2rem;
}
.testimonial cite {
  font-size: .8rem; letter-spacing: .08em;
  color: rgba(255,255,255,.55); font-style: normal;
}
#stimmen .section-label { color: var(--rose); }
#stimmen .section-label::before { background: var(--rose); }
#stimmen h2 { color: var(--white); }

/* ─── KONTAKT ─────────────────────────────────────── */
#kontakt { background: var(--white); }
.kontakt-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start;
}
.kontakt-info h2 { margin-bottom: 1rem; }
.kontakt-info p { color: var(--muted); margin-bottom: 2rem; font-size: .95rem; }

.kontakt-items { display: flex; flex-direction: column; gap: 1.2rem; }
.k-item {
  display: flex; gap: 1rem; align-items: center;
}
.k-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--warm); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.k-item div p:first-child {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--rose); margin-bottom: .1rem;
}
.k-item div p:last-child { font-size: .95rem; color: var(--text); }
.k-item div p:last-child a {
  color: var(--text); text-decoration: none;
}
.k-item div p:last-child a:hover { color: var(--sage-dk); text-decoration: underline; }
.kontakt-img-wrap {
  margin-top: 2.2rem;
  border-radius: 80px 80px 60px 60px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(92,122,94,.12);
  height: 200px;
}
.kontakt-img-wrap img { object-position: center 40%; }

/* Form */
.kontakt-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label {
  font-size: .73rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
}
.field input, .field textarea, .field select {
  font-family: 'Merriweather', Georgia, serif; font-weight: 300;
  font-size: .92rem; color: var(--text);
  background: var(--cream); border: 1.5px solid transparent;
  border-radius: 8px; padding: .9rem 1.1rem;
  outline: none; transition: border-color .25s, box-shadow .25s;
  resize: none;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(138,170,140,.15);
}
.field textarea { min-height: 120px; }
.btn-submit { width: 100%; padding: 1rem; font-size: .82rem; }
.form-honeypot { position: absolute; left: -9999px; top: -9999px; opacity: 0; pointer-events: none; }

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--text);
  color: rgba(255,255,255,.6);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem; color: rgba(255,255,255,.9);
}
.footer-logo span { font-style: italic; color: var(--rose); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a {
  font-size: .8rem; letter-spacing: .08em;
  color: rgba(255,255,255,.45); text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: rgba(255,255,255,.85); }
.footer-copy { font-size: .75rem; }

/* ─── COOKIE BANNER ───────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--text);
  color: rgba(255,255,255,.85);
  padding: 1.1rem 0;
  box-shadow: 0 -4px 24px rgba(58,50,40,.18);
}
.cookie-banner-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.cookie-text {
  font-size: .88rem; line-height: 1.65; margin: 0;
  color: rgba(255,255,255,.8);
}
.cookie-text a {
  color: var(--rose); text-decoration: underline; text-underline-offset: 3px;
}
.cookie-text a:hover { color: rgba(255,255,255,.9); }
.cookie-btn { padding: .65rem 1.8rem; font-size: .78rem; white-space: nowrap; }

@media (max-width: 768px) {
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
  .cookie-btn { width: 100%; text-align: center; }
}


@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 1rem 2rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(250,247,242,.97);
    backdrop-filter: blur(16px);
    padding: 5rem 2rem 2.5rem;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .35s ease;
    pointer-events: none;
    z-index: 90;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { border-bottom: 1px solid rgba(196,168,130,.15); }
  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    letter-spacing: .08em;
  }
  .nav-links a::after { display: none; }
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 6rem 2.5rem 3rem; }
  .hero-visual { height: 340px; }
  .hero-img-wrap { inset: 1rem 1.5rem; border-radius: 140px 140px 100px 100px; }
  .about-grid, .kontakt-grid { grid-template-columns: 1fr; gap: 3rem; }
  .leistungen-header { grid-template-columns: 1fr; }
  .leistungen-header-img { width: 100%; height: 220px; border-radius: 60px 60px 40px 40px; }
  .philosophie-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .philosophie-img-wrap { order: 1; }
  .philosophie-content { order: 0; }
  .about-quote { right: .5rem; }
  .cards { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .testimonials { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { padding: .9rem 1.5rem; }

  .hero-text {
    padding: 5.5rem 1.5rem 2.5rem;
    text-align: center;
    align-items: center;
  }
  .hero-eyebrow { justify-content: center; }
  .hero-eyebrow::before { display: none; }
  .hero-sub { max-width: 100%; }
  .btn-group { justify-content: center; }
  .hero-visual { height: 280px; }

  section { padding: 4rem 0; }
  .container { padding: 0 1.5rem; }

  .about-grid { gap: 2rem; }
  .about-quote { position: static; margin-top: 1rem; max-width: 100%; }
  .about-img-deco, .about-img-deco2 { display: none; }
  .about-facts { grid-template-columns: 1fr; }

  .leistungen-intro { margin-bottom: 2.5rem; }
  .cards { grid-template-columns: 1fr; gap: 1.2rem; }

  .steps { grid-template-columns: 1fr 1fr; gap: 1.2rem; }

  .testimonials { grid-template-columns: 1fr; gap: 1.2rem; }

  .kontakt-grid { gap: 2rem; }
  .kontakt-items { gap: 1rem; }
  .kontakt-img-wrap { height: 160px; }

  .footer-inner { flex-direction: column; text-align: center; gap: 1rem; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  nav { padding: .8rem 1.2rem; }

  h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  h2 { font-size: clamp(1.7rem, 7vw, 2.4rem); }

  .hero-text { padding: 5rem 1.2rem 2rem; }
  .hero-visual { height: 220px; }
  .hero-img-wrap { border-radius: 100px 100px 80px 80px; }
  .hero-badge { width: 88px; height: 88px; bottom: 2rem; right: 1rem; }

  section { padding: 3rem 0; }
  .container { padding: 0 1rem; }

  .about-facts { gap: 1rem; }
  .fact { gap: .6rem; }
  .leistungen-header-img { height: 180px; }
  .kontakt-img-wrap { height: 140px; }

  .cards { gap: 1rem; }
  .card { padding: 1.6rem 1.4rem; }

  .steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .step { padding: 0; }

  .kontakt-form .btn-submit { padding: .9rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-links { flex-direction: column; gap: .8rem; }
  .footer-copy { font-size: .7rem; }
}
