/* ==========================================================================
   BindungsBlume – Landingpage
   Tokens aus dem BindungsBlume Design System (Lora + Nunito, Terracotta/Sage/Blush)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Nunito:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Farben */
  --color-terracotta-50: #FBF4EF; --color-terracotta-100: #F5E6DA; --color-terracotta-200: #EAD1BC;
  --color-terracotta-300: #DDB99C; --color-terracotta-400: #D3B59B; --color-terracotta-500: #C49A78;
  --color-terracotta-600: #B98F6E; --color-terracotta-700: #96704F; --color-terracotta-800: #6B5142;
  --color-terracotta-900: #3E2E26;
  --color-sage-50: #F3F6EF; --color-sage-100: #E5EBDC; --color-sage-200: #D4DFC5; --color-sage-300: #C7D1B9;
  --color-sage-400: #AEBE99; --color-sage-500: #8FA377; --color-sage-600: #71835B; --color-sage-700: #566345;
  --color-blush-50: #FDF3F1; --color-blush-100: #FBEAE6; --color-blush-300: #F3C9C2; --color-blush-500: #E4A79C;
  --color-blush-700: #B97769;
  --color-cream-50: #FEFCFA; --color-cream-100: #FAF6F0; --color-cream-200: #F3ECE2; --color-cream-300: #E8DECF;
  --color-ink-900: #4A3B32; --color-ink-700: #6B584C; --color-ink-500: #9C8879; --color-ink-300: #D8CDC2;
  --color-ink-100: #EFE8DF;
  --color-white: #FFFFFF;

  --accent-primary: var(--color-terracotta-600);
  --accent-primary-hover: var(--color-terracotta-700);
  --accent-primary-active: var(--color-terracotta-800);
  --accent-secondary: var(--color-sage-500);
  --accent-secondary-hover: var(--color-sage-600);
  --border-strong: var(--color-terracotta-400);
  --text-on-accent: var(--color-white);

  /* Typografie */
  --font-serif-display: 'Lora', Georgia, serif;
  --font-sans-body: 'Nunito', 'Segoe UI', sans-serif;
  --text-body-l: 1.125rem;
  --text-body: 1.0625rem;
  --text-small: 0.9375rem;
  --text-caption: 0.8125rem;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* Radien, Schatten, Motion */
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 3px rgba(107,81,66,0.08);
  --shadow-card: 0 8px 24px rgba(107,81,66,0.10), 0 2px 6px rgba(107,81,66,0.06);
  --shadow-float: 0 16px 40px rgba(107,81,66,0.14), 0 4px 12px rgba(107,81,66,0.08);
  --ease-soft: cubic-bezier(.34,.01,.16,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --duration-fast: 150ms;
  --duration-base: 240ms;

  /* Layout */
  --container-max: 1120px;
  --container-pad: clamp(20px, 5vw, 48px);
  --section-pad: clamp(64px, 9vw, 112px);
  --header-offset: 84px;
}

/* --------------------------------------------------------------------------
   Basis
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--color-cream-100);
  color: var(--color-ink-900);
  font-family: var(--font-sans-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

a { color: var(--color-terracotta-700); text-decoration-color: var(--color-terracotta-300); text-underline-offset: 3px; }
a:hover { color: var(--color-terracotta-800); }

:focus-visible { outline: 3px solid var(--color-terracotta-400); outline-offset: 3px; border-radius: 6px; }

::selection { background: var(--color-blush-100); }

.page { position: relative; overflow-x: clip; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

section[id] { scroll-margin-top: var(--header-offset); }

/* --------------------------------------------------------------------------
   Typografie
   -------------------------------------------------------------------------- */
.eyebrow {
  margin: 0 0 14px;
  font-size: var(--text-caption);
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-terracotta-700);
}
.eyebrow--sage { color: var(--color-sage-600); }
.eyebrow--sage-dark { color: var(--color-sage-700); }

.section-title {
  margin: 0 0 18px;
  font-family: var(--font-serif-display);
  font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--color-ink-900);
}

.lead {
  margin: 0;
  font-size: var(--text-body);
  line-height: 1.7;
  color: var(--color-ink-700);
  text-wrap: pretty;
}

.card-title {
  margin: 0 0 10px;
  font-family: var(--font-serif-display);
  font-weight: 500;
  font-size: 1.3125rem;
  color: var(--color-ink-900);
}

/* --------------------------------------------------------------------------
   Buttons (Design-System: Button)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  background: var(--accent-primary);
  color: var(--text-on-accent);
  font-family: var(--font-sans-body);
  font-size: var(--text-body);
  font-weight: var(--weight-semibold);
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  min-height: 44px;
  transition: opacity var(--duration-base) var(--ease-out),
              transform var(--duration-fast) var(--ease-out),
              background var(--duration-base);
}
.btn:hover { background: var(--accent-primary-hover); color: var(--text-on-accent); opacity: 0.9; }
.btn:active { transform: scale(0.97); }

.btn--lg { padding: 15px 32px; font-size: var(--text-body-l); min-height: 52px; }
.btn--sm { padding: 9px 18px; font-size: var(--text-small); }
.btn--block { width: 100%; }

.btn--outline { background: transparent; color: var(--accent-primary); border: 1.5px solid var(--border-strong); }
.btn--outline:hover { background: transparent; color: var(--accent-primary); }

.btn--secondary { background: var(--accent-secondary); color: #fff; }
.btn--secondary:hover { background: var(--accent-secondary-hover); color: #fff; }

.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: none;
  background: transparent;
  font-family: var(--font-sans-body);
  font-size: 1rem;
  font-weight: var(--weight-bold);
  color: var(--color-terracotta-700);
  cursor: pointer;
  transition: gap 280ms var(--ease-out);
}
.link-btn:hover { gap: 14px; color: var(--color-terracotta-800); }

/* --------------------------------------------------------------------------
   Fortschrittsbalken & Skip-Link
   -------------------------------------------------------------------------- */
.progress {
  position: fixed; top: 0; left: 0; z-index: 90;
  height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--color-sage-400), var(--color-terracotta-500));
  transform: scaleX(0);
  transform-origin: 0 50%;
}

.skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: 200;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  background: var(--color-white);
  color: var(--color-terracotta-700);
  font-weight: var(--weight-bold);
  text-decoration: none;
}
.skip-link:focus { left: 16px; }

/* --------------------------------------------------------------------------
   Header / Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: var(--color-cream-100);
  transition: box-shadow 320ms var(--ease-out);
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(107,81,66,0.10); }

.header-bar {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 18px var(--container-pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--color-ink-900);
}
.brand:hover { color: var(--color-ink-900); }
.brand__mark { display: block; width: 42px; height: 42px; transition: transform 900ms var(--ease-out); }
.brand__mark svg { display: block; }
.brand__name { font-family: var(--font-serif-display); font-size: 1.35rem; letter-spacing: -0.01em; }

.nav-desktop { display: flex; align-items: center; gap: 34px; }
.nav-desktop a { white-space: nowrap; }
.nav-desktop a:not(.btn) {
  font-weight: var(--weight-semibold); font-size: 1rem;
  color: var(--color-ink-900); text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}
@media (max-width: 1040px) {
  .nav-desktop { gap: 22px; }
  .nav-desktop .btn { padding-left: 18px; padding-right: 18px; }
}
.nav-desktop a:not(.btn):hover { color: var(--color-terracotta-700); }

.menu-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--color-terracotta-300);
  background: var(--color-white);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  cursor: pointer; padding: 0;
}
.menu-toggle span {
  display: block; height: 2px; width: 20px; border-radius: 2px;
  background: var(--color-terracotta-700);
  transition: transform 260ms var(--ease-out), opacity 200ms var(--ease-out), width 200ms var(--ease-out);
}
.menu-toggle span:nth-child(3) { width: 14px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { width: 20px; transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  background: var(--color-white);
  border-top: 1px solid var(--color-cream-300);
  padding: 18px var(--container-pad) 28px;
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: var(--shadow-card);
  animation: bbRise 400ms var(--ease-out) both;
}
.nav-mobile[hidden] { display: none; }
.nav-mobile a:not(.btn) {
  padding: 14px 4px;
  font-weight: var(--weight-semibold); font-size: 1.05rem;
  color: var(--color-ink-900); text-decoration: none;
  border-bottom: 1px solid var(--color-cream-200);
}
.nav-mobile a:not(.btn):last-of-type { border-bottom: none; }
.nav-mobile .btn { margin-top: 14px; }

@media (max-width: 859px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: inline-flex; }
}
@media (min-width: 860px) {
  .nav-mobile { display: none !important; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(36px, 6vw, 84px) var(--container-pad) clamp(56px, 8vw, 104px);
}

.hero__bloom {
  position: absolute; top: -120px; right: -180px;
  width: 620px; height: 620px; opacity: 0.3;
  animation: bbSpin 110s linear infinite;
  pointer-events: none;
}
.hero__bloom svg { width: 100%; height: 100%; display: block; }

.hero__glow {
  position: absolute; bottom: 40px; left: -140px;
  width: 340px; height: 340px; border-radius: 50%;
  background: var(--color-sage-100);
  filter: blur(46px); opacity: 0.75;
  animation: bbFloatB 26s var(--ease-soft) infinite;
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.hero__eyebrow {
  margin: 0 0 20px;
  display: inline-flex; align-items: center; gap: 10px;
  animation: bbRise 800ms var(--ease-out) both;
}
.hero__eyebrow::before {
  content: ""; display: inline-block; width: 26px; height: 1.5px;
  background: var(--color-terracotta-400);
}

.hero__title {
  margin: 0 0 26px;
  font-family: var(--font-serif-display);
  font-weight: 500;
  font-size: clamp(2.7rem, 5.4vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-ink-900);
  text-wrap: balance;
  animation: bbRise 900ms var(--ease-out) 120ms both;
}
.hero__title em { font-style: italic; color: var(--color-terracotta-600); }

.hero__text {
  margin: 0 0 34px;
  max-width: 30em;
  font-size: 1.1875rem;
  line-height: 1.7;
  color: var(--color-ink-700);
  text-wrap: pretty;
  animation: bbRise 900ms var(--ease-out) 240ms both;
}

.hero__actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  animation: bbRise 900ms var(--ease-out) 360ms both;
}

.hero__meta {
  margin: 30px 0 0;
  display: flex; align-items: center; gap: 10px;
  font-size: var(--text-small);
  color: var(--color-ink-700);
  animation: bbRise 900ms var(--ease-out) 480ms both;
}
.hero__meta svg { flex: 0 0 auto; }

.hero__figure {
  position: relative;
  justify-self: center;
  width: min(430px, 100%);
  margin: 0;
  animation: bbBloom 1200ms var(--ease-out) 200ms both;
}
.hero__blob--a {
  position: absolute; top: -34px; right: -30px;
  width: 250px; height: 250px; border-radius: 50%;
  background: var(--color-sage-200);
  filter: blur(4px); opacity: 0.6;
  animation: bbFloatA 22s var(--ease-soft) infinite;
}
.hero__blob--b {
  position: absolute; bottom: -40px; left: -36px;
  width: 210px; height: 210px; border-radius: 50%;
  background: var(--color-blush-100);
  opacity: 0.9;
  animation: bbFloatB 19s var(--ease-soft) infinite;
}
.hero__portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: 63% 37% 58% 42% / 55% 52% 48% 45%;
  animation: bbMorph 26s var(--ease-soft) infinite;
  box-shadow: 0 26px 60px rgba(107,81,66,0.16);
}
.hero__petal { position: absolute; pointer-events: none; }
.hero__petal--a { top: 8%; left: -6%; width: 26px; height: 26px; animation: bbPetal 11s var(--ease-soft) infinite; }
.hero__petal--b { top: 4%; right: 12%; width: 20px; height: 20px; animation: bbPetal 14s var(--ease-soft) 3.5s infinite; }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section { padding: var(--section-pad) 0; }
.section--white { background: var(--color-white); }
.section--sage { background: var(--color-sage-50); }
.section--clip { position: relative; overflow: clip; }

.section-intro { max-width: 640px; }
.section-intro--wide { max-width: 760px; }

/* Über mich */
.about-text {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(28px, 4vw, 56px);
}
.about-text p { margin: 0; font-size: var(--text-body); line-height: 1.75; color: var(--color-ink-700); text-wrap: pretty; }

.facts {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 24px;
}
.fact {
  background: var(--color-cream-50);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-card);
  transition: transform 420ms var(--ease-out), box-shadow 420ms var(--ease-out);
}
.fact:hover { transform: translateY(-6px); box-shadow: var(--shadow-float); }
.fact .card-title { margin: 16px 0 10px; }
.fact p { margin: 0; font-size: var(--text-small); line-height: 1.65; color: var(--color-ink-700); }

.pill {
  display: inline-flex; align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: var(--text-caption);
  font-weight: var(--weight-semibold);
}
.pill--terracotta { background: var(--color-terracotta-100); color: var(--color-terracotta-800); }
.pill--sage { background: var(--color-sage-100); color: var(--color-sage-700); }
.pill--blush { background: var(--color-blush-100); color: var(--color-blush-700); }

/* Angebote */
.offers__glow {
  position: absolute; top: 60px; right: -120px;
  width: 300px; height: 300px; border-radius: 50%;
  background: var(--color-blush-50);
  filter: blur(30px);
  animation: bbFloatA 30s var(--ease-soft) infinite;
  pointer-events: none;
}

.tabs-wrap { margin-top: clamp(36px, 4vw, 56px); }

.tabs {
  display: flex; flex-wrap: wrap; gap: 6px;
  border-bottom: 1.5px solid var(--color-cream-300);
  margin-bottom: 36px;
}
.tab {
  position: relative;
  border: none; background: transparent;
  padding: 14px 20px 18px;
  font-family: var(--font-sans-body);
  font-size: var(--text-body);
  font-weight: var(--weight-bold);
  color: var(--color-ink-700);
  cursor: pointer;
  transition: color 280ms var(--ease-out);
}
.tab::after {
  content: "";
  position: absolute; left: 12px; right: 12px; bottom: -1.5px;
  height: 3px; border-radius: 3px;
  background: var(--color-terracotta-600);
  transform: scaleX(0);
  transform-origin: 50% 50%;
  transition: transform 380ms var(--ease-out);
}
.tab[aria-selected="true"] { color: var(--color-terracotta-700); }
.tab[aria-selected="true"]::after { transform: scaleX(1); }

.tabpanel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}
.tabpanel.is-entering { animation: bbRise 620ms var(--ease-out) both; }

.offer__title {
  margin: 0 0 18px;
  font-family: var(--font-serif-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--color-ink-900);
}
.offer__text { margin: 0 0 26px; font-size: var(--text-body); line-height: 1.75; color: var(--color-ink-700); text-wrap: pretty; }

.checklist { margin: 0 0 26px; padding: 0; list-style: none; display: grid; gap: 12px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 1rem; line-height: 1.6; color: var(--color-ink-900); }
.checklist svg { flex: 0 0 auto; margin-top: 3px; }

.offer__note {
  margin: 0 0 22px;
  padding: 14px 18px;
  background: var(--color-cream-200);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-ink-700);
}

.formats-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 36px);
  box-shadow: var(--shadow-card);
}
.formats-card .eyebrow { margin-bottom: 20px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.chip {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--color-cream-100);
  font-size: var(--text-small);
  font-weight: var(--weight-semibold);
  color: var(--color-ink-900);
}
.formats-card__count {
  padding-top: 24px;
  border-top: 1px solid var(--color-cream-300);
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 24px;
}
.formats-card__count strong {
  font-family: var(--font-serif-display);
  font-weight: 400;
  font-size: 2.5rem; line-height: 1;
  color: var(--color-terracotta-600);
}
.formats-card__count span { font-size: var(--text-small); color: var(--color-ink-700); }

/* Pakete */
.free-call {
  margin: clamp(32px, 4vw, 48px) 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--shadow-card);
}
.free-call__text { max-width: 760px; }
.free-call__text .card-title { margin: 0 0 8px; }
.free-call__text p { margin: 0; font-size: 1rem; line-height: 1.65; color: var(--color-ink-700); }

.packages {
  margin-top: clamp(32px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: 24px;
  align-items: start;
}
.pkg--single { background: var(--color-cream-50); }
.pkg {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 34px);
  box-shadow: var(--shadow-card);
  animation: bbRise 560ms var(--ease-out) both;
  transition: transform 420ms var(--ease-out);
}
.pkg:hover { transform: translateY(-6px); }
.pkg:nth-child(2) { animation-delay: 110ms; }
.pkg:nth-child(3) { animation-delay: 220ms; }

.pkg__kicker {
  margin: 0 0 6px;
  font-size: var(--text-caption);
  font-weight: var(--weight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-ink-700);
}
.pkg__name {
  margin: 0 0 6px;
  font-family: var(--font-serif-display);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--color-ink-900);
}
.pkg__duration {
  margin: 0 0 22px; padding-bottom: 18px;
  border-bottom: 1px solid var(--color-cream-300);
  font-size: var(--text-small); color: var(--color-ink-700);
}
.pkg .checklist { margin-bottom: 0; gap: 14px; }
.pkg .checklist li { gap: 10px; font-size: var(--text-small); color: var(--color-ink-700); }
.pkg .checklist strong { color: var(--color-ink-900); font-weight: var(--weight-semibold); }
.pkg__optional {
  margin: 20px 0 0; padding-top: 16px;
  border-top: 1px dashed var(--color-cream-300);
  display: flex; align-items: flex-start; gap: 10px;
  font-size: var(--text-caption); line-height: 1.6;
  color: var(--color-sage-700);
}
.pkg__optional svg { flex: 0 0 auto; margin-top: 2px; }
.pkg__optional strong { font-weight: var(--weight-bold); }

.pkg--featured {
  border: 2px solid var(--color-terracotta-400);
  box-shadow: var(--shadow-float);
}
.pkg--featured:hover { transform: translateY(-8px); }
.pkg--featured .pkg__kicker { color: var(--color-terracotta-700); }
.pkg__badge {
  position: absolute; top: -14px; left: clamp(26px, 3vw, 34px);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: var(--color-terracotta-600);
  color: #fff;
  font-size: var(--text-caption);
  font-weight: var(--weight-bold);
}

.whatsapp-note {
  margin-top: 24px;
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--color-white);
  border: 1px solid var(--color-sage-200);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 28px);
  color: var(--color-sage-700);
}
.whatsapp-note svg { flex: 0 0 auto; margin-top: 2px; }
.whatsapp-note .card-title { margin: 0 0 8px; }
.whatsapp-note p { margin: 0; font-size: 1rem; line-height: 1.65; color: var(--color-ink-700); }

.packages-note {
  margin: clamp(32px, 4vw, 48px) 0 0;
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-ink-700);
}

/* Termin */
.booking { max-width: 720px; margin: 0 auto; padding: 0 var(--container-pad); text-align: center; }
.booking .section-title { margin-bottom: 18px; }
.booking .lead { margin: 0 auto 36px; max-width: 34em; line-height: 1.75; }

.bloom-badge { position: relative; width: 76px; height: 76px; margin: 0 auto 26px; }
.bloom-badge svg { position: relative; display: block; }
.bloom-badge__ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px solid var(--color-terracotta-300);
  animation: bbRing 3.6s var(--ease-out) infinite;
}
.bloom-badge__ring--sage { border-color: var(--color-sage-300); animation-delay: 1.2s; }

.steps {
  margin: 0 0 36px; padding: 0; list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}
@media (max-width: 700px) {
  .steps { grid-template-columns: 1fr; }
}
.step {
  position: relative;
  background: var(--color-cream-50);
  border: 1px solid var(--color-cream-300);
  border-radius: var(--radius-lg);
  padding: 24px 22px 22px;
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; margin-bottom: 14px;
  border-radius: 50%;
  background: var(--color-sage-100);
  color: var(--color-sage-700);
  font-family: var(--font-serif-display);
  font-size: 1.125rem; line-height: 1;
}
.step__title {
  margin: 0 0 8px;
  font-family: var(--font-sans-body);
  font-size: 1rem; font-weight: var(--weight-bold);
  color: var(--color-ink-900);
}
.step__text { margin: 0; font-size: var(--text-small); line-height: 1.65; color: var(--color-ink-700); }

.consent {
  background: var(--color-cream-100);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 44px);
  box-shadow: var(--shadow-card);
}
.consent[hidden] { display: none; }
.consent__title { margin: 0 0 12px; font-family: var(--font-serif-display); font-size: 1.3125rem; color: var(--color-ink-900); }
.consent__text { margin: 0 auto 24px; max-width: 40em; font-size: var(--text-small); line-height: 1.7; color: var(--color-ink-700); text-wrap: pretty; }
.consent__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.calendar {
  background: var(--color-cream-50);
  border: 1.5px dashed var(--color-terracotta-300);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 48px);
  text-align: left;
  animation: bbRise 520ms var(--ease-out) both;
}
.calendar[hidden] { display: none; }
.calendar--live { padding: 8px; border-style: solid; border-color: var(--color-cream-300); background: var(--color-white); }
.calendar__title { margin: 0 0 10px; font-family: var(--font-serif-display); font-size: 1.3125rem; color: var(--color-ink-900); }
.calendar__text { margin: 0 0 20px; font-size: var(--text-small); line-height: 1.7; color: var(--color-ink-700); }
.calendar__text code { background: var(--color-cream-200); padding: 2px 6px; border-radius: 6px; font-size: 0.9em; }
.calendar__placeholder {
  height: 260px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-ink-700);
  font-size: var(--text-small);
}
.calendar__embed { min-width: 280px; height: 780px; }
.calendar__embed iframe { border: 0; border-radius: var(--radius-md); }

.booking__alt { margin: 26px 0 0; font-size: var(--text-small); color: var(--color-ink-700); }

/* Kontakt */
.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.contact .section-title { margin-bottom: 28px; }
.contact__list { margin: 0; display: grid; gap: 22px; }
.contact__list dt {
  font-size: var(--text-caption);
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ink-700);
}
.contact__list dd { margin: 6px 0 0; font-size: var(--text-body); line-height: 1.6; color: var(--color-ink-900); }
.contact__list dd.is-muted { color: var(--color-ink-700); }

.area-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  box-shadow: var(--shadow-card);
}
.area-card__title { margin: 0 0 16px; font-family: var(--font-serif-display); font-weight: 500; font-size: 1.6rem; color: var(--color-ink-900); }
.area-card p { margin: 0 0 24px; font-size: 1rem; line-height: 1.7; color: var(--color-ink-700); text-wrap: pretty; }

.radar {
  position: relative; height: 150px; margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center;
}
.radar span { position: absolute; border-radius: 50%; }
.radar__r1 { width: 150px; height: 150px; background: var(--color-sage-50); }
.radar__r2 { width: 100px; height: 100px; background: var(--color-sage-100); }
.radar__r3 { width: 52px; height: 52px; background: var(--color-sage-200); }
.radar__pulse { width: 150px; height: 150px; border: 1.5px solid var(--color-terracotta-300); animation: bbRing 4.4s var(--ease-out) infinite; }
.radar__dot { position: relative !important; width: 11px; height: 11px; background: var(--color-terracotta-600); }
.radar__label {
  bottom: 6px; border-radius: 0 !important;
  font-size: var(--text-caption); font-weight: var(--weight-bold); color: var(--color-sage-700);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--color-terracotta-800);
  color: var(--color-cream-100);
  padding: clamp(52px, 7vw, 84px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: clamp(32px, 4vw, 64px);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand span { font-family: var(--font-serif-display); font-size: 1.3125rem; }
.footer-tagline { margin: 0; font-size: var(--text-small); line-height: 1.7; opacity: 0.82; }
.footer-heading {
  margin: 0 0 16px;
  font-size: var(--text-caption);
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
}
.footer-links { display: grid; gap: 10px; }
.footer-links a {
  font-size: var(--text-small);
  color: var(--color-cream-100);
  text-decoration: none;
  opacity: 0.86;
  transition: opacity var(--duration-fast) var(--ease-out);
}
.footer-links a:hover { opacity: 1; color: var(--color-cream-100); }
.footer-bottom {
  max-width: var(--container-max);
  margin: clamp(40px, 5vw, 64px) auto 0;
  padding: 24px var(--container-pad) 0;
  border-top: 1px solid rgba(250,246,240,0.16);
  font-size: var(--text-caption);
  opacity: 0.66;
}

/* --------------------------------------------------------------------------
   Rechtliche Seiten (Impressum, Datenschutz)
   -------------------------------------------------------------------------- */
.legal-page { min-height: 100vh; display: flex; flex-direction: column; }

.legal-header { background: var(--color-cream-100); border-bottom: 1px solid var(--color-cream-300); }
.legal-header__bar {
  max-width: 720px; margin: 0 auto;
  padding: 20px clamp(20px, 5vw, 40px);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.legal-header .brand__mark { width: 36px; height: 36px; }
.legal-header .brand__name { font-size: 1.2rem; }
.legal-header__back { font-size: var(--text-small); font-weight: var(--weight-bold); text-decoration: none; white-space: nowrap; }

.legal-main {
  flex: 1;
  width: 100%;
  max-width: 720px; margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 40px) clamp(56px, 8vw, 96px);
  animation: bbRise 620ms var(--ease-out) both;
}
.legal-main h1 {
  margin: 0 0 32px;
  font-family: var(--font-serif-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--color-ink-900);
}
.legal-main section { margin-bottom: 40px; }
.legal-main section:last-child { margin-bottom: 0; }
.legal-main h2 {
  margin: 0 0 14px;
  font-family: var(--font-serif-display);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--color-ink-900);
}
.legal-main p { margin: 0 0 14px; font-size: var(--text-body); line-height: 1.75; color: var(--color-ink-700); }
.legal-main p:last-child { margin-bottom: 0; }
.legal-main .is-muted { font-size: var(--text-small); line-height: 1.7; color: var(--color-ink-500); }

.legal-notice {
  margin: 0 0 40px !important;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: var(--color-cream-200);
  font-size: var(--text-small) !important;
  line-height: 1.7 !important;
}
.legal-notice--sage { background: var(--color-sage-50); margin: 0 !important; }

.legal-footer { background: var(--color-terracotta-800); color: var(--color-cream-100); padding: 40px 0; }
.legal-footer__bar {
  max-width: 720px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; align-items: center;
  font-size: 0.875rem;
}
.legal-footer__bar span { opacity: 0.8; }
.legal-footer__links { display: flex; gap: 24px; }
.legal-footer__links a { color: var(--color-cream-100); text-decoration: none; opacity: 0.86; }
.legal-footer__links a:hover { opacity: 1; color: var(--color-cream-100); }

/* --------------------------------------------------------------------------
   Scroll-Reveal
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 900ms var(--ease-out) var(--reveal-delay, 0ms),
              transform 900ms var(--ease-out) var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   Keyframes
   -------------------------------------------------------------------------- */
@keyframes bbSpin { to { transform: rotate(360deg); } }
@keyframes bbRise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes bbBloom { from { opacity: 0; transform: scale(0.82) rotate(-14deg); } to { opacity: 1; transform: none; } }
@keyframes bbFloatA { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(22px, -30px) scale(1.06); } }
@keyframes bbFloatB { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-26px, 24px) scale(1.08); } }
@keyframes bbMorph {
  0%, 100% { border-radius: 63% 37% 58% 42% / 55% 52% 48% 45%; }
  33% { border-radius: 42% 58% 39% 61% / 48% 42% 58% 52%; }
  66% { border-radius: 55% 45% 62% 38% / 40% 58% 42% 60%; }
}
@keyframes bbPetal {
  0% { opacity: 0; transform: translateY(-10px) rotate(0deg); }
  12% { opacity: .75; }
  100% { opacity: 0; transform: translateY(320px) translateX(60px) rotate(220deg); }
}
@keyframes bbRing { 0% { transform: scale(.72); opacity: .55; } 100% { transform: scale(1.35); opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: 1ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* --------------------------------------------------------------------------
   Print
   -------------------------------------------------------------------------- */
@media print {
  .progress, .menu-toggle, .nav-mobile, .hero__bloom, .hero__glow, .hero__blob--a, .hero__blob--b, .hero__petal { display: none !important; }
  .site-header { position: static; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
