/* Google Fonts wird performant über <link> im HTML-Head geladen, nicht per @import (siehe generate.py) */

:root {
  --waldgruen: #355E3B;
  --waldgruen-dark: #294a2e;
  --salbei: #A8B89A;
  --creme: #F8F5F0;
  --sand: #D9CBB6;
  --braun: #4A4038;
  --muted: #8A9A7E;
  --line: #E4DED3;
  --max: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--creme);
  color: var(--braun);
  font-family: 'Lato', -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--waldgruen);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
h3 { font-size: 1.4rem; }

p { margin: 0 0 1.1em; }

a { color: var(--waldgruen); }

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin: 0 0 0.9em;
  display: block;
}

.lede {
  font-size: 1.15rem;
  color: var(--braun);
  max-width: 62ch;
}

.italic-note { font-style: italic; color: var(--braun); }

/* ---------- Navigation ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 245, 240, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img { width: 34px; height: 34px; }
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--waldgruen);
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--braun);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 1.5px;
  background: var(--waldgruen);
  transition: right 0.25s ease;
}
.nav-links a:hover::after { right: 0; }
.nav-links a.active { color: var(--waldgruen); }
.nav-links a.active::after { right: 0; }
.nav-cta {
  background: var(--waldgruen);
  color: var(--creme) !important;
  padding: 10px 20px;
  border-radius: 2px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--waldgruen-dark); }
.nav-toggle { display: none; }

@media (max-width: 820px) {
  .nav-links { position: fixed; inset: 68px 0 0 0; background: var(--creme); flex-direction: column; align-items: flex-start; padding: 28px 32px; gap: 20px; transform: translateY(-110%); transition: transform 0.3s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: block; background: none; border: none; font-size: 1.6rem; color: var(--waldgruen); cursor: pointer; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 64px 0 40px;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-illustration { width: 100%; height: auto; }
.hero-copy { }
.hero-copy .display-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: var(--waldgruen);
  margin-bottom: 0.4em;
}
.hero-copy p.lede { margin-bottom: 1.6em; }

@media (prefers-reduced-motion: no-preference) {
  .js .hero-illustration { animation-name: fadeUp; animation-duration: 0.9s; animation-timing-function: ease; animation-delay: 0.15s; animation-fill-mode: both; }
  .js .hero-copy { animation-name: fadeUp; animation-duration: 0.9s; animation-timing-function: ease; animation-fill-mode: both; }
}

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

.bee-wrap { animation: none; }
@media (prefers-reduced-motion: no-preference) {
  .bee-wrap { animation: bee-float 4.5s ease-in-out infinite; transform-origin: 430px 255px; }
}
@keyframes bee-float {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  50% { transform: translate(6px, -8px) rotate(-3deg); }
}

@media (max-width: 820px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-illustration { order: -1; max-width: 280px; margin: 0 auto; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn-primary { background: var(--waldgruen); color: var(--creme); }
.btn-primary:hover { background: var(--waldgruen-dark); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--waldgruen); border: 1px solid var(--waldgruen); }
.btn-ghost:hover { background: var(--waldgruen); color: var(--creme); }

/* ---------- Sections ---------- */
section { padding: 64px 0; }
section.tinted { background: #F2EEE6; }
.section-head { max-width: 640px; margin-bottom: 40px; }
hr.rule { border: none; border-top: 1px solid var(--line); margin: 0; }

/* ---------- Cards (Leistungen-Kacheln, falls noch verwendet) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 820px) { .card-grid { grid-template-columns: 1fr; } }
.card {
  border: 1px solid var(--line);
  background: #FCFAF6;
  padding: 28px 26px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-3px); border-color: var(--salbei); }
.card h3 { margin-bottom: 0.4em; }
.card p { margin-bottom: 0; color: var(--braun); font-size: 0.98rem; }

/* ---------- Einstiegspunkte: redaktionelle Liste statt Card-Grid ---------- */
.entry-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 820px) { .entry-points { grid-template-columns: 1fr; gap: 32px; } }
.entry-point .numeral {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-style: italic;
  color: var(--sand);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.entry-point h3 { margin-bottom: 0.35em; }
.entry-point p { margin-bottom: 0; font-size: 0.98rem; }

/* ---------- Botanischer Divider zwischen Abschnitten ---------- */
.sprig-divider {
  display: flex;
  justify-content: center;
  padding: 8px 0 0;
}
.sprig-divider svg { width: 46px; height: auto; opacity: 0.75; }

/* ---------- Editorial-Zitat (persönliche Aussagen) ---------- */
.statement {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--waldgruen);
  line-height: 1.45;
  max-width: 720px;
  margin: 0;
}
.statement.indent { margin-left: clamp(0px, 8vw, 90px); }

/* ---------- Eigene Aufzählungszeichen ---------- */
ul.leaf-list { list-style: none; margin: 0; padding: 0; }
ul.leaf-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
}
ul.leaf-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  background: var(--salbei);
  border-radius: 0 60% 0 60%;
  transform: rotate(45deg);
}

/* ---------- Bee teaser (Startseite) ---------- */
.bee-teaser {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  max-width: fit-content;
}
.bee-teaser svg { width: 40px; height: 40px; flex-shrink: 0; }
.bee-teaser span { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; color: var(--waldgruen); border-bottom: 1px solid var(--sand); padding-bottom: 2px; }
.bee-teaser:hover span { border-color: var(--waldgruen); }

/* ---------- Highlight box ---------- */
.highlight {
  border-left: 3px solid var(--sand);
  background: #F2EEE6;
  padding: 20px 24px;
  font-size: 0.98rem;
}
.highlight.italic { font-style: italic; }

/* ---------- Ablauf steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  border-bottom: 3px solid var(--waldgruen);
  background: #FCFAF6;
  padding: 22px 20px;
}
.step .num { font-family:'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--sand); display:block; margin-bottom: 6px; }
.step h3 { font-size: 1.15rem; margin-bottom: 0.3em; }
.step p { font-size: 0.92rem; margin-bottom: 0; }

/* ---------- Leistungen ---------- */
.service {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.service:last-child { border-bottom: none; }
.service h3 { margin-bottom: 0.25em; font-size: 1.2rem; }
.service .meta { color: var(--muted); font-size: 0.85rem; letter-spacing: 0.03em; text-transform: uppercase; }
.service .price { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--waldgruen); white-space: nowrap; }
.service p.desc { margin: 6px 0 0; font-size: 0.97rem; }
.service-group + .service-group { margin-top: 36px; }

/* ---------- Timeline biography ---------- */
.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.timeline li:last-child { border-bottom: none; }
.timeline .year { font-family: 'Cormorant Garamond', serif; color: var(--waldgruen); font-size: 1.2rem; }

/* ---------- Forms ---------- */
.form-field { margin-bottom: 20px; }
.form-field label { display:block; font-size: 0.85rem; letter-spacing:0.03em; text-transform:uppercase; color: var(--muted); margin-bottom: 6px; }
.form-field input, .form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #FCFAF6;
  padding: 12px 14px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--braun);
  border-radius: 2px;
}
.form-field input:focus, .form-field textarea:focus { outline: 2px solid var(--salbei); outline-offset: 1px; border-color: var(--waldgruen); }
.checkbox-row { display:flex; align-items:flex-start; gap: 10px; font-size: 0.92rem; }
.checkbox-row input { width: auto; margin-top: 4px; }

.booking-panel {
  border: 1px dashed var(--salbei);
  background: #FCFAF6;
  padding: 32px;
  text-align: center;
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--waldgruen);
  color: #DCE6DA;
  padding: 48px 0 28px;
  margin-top: 40px;
}
footer.site-footer a { color: #E9F0E6; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
footer.site-footer h4 { font-family:'Lato'; font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: #B9CBB4; margin-bottom: 14px; }
footer.site-footer ul { list-style: none; margin: 0; padding: 0; }
footer.site-footer li { margin-bottom: 8px; font-size: 0.94rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: #B9CBB4;
}
.footer-bottom a { color: #DCE6DA; }

/* ---------- Legal pages ---------- */
.legal h2 { margin-top: 2em; }
.legal p, .legal li { font-size: 0.97rem; }

/* Skip link for accessibility */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--waldgruen); color: var(--creme);
  padding: 10px 16px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible { outline: 2px solid var(--waldgruen); outline-offset: 2px; }
