:root {
  --bg: #f9f6f1;
  --bg-soft: #f1ece3;
  --fg: #2e2c29;
  --muted: #6c6860;
  --line: #e4ddd1;
  --accent: #7d86fc;
  --accent-soft: rgba(125, 134, 252, .12);
  --serif: "Cormorant Garamond", ui-serif, Georgia, serif;
  --sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--fg); font: 400 16px/1.65 var(--sans); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* Kopfzeile */
header { position: sticky; top: 0; z-index: 20; background: rgba(249, 246, 241, .85); backdrop-filter: blur(10px); border-bottom: 1px solid transparent; }
header.scrolled { border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { text-decoration: none; display: flex; align-items: baseline; gap: 10px; }
.brand b { font: 500 22px var(--serif); }
.brand span { font-size: 10px; letter-spacing: .25em; color: var(--muted); }
.nav ul { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav ul a { text-decoration: none; font-size: 14px; color: var(--muted); transition: color .2s; }
.nav ul a:hover { color: var(--fg); }

.btn { display: inline-flex; align-items: center; justify-content: center; border: 0; cursor: pointer; border-radius: 999px; background: var(--fg); color: var(--bg); padding: 14px 28px; font: 500 14px var(--sans); text-decoration: none; transition: opacity .2s; }
.btn:hover { opacity: .9; }
.btn.small { padding: 9px 20px; }
.btn.ghost { background: transparent; color: var(--fg); border: 1px solid var(--line); }
.glow { animation: glow 3s ease-in-out infinite; }
@keyframes glow { 50% { box-shadow: 0 0 0 8px var(--accent-soft); } }

.eyebrow { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); margin: 0 0 16px; }
h1, h2, h3 { font-family: var(--serif); font-weight: 300; line-height: 1.08; margin: 0; }
h1 { font-size: clamp(48px, 7vw, 84px); }
h1 em, h2 em { color: var(--accent); }
h2 { font-size: clamp(36px, 4.5vw, 52px); }
h3 { font-size: 32px; }
p { color: var(--muted); }
section { padding: 96px 0; }

/* Hero */
.hero { background: radial-gradient(600px circle at 20% 30%, var(--accent-soft), transparent 40%); padding-top: 48px; }
.hero .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero p.lead { font-size: 17px; max-width: 460px; margin: 28px 0 36px; }
.hero .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero img { border-radius: 28px; aspect-ratio: 4/5; object-fit: cover; width: 100%; }

/* Zwei Wege */
.center { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.path { position: relative; border-radius: 24px; overflow: hidden; min-height: 460px; display: flex; align-items: flex-end; color: #fff; }
.path img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.path::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,18,16,.75), transparent 60%); }
.path div { position: relative; z-index: 1; padding: 36px; }
.path .eyebrow, .path p { color: rgba(255,255,255,.85); }

/* Angebot */
.offers { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 40px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 0; padding: 0; list-style: none; }
.tags li { font-size: 12px; padding: 6px 14px; border-radius: 999px; background: var(--bg-soft); }
.more { display: inline-block; margin-top: 28px; font-size: 14px; text-underline-offset: 4px; }

/* Über mich */
.about { display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: center; }
.about img { border-radius: 24px; aspect-ratio: 3/4; object-fit: cover; }
.stats { display: flex; gap: 48px; margin-top: 36px; }
.stats b { display: block; font: 300 44px var(--serif); }
.stats span { font-size: 13px; color: var(--muted); }

/* Termin + Warteliste */
.book { background: var(--bg-soft); }
.book .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.facts { list-style: none; padding: 0; margin: 28px 0 0; }
.facts li { padding: 14px 0; border-top: 1px solid var(--line); }
.facts b { display: block; }
.facts span { font-size: 14px; color: var(--muted); }
.card .btn { width: 100%; margin-top: 28px; }
.card.wait { background: var(--fg); color: var(--bg); border: 0; }
.card.wait p { color: rgba(249,246,241,.75); }
.card.wait .btn { background: var(--bg); color: var(--fg); }
.card.wait .facts span { color: rgba(249,246,241,.65); }
.card.wait .facts li { border-top-color: rgba(249,246,241,.15); }

/* Fußzeile */
footer { background: var(--fg); color: var(--bg); padding: 72px 0 32px; font-size: 14px; }
footer .grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
footer p, footer a { color: rgba(249,246,241,.7); text-decoration: none; }
footer a:hover { color: var(--bg); }
footer h4 { font-size: 11px; letter-spacing: .25em; font-weight: 500; margin: 0 0 16px; }
footer ul { list-style: none; padding: 0; margin: 0; line-height: 2; }
.legal { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(249,246,241,.15); }
.legal nav { display: flex; gap: 20px; }
.legal button { background: none; border: 0; padding: 0; font: inherit; color: rgba(249,246,241,.7); cursor: pointer; }

/* Buchungs-Fenster */
.modal { position: fixed; inset: 0; z-index: 50; background: rgba(20,18,16,.55); display: none; align-items: center; justify-content: center; padding: 16px; }
.modal.open { display: flex; }
.modal .box { background: #fff; border-radius: 20px; width: min(920px, 100%); height: min(760px, 92vh); overflow: hidden; position: relative; }
.modal iframe { width: 100%; height: 100%; border: 0; }
.modal .newtab { position: absolute; left: 50%; bottom: 10px; transform: translateX(-50%); z-index: 2; background: rgba(255,255,255,.92); border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; font-size: 12px; color: var(--muted); text-decoration: none; white-space: nowrap; }
.modal .close { z-index: 2; position: absolute; top: 10px; right: 10px; width: 40px; height: 40px; border-radius: 50%; border: 0; background: var(--fg); color: var(--bg); font-size: 20px; cursor: pointer; }

/* Cookie-Hinweis */
.consent { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 40; max-width: 640px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 18px 22px; box-shadow: 0 10px 40px rgba(0,0,0,.12); display: none; gap: 16px; align-items: center; font-size: 14px; }
.consent.show { display: flex; }
.consent p { margin: 0; flex: 1; }
.consent .btn { padding: 10px 18px; }

/* Rechtliche Seiten */
.page { padding: 72px 0 96px; max-width: 760px; }
.page h1 { font-size: 52px; margin-bottom: 32px; }
.page h2 { font-size: 26px; font-family: var(--sans); font-weight: 600; margin: 36px 0 8px; }
.page p, .page li { color: var(--fg); }

@media (max-width: 860px) {
  .nav ul, .nav .btn { display: none; }
  section { padding: 72px 0; }
  .hero .grid, .paths, .offers, .about, .book .grid, footer .grid { grid-template-columns: 1fr; gap: 28px; }
  .path { min-height: 380px; }
  .card { padding: 28px; }
  .stats { gap: 28px; }
  .consent { flex-direction: column; align-items: stretch; }
}
