/* ==========================================================================
   Julia Badum – Naturheilpraxis Zürich
   Design system
   ========================================================================== */

:root {
  /* Brand greens — base #47584C sampled from the practice logo */
  --ink:          #1B241E;
  --forest-900:   #232F26;
  --forest-800:   #2E3D32;
  --forest-700:   #3A4B3E;
  --forest:       #47584C;
  --forest-500:   #5C6F60;
  --forest-300:   #93A395;
  --sage:         #B6C2B4;
  --sage-soft:    #D9E0D5;

  /* Warm neutrals */
  --paper:        #FCFAF6;
  --cream:        #F5F1E8;
  --cream-deep:   #EDE7DA;
  --sand:         #E2D9C7;
  --line:         #DDD5C5;

  /* Accent — warm clay, used sparingly for the low-friction path */
  --clay:         #A96A43;
  --clay-soft:    #C98D63;
  --gold:         #B9954F;

  --white:        #FFFFFF;

  /* Type */
  --serif: "Newsreader", "Iowan Old Style", Georgia, serif;
  --sans:  "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --w-wide: 1280px;
  --w-page: 1140px;
  --w-text: 680px;
  --gutter: clamp(1.25rem, 5vw, 3.5rem);
  --section: clamp(4.5rem, 9vw, 8.5rem);

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(27, 36, 30, .05), 0 4px 14px rgba(27, 36, 30, .05);
  --shadow-md: 0 2px 6px rgba(27, 36, 30, .06), 0 18px 44px rgba(27, 36, 30, .09);
  --shadow-lg: 0 4px 12px rgba(27, 36, 30, .07), 0 30px 70px rgba(27, 36, 30, .13);

  --ease: cubic-bezier(.2, .7, .3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.68;
  color: var(--forest-800);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; }
/* width/height attributes must not fight CSS aspect-ratio */
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }

::selection { background: var(--forest-700); color: var(--paper); }

:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  color: var(--forest-900);
  letter-spacing: -.012em;
  font-optical-sizing: auto;
  text-wrap: balance;
}

h1 { font-size: clamp(2.55rem, 6vw, 4.4rem); line-height: 1.03; letter-spacing: -.025em; }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); line-height: 1.08; letter-spacing: -.02em; }
h3 { font-size: clamp(1.3rem, 2.1vw, 1.6rem); line-height: 1.2; }
h4 { font-size: 1.1rem; line-height: 1.3; }

p { text-wrap: pretty; }

.eyebrow {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--forest-500);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--forest-300);
  flex: none;
}
.eyebrow--center { justify-content: center; }
.eyebrow--plain::before { display: none; }

.lead {
  font-size: clamp(1.1rem, 1.7vw, 1.28rem);
  line-height: 1.62;
  color: var(--forest-700);
}

.muted { color: var(--forest-500); }
.small { font-size: .93rem; line-height: 1.6; }
.tiny  { font-size: .82rem; line-height: 1.55; }

/* Serif pull-quote / statement */
.statement {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.1vw, 2.25rem);
  line-height: 1.32;
  letter-spacing: -.015em;
  font-weight: 300;
  color: var(--forest-900);
  text-wrap: balance;
}
.statement em { font-style: italic; color: var(--forest); }

/* ---------- Layout ---------- */
.wrap    { width: 100%; max-width: var(--w-page); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--wide { max-width: var(--w-wide); }
.wrap--text { max-width: var(--w-text); }

.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.bg-paper { background: var(--paper); }
.bg-cream { background: var(--cream); }
.bg-deep  { background: var(--cream-deep); }
.bg-forest {
  background: var(--forest-900);
  color: var(--sage-soft);
}
.bg-forest h1, .bg-forest h2, .bg-forest h3, .bg-forest h4 { color: var(--paper); }
.bg-forest .eyebrow { color: var(--sage); }
.bg-forest .eyebrow::before { background: var(--forest-500); }
.bg-forest .muted { color: var(--forest-300); }
.bg-forest .statement { color: var(--paper); }
.bg-forest .statement em { color: var(--sage); }

.stack > * + * { margin-top: 1.1rem; }
.stack-lg > * + * { margin-top: 1.8rem; }

.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head p { margin-top: 1.2rem; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--forest-800);
  --btn-fg: var(--paper);
  --btn-bd: var(--forest-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1rem 1.75rem;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform .35s var(--ease), background-color .35s var(--ease),
              color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--forest-800);
  --btn-bd: var(--forest-300);
}
.btn--ghost:hover { --btn-bg: var(--forest-800); --btn-fg: var(--paper); --btn-bd: var(--forest-800); }

.btn--light {
  --btn-bg: var(--paper);
  --btn-fg: var(--forest-900);
  --btn-bd: var(--paper);
}
.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: var(--paper);
  --btn-bd: rgba(252, 250, 246, .38);
}
.btn--outline-light:hover { --btn-bg: var(--paper); --btn-fg: var(--forest-900); --btn-bd: var(--paper); }

.btn--clay { --btn-bg: var(--clay); --btn-fg: var(--paper); --btn-bd: var(--clay); }

.btn--sm { padding: .72rem 1.3rem; font-size: .74rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; align-items: center; }

/* Inline text link with arrow */
.link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--forest-700);
  text-decoration: none;
  padding-bottom: .3rem;
  border-bottom: 1px solid var(--line);
  transition: color .3s var(--ease), border-color .3s var(--ease), gap .3s var(--ease);
}
.link::after { content: "→"; transition: transform .3s var(--ease); }
.link:hover { color: var(--forest-900); border-color: var(--forest-700); }
.link:hover::after { transform: translateX(4px); }
.link--light { color: var(--sage-soft); border-color: rgba(252,250,246,.25); }
.link--light:hover { color: var(--paper); border-color: var(--paper); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 250, 246, .86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), background-color .4s var(--ease), box-shadow .4s var(--ease);
}
.header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 20px rgba(27, 36, 30, .05);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
  padding-block: .7rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex: none;
}
.brand img { width: 36px; height: 36px; flex: none; }
/* Wortmarke wie im Original: weit gesperrte Serif, einzeilig, ohne Zusatz */
.brand__name {
  font-family: var(--serif);
  font-size: clamp(1.02rem, 1.5vw, 1.24rem);
  font-weight: 400;
  letter-spacing: .15em;
  line-height: 1;
  color: var(--forest-900);
  white-space: nowrap;
}

.nav { display: flex; align-items: center; gap: .3rem; }
.nav a {
  position: relative;
  white-space: nowrap;
  padding: .55rem .75rem;
  font-size: .88rem;
  font-weight: 450;
  text-decoration: none;
  color: var(--forest-700);
  border-radius: var(--r-sm);
  transition: color .25s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: .75rem; right: .75rem; bottom: .3rem;
  height: 1px;
  background: var(--forest-700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav a:hover { color: var(--forest-900); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }

/* Nav dropdown */
.nav__has-menu { position: relative; }
.nav__toggle {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem .75rem;
  font-size: .88rem; font-weight: 450;
  background: none; border: 0; cursor: pointer;
  color: var(--forest-700);
  border-radius: var(--r-sm);
  transition: color .25s var(--ease);
}
.nav__toggle::after {
  content: ""; width: 8px; height: 8px;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .3s var(--ease);
}
.nav__toggle:hover { color: var(--forest-900); }
.nav__toggle[aria-expanded="true"] { color: var(--forest-900); }
.nav__toggle[aria-expanded="true"]::after { transform: translateY(1px) rotate(-135deg); }

.nav__menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -.5rem;
  width: 340px;
  padding: .6rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: .1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.nav__has-menu:hover .nav__menu,
.nav__menu.is-open { opacity: 1; visibility: visible; transform: none; }
.nav__menu a {
  display: grid; gap: .15rem;
  padding: .8rem .9rem;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: background-color .2s var(--ease);
}
.nav__menu a::after { display: none; }
.nav__menu a:hover { background: var(--cream); }
.nav__menu a b { font-weight: 500; font-size: .95rem; color: var(--forest-900); }
.nav__menu a span { font-size: .8rem; color: var(--forest-500); line-height: 1.4; }

.header__actions { display: flex; align-items: center; gap: .7rem; flex: none; }
.header__tel {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .88rem;
  text-decoration: none;
  color: var(--forest-700);
  padding: .5rem .2rem;
}
.header__tel:hover { color: var(--forest-900); }
.header__tel svg { width: 15px; height: 15px; }

.burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: none; border: 1px solid var(--line);
  border-radius: var(--r-pill);
  cursor: pointer;
}
.burger span {
  display: block; position: relative;
  width: 17px; height: 1.5px; background: var(--forest-800);
  transition: transform .35s var(--ease), background-color .2s;
}
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0;
  width: 17px; height: 1.5px; background: var(--forest-800);
  transition: transform .35s var(--ease), top .3s var(--ease);
}
.burger span::before { top: -5.5px; }
.burger span::after  { top: 5.5px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--paper);
  padding: 2rem var(--gutter) 0;
  overflow-y: auto;
  z-index: 99;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.drawer.is-open { opacity: 1; transform: none; visibility: visible; }
.drawer a.drawer__link {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--forest-900);
  text-decoration: none;
  padding: .62rem 0;
  border-bottom: 1px solid var(--line);
}
/* Sticky, damit der Buchen-Button unabhängig von der Anzahl Menüpunkte
   immer sichtbar bleibt – die Links darüber scrollen. */
.drawer__foot {
  position: sticky;
  bottom: 0;
  margin-top: 1.6rem;
  padding: 1.2rem 0 1.6rem;
  display: grid;
  gap: .8rem;
  background: var(--paper);
  box-shadow: 0 -14px 18px -14px rgba(22, 30, 24, .18);
}

/* ---------- Hero (Vollbild) ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  /* Hero + Header füllen exakt eine Bildschirmhöhe */
  min-height: calc(100svh - var(--header-h, 98px));
  padding-block: clamp(3rem, 7vh, 6rem);
  background: var(--forest-900);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 84%;
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(94deg,
      rgba(22, 30, 24, .90) 0%,
      rgba(22, 30, 24, .82) 33%,
      rgba(22, 30, 24, .46) 51%,
      rgba(22, 30, 24, .12) 74%,
      rgba(22, 30, 24, 0)   100%),
    linear-gradient(180deg, rgba(22, 30, 24, .5) 0%, rgba(22, 30, 24, 0) 26%),
    linear-gradient(0deg, rgba(22, 30, 24, .42) 0%, rgba(22, 30, 24, 0) 22%);
}

.hero__inner { width: 100%; }
.hero__text { max-width: 34rem; }
.hero h1 { color: var(--paper); margin-bottom: 1.4rem; }
.hero h1 em { font-style: italic; font-weight: 300; color: var(--sage); }
.hero .eyebrow { color: var(--sage); }
.hero .eyebrow::before { background: rgba(214, 224, 210, .55); }
.hero__lead { color: var(--sage-soft); max-width: 31rem; margin-bottom: 2.2rem; }
.hero .btn-row { margin-bottom: 2.4rem; }
.hero .assure { color: var(--sage-soft); }
.hero .assure svg { color: var(--sage); }

/* Scroll-Hinweis */
.hero__cue {
  position: absolute;
  left: 50%; bottom: 1.8rem;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1px solid rgba(252, 250, 246, .4);
  border-radius: var(--r-pill);
  display: grid;
  justify-items: center;
  padding-top: 8px;
  z-index: 1;
}
.hero__cue span {
  width: 3px; height: 7px;
  border-radius: var(--r-pill);
  background: rgba(252, 250, 246, .85);
  animation: cue 2s var(--ease) infinite;
}
@keyframes cue {
  0%, 100% { transform: translateY(0); opacity: 1; }
  55%      { transform: translateY(12px); opacity: 0; }
}
@media (max-height: 700px) { .hero__cue { display: none; } }

/* Reassurance line under CTA */
.assure {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  font-size: .86rem; color: var(--forest-500);
}
.assure span { display: inline-flex; align-items: center; gap: .45rem; }
.assure svg { width: 13px; height: 13px; flex: none; color: var(--forest-300); }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--forest-900); color: var(--sage-soft); }
.trustbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem 2.5rem;
  padding-block: 1.5rem;
}
/* Die Zahlen als eigener Block, damit die Auszeichnung links steht und nicht
   mitten in der Reihe umbricht. */
.trustbar__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2.2rem;
}
.trust-item {
  display: flex; align-items: baseline; gap: .6rem;
  font-size: .88rem;
}
.trust-item b {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--paper);
  line-height: 1;
}
.trust-item span { color: var(--forest-300); }

/* ---------- Auszeichnung (TenBest) ---------- */
/* Das Badge ist ein schwarzes Quadrat mit mintgrünem Rand – auf dem dunklen
   Forest-Grund der Trustbar sitzt es ohne Bruch, auf hellem Grund braucht es
   den Rahmen (.award--light). */
.award {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}
.award img {
  width: 78px; height: 78px;
  flex: none;
  border-radius: 6px;
}
.award__text { display: grid; gap: .15rem; line-height: 1.35; }
.award__text b {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--paper);
}
.award__text span { font-size: .82rem; color: var(--forest-300); }
.award:hover .award__text b { text-decoration: underline; text-underline-offset: 3px; }

/* Auf hellem Grund (z. B. Über mich) */
.award--light {
  gap: 1.4rem;
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper);
}
.award--light img { width: 104px; height: 104px; }
.award--light .award__text b { color: var(--forest-900); font-size: 1.25rem; }
.award--light .award__text span { color: var(--forest-500); }
@media (max-width: 620px) {
  .award--light { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ---------- Symptom chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .72rem 1.15rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: .94rem;
  color: var(--forest-700);
  text-decoration: none;
  transition: all .3s var(--ease);
}
.chip::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--forest-300);
  transition: background-color .3s var(--ease), transform .3s var(--ease);
  flex: none;
}
.chip:hover {
  background: var(--forest-800);
  border-color: var(--forest-800);
  color: var(--paper);
  transform: translateY(-2px);
}
.chip:hover::before { background: var(--clay-soft); transform: scale(1.5); }

/* ---------- Offer cards ---------- */
.offers { display: grid; gap: clamp(1.5rem, 2.6vw, 2rem); }
@media (min-width: 820px)  { .offers { grid-template-columns: repeat(2, 1fr); } }

.offer {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.offer:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--sand); }
.offer__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--cream-deep); }
.offer__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.offer:hover .offer__media img { transform: scale(1.045); }
.offer__body { padding: clamp(1.6rem, 2.6vw, 2.2rem); display: flex; flex-direction: column; flex: 1; }
.offer__body h3 { margin-bottom: .55rem; }
.offer__promise {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--forest);
  margin-bottom: 1rem;
}
.offer__body > p { margin-bottom: 1.4rem; }
.offer ul {
  list-style: none; padding: 0; margin: 0 0 1.8rem;
  display: grid; gap: .5rem;
  font-size: .95rem; color: var(--forest-700);
}
.offer ul li { display: flex; gap: .65rem; align-items: flex-start; }
.offer ul li::before {
  content: ""; flex: none;
  width: 6px; height: 6px; margin-top: .55rem;
  border-radius: 50%;
  background: var(--sage);
}
.offer .link { margin-top: auto; align-self: flex-start; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: clamp(1.8rem, 3vw, 2.6rem); counter-reset: step; }
@media (min-width: 780px) { .steps { grid-template-columns: repeat(3, 1fr); } }

.step { position: relative; padding-top: 2.6rem; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute; top: 0; left: 0;
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--sand);
}
.step h3 { margin-bottom: .8rem; }
.step p { font-size: .99rem; }
.bg-forest .step::before { color: var(--forest-700); }

/* ---------- Split feature ---------- */
.split {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--media-first > .split__media { order: -1; }
  .split--wide-text { grid-template-columns: 1.15fr .85fr; }
}
.split__media { position: relative; }
.split__media img {
  width: 100%;
  border-radius: var(--r-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.split__media--wide img { aspect-ratio: 4 / 3; }
/* Für Bilder, die nicht beschnitten werden dürfen (z. B. Flyer) */
.split__media--full img { aspect-ratio: auto; object-fit: contain; height: auto; }

/* Seal badge over image */
.seal {
  position: absolute;
  right: -22px; bottom: 34px;
  width: 132px; height: 132px;
  z-index: 2;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  padding: 1rem;
}
.seal--left { right: auto; left: -22px; }

/* TenBest-Siegel als Aufkleber auf dem Über-mich-Porträt der Startseite.
   Gegenstück zum .seal unten links, deshalb oben rechts – und in einer hellen
   Karte, weil das Siegel selbst ein schwarzes Quadrat ist und sonst im Bild
   untergeht. */
.award-stamp {
  position: absolute;
  right: -22px; top: 30px;
  z-index: 2;
  display: block;
  padding: 9px;
  border-radius: var(--r-md);
  background: var(--paper);
  box-shadow: var(--shadow-md);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.award-stamp img {
  display: block;
  width: 122px; height: 122px;
  border-radius: 4px;
}
.award-stamp:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
@media (max-width: 620px) {
  .award-stamp { right: 8px; top: 8px; padding: 7px; }
  .award-stamp img { width: 92px; height: 92px; }
}
.seal b {
  display: block;
  font-family: var(--serif);
  font-size: 1.85rem;
  line-height: 1;
  color: var(--forest-900);
  font-weight: 400;
}
.seal span {
  display: block;
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--forest-500);
  margin-top: .38rem;
  line-height: 1.35;
}

/* ---------- Credential list ---------- */
.creds { display: grid; gap: 2rem; }
@media (min-width: 700px) { .creds { grid-template-columns: repeat(3, 1fr); } }
.creds h4 {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--forest-500);
  padding-bottom: .8rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.creds ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; font-size: .96rem; }
.bg-forest .creds h4 { color: var(--sage); border-color: var(--forest-700); }

/* ---------- Price cards ---------- */
.prices {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 265px), 1fr));
}

.price {
  display: flex; flex-direction: column;
  padding: clamp(1.6rem, 2.6vw, 2.1rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.price--feature { border-color: var(--forest-700); border-width: 1.5px; position: relative; }
.price__flag {
  position: absolute; top: -11px; left: clamp(1.6rem, 2.6vw, 2.1rem);
  background: var(--forest-800); color: var(--paper);
  font-size: .64rem; letter-spacing: .13em; text-transform: uppercase;
  padding: .3rem .75rem; border-radius: var(--r-pill);
}
.price h3 { font-size: 1.32rem; margin-bottom: .3rem; }
.price__dur { font-size: .85rem; color: var(--forest-500); margin-bottom: 1.2rem; }
.price__amt {
  font-family: var(--serif);
  font-size: 2.4rem; line-height: 1;
  color: var(--forest-900);
  margin-bottom: 1.2rem;
}
.price__amt small { font-size: .95rem; font-family: var(--sans); color: var(--forest-500); }
.price p { font-size: .96rem; margin-bottom: 1.6rem; }
.price .btn { margin-top: auto; white-space: normal; text-align: center; }

/* ---------- Booking list ---------- */
.booking-group { margin-bottom: clamp(3rem, 5vw, 4.5rem); }
.booking-group__head {
  display: flex; align-items: baseline; gap: 1rem;
  padding-bottom: 1rem; margin-bottom: 1.6rem;
  border-bottom: 1px solid var(--line);
}
.booking-group__head h2 { font-size: clamp(1.55rem, 2.6vw, 2rem); }

.slot {
  display: grid;
  gap: 1.2rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 760px) {
  .slot { grid-template-columns: 1fr auto auto; gap: 2rem; }
}
.slot:last-child { border-bottom: 0; }
.slot__main h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.slot__main p { font-size: .95rem; color: var(--forest-500); max-width: 46ch; }
.slot__meta {
  display: flex; flex-direction: column; gap: .2rem;
  font-size: .88rem; color: var(--forest-500);
  white-space: nowrap;
}
.slot__meta b { font-family: var(--serif); font-size: 1.28rem; color: var(--forest-900); font-weight: 400; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.9vw, 1.35rem);
  color: var(--forest-900);
  transition: color .25s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--forest); }
.faq summary::after {
  content: "";
  flex: none;
  width: 13px; height: 13px;
  margin-top: .4rem;
  background: currentColor;
  transition: transform .35s var(--ease);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%23000' stroke-width='2.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%23000' stroke-width='2.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq__body { padding: 0 0 1.7rem; max-width: 60ch; }
.faq__body p + p { margin-top: .9rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band__bg { position: absolute; inset: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(27,36,30,.94) 0%, rgba(27,36,30,.86) 46%, rgba(27,36,30,.6) 100%);
}
.cta-band__inner { position: relative; padding-block: clamp(4rem, 8vw, 7rem); }
.cta-band h2, .cta-band h3 { color: var(--paper); }
.cta-band h2 { max-width: 20ch; }
.cta-band .eyebrow { color: var(--sage); }
.cta-band .eyebrow::before { background: var(--forest-500); }
.cta-band p { color: var(--sage-soft); max-width: 46ch; margin-top: 1.3rem; }
.cta-band .btn-row { margin-top: 2.4rem; }

/* Two-path CTA */
.paths { display: grid; gap: 1.25rem; margin-top: 2.6rem; }
@media (min-width: 760px) { .paths { grid-template-columns: 1fr 1fr; } }
.path {
  padding: 1.8rem;
  border: 1px solid rgba(252,250,246,.2);
  border-radius: var(--r-lg);
  background: rgba(252,250,246,.04);
  display: flex; flex-direction: column;
}
.path h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.path p { margin: 0 0 1.5rem; font-size: .96rem; color: var(--sage-soft); }
.path .btn { align-self: flex-start; margin-top: auto; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .45rem; }
.field label { font-size: .8rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--forest-500); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: .9rem 1.1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 1rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--forest-500);
  box-shadow: 0 0 0 3px rgba(71, 88, 76, .1);
}
.field--row { display: grid; gap: 1.1rem; }
@media (min-width: 560px) { .field--row { grid-template-columns: 1fr 1fr; } }

.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .87rem; color: var(--forest-500); }
.consent input { width: 17px; height: 17px; margin-top: .25rem; flex: none; accent-color: var(--forest-700); }

.form-note { font-size: .87rem; color: var(--forest-500); }
.form-status { font-size: .93rem; padding: .8rem 1rem; border-radius: var(--r-md); display: none; }
.form-status.is-ok   { display: block; background: var(--sage-soft); color: var(--forest-900); }
.form-status.is-err  { display: block; background: #F6E3D9; color: #7C3A18; }

.info-block { display: grid; gap: 1.6rem; }
.info-card {
  padding: 1.6rem 1.8rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.info-card h3 { font-size: 1.18rem; margin-bottom: .8rem; }
.info-card p, .info-card a:not(.btn) { font-size: .98rem; }
/* :not(.btn) – sonst überschreibt diese Regel die Button-Textfarbe */
.info-card a:not(.btn) { color: var(--forest-700); }
.info-card dl { display: grid; gap: .5rem; margin: 0; }
.info-row { display: flex; gap: .8rem; align-items: baseline; }
.info-row dt { flex: none; width: 5.5rem; font-size: .82rem; letter-spacing: .05em; text-transform: uppercase; color: var(--forest-500); }
.info-row dd { margin: 0; }

/* ---------- Prose (legal / long text) ---------- */
.prose { max-width: var(--w-text); }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 1.95rem); margin-top: 2.8rem; margin-bottom: .9rem; }
.prose h3 { font-size: 1.2rem; margin-top: 2rem; margin-bottom: .6rem; }
.prose p, .prose ul, .prose ol { margin-bottom: 1.1rem; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li { margin-bottom: .4rem; }
.prose a { color: var(--forest-700); text-underline-offset: 3px; }

/* ---------- Page hero (subpages) ---------- */
.pagehero {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(3rem, 6vw, 5.5rem);
}
.pagehero__inner { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 900px) { .pagehero__inner { grid-template-columns: 1.05fr .95fr; } }
.pagehero__inner--single { grid-template-columns: 1fr !important; max-width: 46rem; }
.pagehero__inner--single .lead { max-width: 40rem; }
.pagehero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.35rem);
  line-height: 1.06;
  margin-bottom: 1.3rem;
}
.pagehero__media img { width: 100%; border-radius: var(--r-lg); aspect-ratio: 5/4; object-fit: cover; }

.crumb {
  display: flex; gap: .5rem; align-items: center;
  font-size: .8rem; color: var(--forest-500);
  margin-bottom: 1.5rem;
}
.crumb a { text-decoration: none; }
.crumb a:hover { color: var(--forest-900); }

/* ---------- Method / list grid ---------- */
.tiles { display: grid; gap: 1.25rem; }
@media (min-width: 700px)  { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .tiles--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1040px) { .tiles--4 { grid-template-columns: repeat(4, 1fr); } }

.tile {
  padding: clamp(1.5rem, 2.4vw, 2rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tile h3 { font-size: 1.22rem; margin-bottom: .6rem; }
.tile p { font-size: .97rem; }
.tile__dur {
  display: inline-block;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--forest-500);
  margin-bottom: .8rem;
}

a.tile { display: block; color: inherit; text-decoration: none; }
a.tile .link { margin-top: 1rem; }

/* Kachel mit Bildkopf (Produkte, Teaser) */
.tile--media { padding: 0; overflow: hidden; }
.tile--media > img {
  display: block; width: 100%;
  aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 62%;
}
.tile__body { padding: clamp(1.5rem, 2.4vw, 2rem); }

/* Checklist */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: .85rem; }
/* Kein Flex: sonst wird jedes Inline-Element (z. B. <strong>) ein eigenes
   Flex-Item und `gap` reisst mitten im Satz eine Lücke auf. */
.checklist li { position: relative; padding-left: 1.85rem; }
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: .18rem;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--sage-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5' stroke='%2347584C' stroke-width='2.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 13px; background-position: center; background-repeat: no-repeat;
}
.bg-forest .checklist li::before { background-color: var(--forest-700); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5' stroke='%23D9E0D5' stroke-width='2.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }

/* Two-column list */
.cols-2 { columns: 2; column-gap: 2.5rem; }
@media (max-width: 640px) { .cols-2 { columns: 1; } }
.cols-2 > * { break-inside: avoid; }

/* .checklist ist ein Grid – dort greift `columns` nicht, also echte Spalten */
.checklist.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 2.5rem; }
@media (max-width: 700px) { .checklist.cols-2 { grid-template-columns: 1fr; } }

/* ---------- Insurance strip ---------- */
.badges { display: flex; flex-wrap: wrap; gap: .6rem; }
.badge {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .5rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: .82rem; letter-spacing: .06em;
  color: var(--forest-700);
  background: var(--paper);
}
.bg-forest .badge { background: rgba(252,250,246,.06); border-color: rgba(252,250,246,.2); color: var(--sage-soft); }

/* ---------- Footer ---------- */
.footer { background: var(--forest-900); color: var(--forest-300); padding-block: clamp(3.5rem, 6vw, 5rem) 2rem; }
.footer__grid { display: grid; gap: 2.5rem; }
@media (min-width: 780px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }
.footer h4 {
  font-family: var(--sans);
  font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 1.1rem;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; font-size: .93rem; }
.footer a { text-decoration: none; transition: color .25s var(--ease); }
.footer a:hover { color: var(--paper); }
.footer__brand { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.2rem; }
.footer__brand img { width: 38px; height: 38px; flex: none; }
.footer__brand .brand__name { color: var(--paper); }
.footer__bottom {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid var(--forest-700);
  display: flex; flex-wrap: wrap; gap: .8rem 2rem;
  justify-content: space-between;
  font-size: .82rem;
}
.footer__bottom nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  gap: .6rem;
  padding: .7rem var(--gutter) calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(252, 250, 246, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform .4s var(--ease);
}
.mobile-cta.is-visible { transform: none; }
.mobile-cta .btn { flex: 1; padding-inline: .8rem; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ==========================================================================
   Anliegen-Check (Lead-Qualifizierung)
   ========================================================================== */
.qm {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(0px, 3vw, 2.5rem);
  opacity: 0;
  transition: opacity .26s var(--ease);
}
.qm.is-open { opacity: 1; }
.qm[hidden] { display: none; }

.qm__backdrop {
  position: absolute; inset: 0;
  background: rgba(19, 26, 21, .62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.qm__panel {
  position: relative;
  width: min(720px, 100%);
  max-height: min(92svh, 900px);
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--paper);
  border-radius: clamp(0px, 2vw, var(--r-lg));
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transform: translateY(14px) scale(.985);
  transition: transform .3s var(--ease);
}
.qm.is-open .qm__panel { transform: none; }
@media (max-width: 640px) {
  .qm { padding: 0; }
  .qm__panel { width: 100%; max-height: 100svh; height: 100svh; border-radius: 0; }
}

.qm__close {
  position: absolute; top: .9rem; right: .9rem;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest-700);
  cursor: pointer;
  z-index: 2;
  transition: background-color .25s var(--ease);
}
.qm__close:hover { background: var(--cream-deep); }
.qm__close svg { width: 16px; height: 16px; }

/* Kopf */
.qm__head {
  position: sticky; top: 0; z-index: 1;
  display: flex; align-items: center; gap: 1.1rem;
  padding: 1.15rem clamp(1.25rem, 4vw, 2.4rem);
  padding-right: 4rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.qm__brand { display: flex; align-items: center; gap: .55rem; flex: none; }
.qm__brand img { width: 26px; height: 26px; }
.qm__brand .brand__name { font-size: .92rem; letter-spacing: .13em; }
@media (max-width: 560px) { .qm__brand .brand__name { display: none; } }

.qm__progress {
  flex: 1;
  height: 3px;
  background: var(--sand);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.qm__bar {
  height: 100%; width: 25%;
  background: var(--forest-700);
  border-radius: var(--r-pill);
  transition: width .45s var(--ease);
}
.qm__count {
  flex: none;
  font-size: .78rem;
  letter-spacing: .08em;
  color: var(--forest-500);
  display: flex; gap: .25rem;
}

/* Körper */
.qm__body { padding: clamp(1.6rem, 4vw, 2.6rem) clamp(1.25rem, 4vw, 2.4rem); flex: 1; }
.qm__step { display: none; }
.qm__step.is-active { display: block; animation: qmIn .38s var(--ease); }
@keyframes qmIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.qm__eyebrow {
  font-size: .7rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--forest-500);
  margin-bottom: .8rem;
}
.qm__title {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3.4vw, 2.05rem);
  line-height: 1.12;
  letter-spacing: -.015em;
  color: var(--forest-900);
  margin-bottom: .7rem;
}
.qm__title em { font-style: italic; color: var(--forest); }
.qm__lede { font-size: .98rem; color: var(--forest-500); margin-bottom: 1.8rem; max-width: 46ch; }

/* Grosse Auswahlkarten */
.qm__choices { display: grid; gap: .7rem; }
.qm__choice { display: block; cursor: pointer; }
.qm__choice input { position: absolute; opacity: 0; pointer-events: none; }
.qm__inner {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper);
  transition: border-color .25s var(--ease), background-color .25s var(--ease),
              transform .25s var(--ease);
}
.qm__choice:hover .qm__inner { border-color: var(--forest-300); transform: translateY(-1px); }
.qm__choice input:checked + .qm__inner {
  border-color: var(--forest-700);
  background: var(--cream);
  box-shadow: inset 0 0 0 1px var(--forest-700);
}
.qm__choice input:focus-visible + .qm__inner { outline: 2px solid var(--clay); outline-offset: 2px; }
.qm__num {
  flex: none;
  font-family: var(--serif);
  font-size: .95rem;
  color: var(--forest-300);
  width: 1.6rem;
  padding-top: .1rem;
}
.qm__choice input:checked + .qm__inner .qm__num { color: var(--forest); }
.qm__txt { display: grid; gap: .28rem; }
.qm__txt strong { font-weight: 500; font-size: 1.02rem; color: var(--forest-900); }
.qm__txt em { font-style: normal; font-size: .9rem; color: var(--forest-500); line-height: 1.5; }

/* Pill-Auswahl */
.qm__field { margin-bottom: 1.5rem; }
.qm__field > label {
  display: block;
  font-size: .8rem; font-weight: 500;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--forest-500);
  margin-bottom: .7rem;
}
.qm__opt { text-transform: none; letter-spacing: 0; font-weight: 400; opacity: .7; }

.qm__pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.qm__pills button {
  padding: .62rem 1.05rem;
  font-size: .93rem;
  background: var(--paper);
  color: var(--forest-700);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all .22s var(--ease);
}
.qm__pills button:hover { border-color: var(--forest-300); }
.qm__pills button.is-on {
  background: var(--forest-800);
  border-color: var(--forest-800);
  color: var(--paper);
}

.qm__grid { display: grid; gap: 1.1rem; }
@media (min-width: 560px) { .qm__grid { grid-template-columns: 1fr 1fr; } }

.qm__field input[type="text"],
.qm__field input[type="email"],
.qm__field input[type="tel"],
.qm__field textarea {
  width: 100%;
  padding: .85rem 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 1rem;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.qm__field textarea { resize: vertical; }
.qm__field input:focus, .qm__field textarea:focus {
  outline: none;
  border-color: var(--forest-500);
  box-shadow: 0 0 0 3px rgba(71, 88, 76, .1);
}

.qm__consent {
  display: flex; gap: .7rem; align-items: flex-start;
  font-size: .87rem; color: var(--forest-500);
  margin-top: .3rem;
}
.qm__consent input { width: 17px; height: 17px; margin-top: .22rem; flex: none; accent-color: var(--forest-700); }
.qm__hint { font-size: .82rem; color: var(--forest-500); margin-top: 1rem; }

/* Ergebnis */
.qm__step--done { text-align: left; }
.qm__mark {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--sage-soft);
  color: var(--forest-700);
  border-radius: 50%;
  margin-bottom: 1.3rem;
}
.qm__mark svg { width: 22px; height: 22px; }

.qm__rec {
  display: grid; gap: .35rem;
  padding: 1.4rem 1.5rem;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: var(--r-md);
  margin: 1.6rem 0;
}
.qm__rec-label {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--forest-500);
}
.qm__rec strong {
  font-family: var(--serif);
  font-size: 1.4rem; font-weight: 400;
  color: var(--forest-900);
  line-height: 1.15;
}
.qm__rec > span:last-of-type { font-size: .88rem; color: var(--forest-500); }
.qm__rec p { font-size: .95rem; color: var(--forest-700); margin-top: .5rem; }

.qm__actions { display: flex; flex-wrap: wrap; gap: .7rem; }

/* Fuss */
.qm__foot {
  position: sticky; bottom: 0;
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 1rem clamp(1.25rem, 4vw, 2.4rem) calc(1rem + env(safe-area-inset-bottom));
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.qm__foot .btn:disabled { opacity: .38; cursor: not-allowed; transform: none; box-shadow: none; }

/* ---------- Utilities ---------- */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -60px; left: var(--gutter); z-index: 200;
  background: var(--forest-800); color: var(--paper);
  padding: .8rem 1.4rem; border-radius: 0 0 var(--r-md) var(--r-md);
  text-decoration: none; font-size: .9rem;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 0; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav a { padding-inline: .55rem; font-size: .85rem; }
  .header__tel { display: none; }
}
@media (max-width: 940px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
}
@media (max-width: 940px) {
  .hero { align-items: flex-end; padding-bottom: clamp(3.5rem, 9vh, 6rem); }
  .hero__text { max-width: none; min-width: 0; }
  .hero__lead { max-width: 40rem; }
  .hero__bg img { object-position: 50% 30%; }
  /* Der Textblock hängt am unteren Rand, seine Höhe ist aber fix. Darum liegt
     der Schutzverlauf in rem und wächst vom Boden mit – so bleibt Eyebrow und
     H1 auf jeder Displayhöhe lesbar, auch über den hellen Blättern im Foto. */
  .hero::before {
    background:
      linear-gradient(0deg,
        rgba(22, 30, 24, .82) 0,
        rgba(22, 30, 24, .74) 26rem,
        rgba(22, 30, 24, .56) 36rem,
        rgba(22, 30, 24, 0)   44rem),
      linear-gradient(180deg,
        rgba(22, 30, 24, .45) 0%,
        rgba(22, 30, 24, .15) 20%,
        rgba(22, 30, 24, .55) 70%,
        rgba(22, 30, 24, .80) 100%);
  }
  .hero .eyebrow { color: var(--sage-soft); }
  .hero h1 em { color: var(--sage-soft); }
  .hero .eyebrow, .hero h1, .hero__lead { text-shadow: 0 1px 10px rgba(22, 30, 24, .45); }
  .mobile-cta { display: flex; }
  body { padding-bottom: 0; }
}
@media (max-width: 620px) {
  /* Auf dem Handy übernimmt die fixe CTA-Leiste unten die Buchen-Aktion */
  .header__actions > .btn { display: none; }
  .seal { right: 8px; bottom: 8px; width: 108px; height: 108px; }
  .seal--left { left: 8px; right: auto; }
  .seal b { font-size: 1.5rem; }
  .trustbar__inner { justify-content: flex-start; gap: 1.3rem 2rem; }
  .trustbar__stats { gap: 1rem 1.8rem; }
  .trust-item { font-size: .84rem; }
  .btn { padding: .95rem 1.4rem; }
  .btn-row .btn { flex: 1 1 100%; }
  .drawer { inset-top: 70px; }
}
