/* =========================================================================
   HEILSAME KLANGMOMENTE — Design System (Produktion)
   Stimmung: ruhig · erdig · warm. Gedämpfte Naturtöne + Meeresblau-Akzent.
   Type: Spectral (warme Serife) + Mulish (schlanke Sans) — self-hosted
   ========================================================================= */

:root {
  /* — Papier & Tinte — */
  --paper:      #F4EFE4;
  --paper-deep: #ECE5D5;
  --paper-card: #FBF8F1;
  --ink:        #2A322A;
  --ink-soft:   #4D5A48;
  --muted:      #837C6C;

  /* — Naturtöne — */
  --sage:    #93A188;
  --sage-dp: #6E7D64;
  --moss:    #4D5A48;
  --stone:   #C3B9A6;
  --sand:    #DCCBAC;

  /* — Akzent (Meeresblau — aus Himmel & Meer im Strandbild) — */
  --accent:      #3F6E84;
  --accent-soft: rgba(63, 110, 132, 0.12);
  --accent-ink:  #2E5566;   /* dunkler für Textkontrast auf Creme */

  /* — Type — */
  --serif: "Spectral", Georgia, serif;
  --sans:  "Mulish", system-ui, -apple-system, sans-serif;

  /* — Maße — */
  --maxw: 1180px;
  --gutter: clamp(22px, 5vw, 64px);
  --radius: 4px;

  --reveal-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  font-family: var(--sans);
  font-weight: 350;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  letter-spacing: 0.005em;
  overflow-x: hidden;
}

/* Subtiler Papier-Grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

::selection { background: var(--accent-soft); color: var(--accent-ink); }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 300; color: var(--ink); line-height: 1.08; letter-spacing: -0.012em; }
.serif-it { font-family: var(--serif); font-style: italic; font-weight: 300; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--accent); display: inline-block; }

p { text-wrap: pretty; }
.lead { font-size: clamp(1.12rem, 1.7vw, 1.34rem); color: var(--ink-soft); font-weight: 350; line-height: 1.62; }

a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  padding: 0.95em 1.7em;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  transition: transform .5s var(--reveal-ease), background .35s ease, color .35s ease, border-color .35s ease, box-shadow .45s ease;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(42,50,42,0.55); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { box-shadow: 0 14px 32px -12px var(--accent); }
.btn-ghost { background: transparent; color: var(--ink); border-color: color-mix(in oklab, var(--ink) 22%, transparent); }
.btn-ghost:hover { background: color-mix(in oklab, var(--ink) 6%, transparent); border-color: var(--ink); }
.btn .arrow { transition: transform .45s var(--reveal-ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Reveal-Animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1.05s var(--reveal-ease), transform 1.05s var(--reveal-ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }
body.no-motion .reveal { opacity: 1; transform: none; transition: none; }
body.no-motion * { animation: none !important; }

/* =========================================================================
   Marken-Zeichen (konzentrische Ringe = Klang)
   ========================================================================= */
.brand { display: inline-flex; align-items: center; gap: 0.7em; }
.brand__mark { position: relative; width: 26px; height: 26px; display: inline-grid; place-items: center; flex: none; }
.brand__ring { position: absolute; inset: 0; border: 1px solid var(--accent); border-radius: 50%; opacity: 0.55; }
.brand__ring:nth-child(2) { inset: 6px; opacity: 0.85; }
.brand__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.brand__mark--lg { width: 44px; height: 44px; }
.brand__mark--lg .brand__ring:nth-child(2) { inset: 11px; }
.brand__mark--lg .brand__dot { width: 9px; height: 9px; }
.brand__text { font-family: var(--sans); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.02em; color: var(--ink); }
.brand__text em { font-family: var(--serif); font-style: italic; font-weight: 400; }

/* ============================== NAV ============================== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .5s ease, box-shadow .5s ease, backdrop-filter .5s ease; }
.nav--solid { background: color-mix(in oklab, var(--paper) 88%, transparent); backdrop-filter: blur(12px) saturate(1.1); box-shadow: 0 1px 0 color-mix(in oklab, var(--ink) 8%, transparent); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 82px; }
.nav__links { display: flex; gap: 2.2rem; }
.nav__links a { font-size: 0.9rem; font-weight: 500; color: var(--ink-soft); position: relative; padding: 4px 0; transition: color .3s ease; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--accent); transition: width .4s var(--reveal-ease); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { padding: 0.7em 1.3em; font-size: 0.85rem; }
.nav__burger { display: none; }
.nav__drawer { display: none; }

/* ============================== HERO ============================== */
.hero { position: relative; padding: clamp(120px, 17vh, 180px) 0 clamp(60px, 9vh, 110px); overflow: hidden; }
.hero__glow { position: absolute; top: -10%; right: -8%; width: 60vw; height: 60vw; max-width: 760px; max-height: 760px; background: radial-gradient(circle at center, color-mix(in oklab, var(--accent) 22%, transparent) 0%, transparent 62%); filter: blur(20px); pointer-events: none; z-index: 0; }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.hero__title { font-size: clamp(2.7rem, 6.4vw, 5rem); margin: 0.42em 0 0.32em; letter-spacing: -0.02em; }
.hero__lead { max-width: 30em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2.1rem; }
.hero__meta { display: flex; align-items: center; flex-wrap: wrap; row-gap: 0.5rem; margin-top: 2.4rem; font-size: 0.88rem; color: var(--muted); letter-spacing: 0.01em; }
.hero__meta-item { white-space: nowrap; }
.hero__meta-item + .hero__meta-item { margin-left: 1.25rem; padding-left: 1.25rem; border-left: 1px solid color-mix(in oklab, var(--ink) 16%, transparent); }
.hero__meta b { color: var(--ink-soft); font-weight: 700; }

/* Bowl + Ripple */
.hero__visual { position: relative; display: grid; place-items: center; }
.bowl { position: relative; width: min(100%, 440px); aspect-ratio: 1; display: grid; place-items: center; }
.bowl__img {
  width: 78%; height: 78%; border-radius: 50%;
  object-fit: cover; display: block; z-index: 2;
  box-shadow: 0 40px 80px -40px rgba(42,50,42,0.5),
              inset 0 0 0 1px color-mix(in oklab, var(--moss) 20%, transparent);
}
.ripple { position: absolute; inset: 0; border-radius: 50%; border: 1px solid color-mix(in oklab, var(--accent) 55%, transparent); animation: ripple 5.5s var(--reveal-ease) infinite; opacity: 0; }
.ripple:nth-child(2) { animation-delay: 1.8s; }
.ripple:nth-child(3) { animation-delay: 3.6s; }
@keyframes ripple { 0% { transform: scale(0.62); opacity: 0; } 18% { opacity: 0.7; } 100% { transform: scale(1.18); opacity: 0; } }
.hero__chip { position: absolute; bottom: 6%; left: -2%; background: var(--paper-card); border-radius: 100px; padding: 0.7em 1.2em; display: flex; flex-direction: column; line-height: 1.15; box-shadow: 0 18px 40px -22px rgba(42,50,42,0.5); z-index: 3; }
.hero__chip-num { font-family: var(--serif); font-size: 1.25rem; color: var(--accent-ink); }
.hero__chip-label { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.02em; }
.hero__scroll { position: absolute; left: var(--gutter); bottom: 26px; display: flex; align-items: center; gap: 0.7em; font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); }
.hero__scroll-line { width: 46px; height: 1px; background: var(--stone); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; inset: 0; background: var(--accent); transform: translateX(-100%); animation: scrollline 2.6s ease-in-out infinite; }
@keyframes scrollline { 0%{transform:translateX(-100%)} 50%{transform:translateX(0)} 100%{transform:translateX(100%)} }

/* ============================ SECTION HEAD ============================ */
.sec-head { margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.sec-head--center { text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }
.sec-head--center .eyebrow::before { display: none; }
.sec-head__title { font-size: clamp(2rem, 4vw, 3rem); margin-top: 0.5rem; max-width: 16em; }
.sec-head--center .sec-head__title { margin-inline: auto; }

/* ============================ PHILOSOPHIE ============================ */
.philo { padding: clamp(52px, 8vh, 96px) 0; }
.philo__inner { max-width: 980px; margin: 0 auto; }
.philo__quote { font-family: var(--serif); font-weight: 300; font-size: clamp(1.6rem, 3.6vw, 2.7rem); line-height: 1.28; letter-spacing: -0.015em; text-align: center; text-wrap: balance; margin-bottom: 1rem; }
.philo__cite { text-align: center; color: var(--accent-ink); font-size: 1.05rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.philo__cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); max-width: 820px; margin: 0 auto; }
.philo__cols p { color: var(--ink-soft); font-size: 1.04rem; }

/* ============================== FÜR DICH ============================== */
.fuerdich { padding: clamp(40px, 6vh, 72px) 0; }
.needs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.need { background: var(--paper-card); border: 1px solid color-mix(in oklab, var(--ink) 8%, transparent); border-radius: 14px; padding: 1.8rem 1.7rem; position: relative; }
.need::before { content: ""; display: block; width: 22px; height: 1px; background: var(--accent); margin-bottom: 1.1rem; }
.need p { color: var(--ink-soft); font-size: 1.04rem; line-height: 1.55; }
.fuerdich__close { text-align: center; font-family: var(--serif); font-weight: 300; font-size: clamp(1.3rem, 2.6vw, 1.85rem); line-height: 1.4; color: var(--ink); max-width: 24em; margin: clamp(2.4rem, 5vw, 3.4rem) auto 0; }
.fuerdich__close .serif-it { color: var(--accent-ink); }

/* ============================== ANGEBOT ============================== */
.angebot { padding: clamp(48px, 6.5vh, 84px) 0; }
.offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.offers--two { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin-inline: auto; }
.offer { background: var(--paper-card); border: 1px solid color-mix(in oklab, var(--ink) 8%, transparent); border-radius: 14px; padding: 2rem 1.8rem 1.7rem; display: flex; flex-direction: column; transition: transform .55s var(--reveal-ease), box-shadow .55s var(--reveal-ease), border-color .4s ease; }
.offer:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -34px rgba(42,50,42,0.45); border-color: color-mix(in oklab, var(--accent) 35%, transparent); }
.offer--feature { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.offer--feature .offer__desc, .offer--feature .offer__tag { color: color-mix(in oklab, var(--paper) 80%, transparent); }
.offer--feature .offer__title, .offer--feature .offer__price { color: var(--paper); }
.offer--feature .offer__meta li { border-color: color-mix(in oklab, var(--paper) 22%, transparent); color: color-mix(in oklab, var(--paper) 78%, transparent); }
.offer--feature .offer__link { color: var(--sand); }
.offer__top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.3rem; }
.offer__tag { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-ink); font-weight: 600; }
.offer__price { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); }
.offer__title { font-size: 1.55rem; margin-bottom: 0.7rem; }
.offer__desc { color: var(--ink-soft); font-size: 0.96rem; flex: 1; margin-bottom: 1.4rem; }
.offer__meta { list-style: none; display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.5rem; }
.offer__meta li { font-size: 0.76rem; letter-spacing: 0.02em; padding: 0.35em 0.8em; border-radius: 100px; border: 1px solid color-mix(in oklab, var(--ink) 14%, transparent); color: var(--muted); }
.offer__link { font-weight: 600; font-size: 0.9rem; color: var(--accent-ink); display: inline-flex; align-items: center; gap: 0.45em; margin-top: auto; }
.offer__link .arrow { transition: transform .4s var(--reveal-ease); }
.offer__link:hover .arrow { transform: translateX(4px); }

/* =============================== ABLAUF =============================== */
.ablauf { padding: clamp(48px, 6.5vh, 84px) 0; }
.ablauf__grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.ablauf__intro { position: sticky; top: 110px; }
.ablauf__intro h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0.6rem 0 1.1rem; }
.ablauf__visual { margin-top: 2rem; width: 100%; aspect-ratio: 4/3.4; object-fit: cover; border-radius: var(--radius); display: block; }
.steps { list-style: none; display: flex; flex-direction: column; }
.step { display: flex; gap: 1.6rem; align-items: flex-start; padding: 1.9rem 0; border-top: 1px solid color-mix(in oklab, var(--ink) 10%, transparent); }
.step:last-child { border-bottom: 1px solid color-mix(in oklab, var(--ink) 10%, transparent); }
.step__n { font-family: var(--serif); font-size: 1.5rem; color: var(--accent); flex: none; width: 2ch; line-height: 1; padding-top: 0.15em; }
.step__title { font-size: 1.4rem; margin-bottom: 0.4rem; }
.step__desc { color: var(--ink-soft); font-size: 0.98rem; max-width: 34em; }

/* ============================== ABOUT ============================== */
.about { padding: clamp(48px, 6.5vh, 84px) 0; }
.about__grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.about__portrait { position: relative; }
.about__img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 14px; display: block; }
.about__sig { position: absolute; bottom: -0.4em; right: -0.2em; font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--accent-ink); text-shadow: 0 2px 18px var(--paper); }
.about__copy h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0.6rem 0 1.3rem; }
.about__copy p { color: var(--ink-soft); margin-bottom: 1.1rem; max-width: 38em; }
.about__creds { list-style: none; display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 1.8rem; }
.about__creds li { font-size: 0.92rem; color: var(--muted); position: relative; padding-left: 1.1rem; }
.about__creds li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.about__creds b { color: var(--ink); font-weight: 700; }

/* =============================== BAND =============================== */
.band { position: relative; padding: clamp(60px, 10vh, 112px) 0; background: var(--ink) url("img/band-bowls.jpg") center/cover no-repeat; overflow: hidden; }
.band__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(42,50,42,0.55), rgba(42,50,42,0.78)); }
.band__inner { position: relative; z-index: 1; text-align: center; max-width: 880px; }
.band__quote { font-family: var(--serif); font-weight: 300; font-size: clamp(1.5rem, 3.4vw, 2.5rem); line-height: 1.32; color: var(--paper); text-wrap: balance; }
.band__quote .serif-it { color: var(--sand); }
.band__by { margin-top: 1.6rem; font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: color-mix(in oklab, var(--paper) 75%, transparent); }

/* ================================ FAQ ================================ */
.faq { padding: clamp(40px, 6vh, 72px) 0; }
.faq__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.8rem; }
.faq__item { background: var(--paper-card); border: 1px solid color-mix(in oklab, var(--ink) 8%, transparent); border-radius: 14px; padding: 0 clamp(1.2rem, 3vw, 1.7rem); transition: border-color .35s ease; }
.faq__item[open] { border-color: color-mix(in oklab, var(--accent) 35%, transparent); }
.faq__item summary { list-style: none; cursor: pointer; padding: 1.3rem 0; font-family: var(--serif); font-weight: 400; font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-family: var(--sans); font-weight: 300; font-size: 1.5rem; color: var(--accent); flex: none; line-height: 1; transition: transform .35s var(--reveal-ease); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__a { padding: 0 0 1.4rem; }
.faq__a p { color: var(--ink-soft); font-size: 1rem; line-height: 1.62; max-width: 62ch; }
.faq__a a { color: var(--accent-ink); font-weight: 600; }

/* =============================== BUCHEN =============================== */
.buchen { padding: clamp(52px, 7.5vh, 96px) 0; }
.buchen__grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.buchen__intro h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0.55rem 0 1.1rem; }
.buchen__assure { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1.8rem; }
.buchen__assure li { padding-left: 1.7rem; position: relative; color: var(--ink-soft); }
.buchen__assure li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent-ink); font-weight: 700; }
.buchen__phone { margin-top: 1.8rem; color: var(--muted); font-size: 0.95rem; }
.buchen__phone a { color: var(--accent-ink); font-weight: 600; border-bottom: 1px solid color-mix(in oklab, var(--accent) 40%, transparent); }
.buchen__phone a:hover { border-bottom-color: var(--accent); }

.bk-card { background: var(--paper-card); border: 1px solid color-mix(in oklab, var(--ink) 9%, transparent); border-radius: 18px; padding: clamp(1.7rem, 3vw, 2.4rem); box-shadow: 0 40px 90px -50px rgba(42,50,42,0.4); min-height: 430px; display: flex; flex-direction: column; }
.bk-steps { display: flex; gap: 0.4rem; margin-bottom: 2rem; }
.bk-steps__item { display: flex; align-items: center; gap: 0.5rem; flex: 1; opacity: 0.4; transition: opacity .4s ease; }
.bk-steps__item.is-active, .bk-steps__item.is-done { opacity: 1; }
.bk-steps__dot { width: 26px; height: 26px; border-radius: 50%; flex: none; display: grid; place-items: center; font-size: 0.78rem; font-weight: 700; background: color-mix(in oklab, var(--ink) 8%, transparent); color: var(--ink-soft); transition: background .4s ease, color .4s ease; }
.bk-steps__item.is-active .bk-steps__dot { background: var(--accent); color: #fff; }
.bk-steps__item.is-done .bk-steps__dot { background: var(--sage-dp); color: #fff; }
.bk-steps__lbl { font-size: 0.78rem; font-weight: 600; color: var(--ink-soft); white-space: nowrap; }
@media (max-width: 540px) { .bk-steps__lbl { display: none; } }

.bk-pane { display: flex; flex-direction: column; flex: 1; animation: bkfade .5s var(--reveal-ease); }
@keyframes bkfade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.bk-pane__h { font-size: 1.4rem; margin-bottom: 1.3rem; }
.bk-sub { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin: 1.1rem 0 0.7rem; }
.bk-options { display: flex; flex-direction: column; gap: 0.7rem; }
.bk-option { display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: left; cursor: pointer; background: var(--paper); border: 1px solid color-mix(in oklab, var(--ink) 12%, transparent); border-radius: 12px; padding: 1rem 1.2rem; font-family: var(--sans); transition: border-color .3s ease, background .3s ease, transform .3s ease; }
.bk-option:hover { transform: translateX(3px); border-color: color-mix(in oklab, var(--accent) 45%, transparent); }
.bk-option.is-sel { border-color: var(--accent); background: var(--accent-soft); }
.bk-option__main { display: flex; flex-direction: column; gap: 0.2rem; }
.bk-option__title { font-weight: 600; color: var(--ink); }
.bk-option__meta { font-size: 0.82rem; color: var(--muted); }
.bk-option__price { font-family: var(--serif); font-size: 1.1rem; color: var(--accent-ink); flex: none; }
.bk-chips { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.bk-chip { font-family: var(--sans); font-size: 0.88rem; font-weight: 500; padding: 0.6em 1.1em; border-radius: 100px; cursor: pointer; background: var(--paper); border: 1px solid color-mix(in oklab, var(--ink) 12%, transparent); color: var(--ink-soft); transition: all .25s ease; }
.bk-chip:hover { border-color: var(--accent); color: var(--ink); }
.bk-chip.is-sel { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.bk-field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.bk-field label { font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); }
.bk-opt { font-weight: 400; color: var(--muted); }
.bk-field input, .bk-field textarea { font-family: var(--sans); font-size: 0.95rem; color: var(--ink); background: var(--paper); border: 1px solid color-mix(in oklab, var(--ink) 14%, transparent); border-radius: 10px; padding: 0.75em 0.9em; resize: vertical; transition: border-color .3s ease, box-shadow .3s ease; }
.bk-field input:focus, .bk-field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.bk-field input.is-error { border-color: #c0573e; }
.bk-err { font-size: 0.78rem; color: #c0573e; }
.bk-actions { margin-top: auto; padding-top: 1.6rem; display: flex; justify-content: flex-end; }
.bk-actions--split { justify-content: space-between; align-items: center; }
.bk-back { background: none; border: none; cursor: pointer; font-family: var(--sans); font-size: 0.9rem; color: var(--muted); padding: 0.5em 0; transition: color .3s ease; }
.bk-back:hover { color: var(--ink); }
.bk-next:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }
.bk-done { align-items: center; text-align: center; justify-content: center; }
.bk-done__mark { position: relative; width: 90px; height: 90px; display: grid; place-items: center; margin-bottom: 1.4rem; }
.bk-done__mark .ripple { border-color: color-mix(in oklab, var(--sage-dp) 60%, transparent); }
.bk-done__check { width: 54px; height: 54px; border-radius: 50%; background: var(--sage-dp); color: #fff; display: grid; place-items: center; font-size: 1.5rem; z-index: 2; }
.bk-done__txt { color: var(--ink-soft); max-width: 32em; margin: 0.5rem 0 1.8rem; }
.bk-done__txt b { color: var(--ink); font-weight: 600; }

/* ============================== FOOTER ============================== */
.footer { background: var(--ink); color: color-mix(in oklab, var(--paper) 82%, transparent); padding: clamp(54px, 8vh, 88px) 0 2.2rem; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer .brand__ring { border-color: var(--sand); }
.footer .brand__dot { background: var(--sand); }
.footer__name { font-family: var(--sans); font-weight: 600; font-size: 1.1rem; color: var(--paper); margin-top: 1rem; }
.footer__name em { font-family: var(--serif); }
.footer__by { font-size: 0.9rem; color: color-mix(in oklab, var(--paper) 60%, transparent); margin-top: 0.2rem; }
.footer__col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col h4 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sand); font-weight: 600; margin-bottom: 0.4rem; }
.footer__col a { font-size: 0.94rem; color: color-mix(in oklab, var(--paper) 82%, transparent); transition: color .3s ease; width: fit-content; }
.footer__col a:hover { color: var(--paper); }
.footer__muted { font-size: 0.94rem; color: color-mix(in oklab, var(--paper) 50%, transparent); }
.footer__area { line-height: 1.5; max-width: 22em; }
.footer__note { font-size: 0.8rem; line-height: 1.5; color: color-mix(in oklab, var(--paper) 45%, transparent); padding-bottom: 1.4rem; max-width: 60em; }
.footer__base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; padding-top: 2rem; border-top: 1px solid color-mix(in oklab, var(--paper) 14%, transparent); font-size: 0.84rem; color: color-mix(in oklab, var(--paper) 55%, transparent); }
.footer__legal a { color: color-mix(in oklab, var(--paper) 70%, transparent); }
.footer__legal a:hover { color: var(--paper); }

/* ============================== LEGAL ============================== */
.legal { max-width: 760px; margin: 0 auto; padding: clamp(120px, 16vh, 170px) var(--gutter) clamp(60px, 9vh, 100px); }
.legal a.legal__back { display: inline-flex; align-items: center; gap: 0.5em; color: var(--accent-ink); font-weight: 600; font-size: 0.9rem; margin-bottom: 2.5rem; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 1.6rem; }
.legal h2 { font-size: 1.4rem; margin: 2.4rem 0 0.8rem; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 0.9rem; line-height: 1.65; }
.legal ul { padding-left: 1.2rem; margin-bottom: 0.9rem; }
.legal .todo { background: var(--accent-soft); border-left: 3px solid var(--accent); padding: 0.4em 0.7em; border-radius: 4px; color: var(--accent-ink); font-weight: 600; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 940px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
  .nav__burger span { width: 24px; height: 1.5px; background: var(--ink); transition: transform .35s ease, opacity .35s ease; }
  .nav__burger.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav__burger.is-open span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .nav__drawer { display: flex; flex-direction: column; gap: 0.4rem; position: fixed; top: 82px; left: 0; right: 0; background: var(--paper-card); padding: 1.4rem var(--gutter) 2rem; transform: translateY(-120%); visibility: hidden; transition: transform .5s var(--reveal-ease), visibility .5s; box-shadow: 0 20px 40px -24px rgba(42,50,42,0.4); }
  .nav__drawer.is-open { transform: translateY(0); visibility: visible; }
  .nav__drawer a:not(.btn) { padding: 0.8rem 0; font-size: 1.05rem; border-bottom: 1px solid color-mix(in oklab, var(--ink) 8%, transparent); }
  .nav__drawer .btn { margin-top: 0.8rem; justify-content: center; }

  .hero { padding-top: 96px; padding-bottom: clamp(44px, 7vh, 80px); }
  .hero__grid, .ablauf__grid, .about__grid, .buchen__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 380px; margin-inline: auto; order: -1; }
  .ablauf__intro { position: static; }
  .about__grid { gap: 3.5rem; }
  .about__portrait { max-width: 360px; }
}
@media (max-width: 760px) {
  .offers, .offers--two, .needs, .quotes, .philo__cols { grid-template-columns: 1fr; }
  .philo__cols { gap: 1.4rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .hero__meta { flex-direction: column; align-items: flex-start; gap: 0.45rem; }
  .hero__meta-item + .hero__meta-item { margin-left: 0; padding-left: 0; border-left: 0; }
}
