:root {
  --font-d: 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
  --font-b: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --c-bg:        #F5F0E8;
  --c-surface:   #FDFAF4;
  --c-border:    #DDD5C0;
  --c-text:      #2A2318;
  --c-muted:     #7A6E5A;
  --c-red:       #a41511;
  --c-red-light: #F5E0DF;
  --c-red-hover: #7a0f0c;
  --max-w: 1060px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-b); background: var(--c-bg); color: var(--c-text); font-size: 16px; line-height: 1.75; }

/* ── NAV ── */
nav.site-nav { position: sticky; top: 0; z-index: 100; background: var(--c-surface); border-bottom: 1px solid var(--c-border); height: 74px; display: flex; align-items: center; }
.nav-inner { max-width: var(--max-w); width: 100%; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; text-decoration: none; cursor: pointer; }
.logo img { height: 54px; width: auto; }
.nav-links { display: flex; gap: 1.75rem; list-style: none; }
.nav-links a { text-decoration: none; font-size: 0.875rem; font-weight: 400; color: var(--c-muted); letter-spacing: 0.04em; cursor: pointer; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--c-red); }

/* ── HINWEIS-BANNER ── */
.notice-bar { background: var(--c-red-light); border-bottom: 1px solid var(--c-border); color: var(--c-red-hover); text-align: center; padding: 0.75rem 2rem; font-size: 0.88rem; font-weight: 500; letter-spacing: 0.02em; line-height: 1.5; }
.notice-bar strong { font-weight: 600; }

/* ── HERO BANNER ── */
.hero-banner { position: relative; width: 100%; min-height: 440px; background: url('/assets/background.jpg') center center / cover no-repeat; display: flex; align-items: center; }
.hero-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(253,250,244,0.93) 42%, rgba(253,250,244,0.28) 100%); }
.hbi { position: relative; z-index: 1; max-width: var(--max-w); margin: 0 auto; padding: 5rem 2rem; width: 100%; }
.tag { display: inline-block; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-red); background: var(--c-red-light); padding: 0.28rem 0.85rem; border-radius: 2rem; margin-bottom: 1.2rem; }
.hbi h1 { font-family: var(--font-d); font-size: clamp(2.5rem,5vw,3.9rem); font-weight: 600; line-height: 1.1; color: var(--c-text); max-width: 620px; margin-bottom: 1.2rem; }
.hbi h1 em { font-style: italic; color: var(--c-red); }
.hbi p { font-size: 1rem; color: var(--c-muted); max-width: 480px; margin-bottom: 2.25rem; font-weight: 300; line-height: 1.8; }

/* ── UNTERSEITEN-HEADER ── */
.page-header { position: relative; background: url('/assets/background.jpg') center 30% / cover no-repeat; border-bottom: 1px solid var(--c-border); padding: 4.5rem 2rem 3.5rem; }
.page-header::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(253,250,244,0.95) 55%, rgba(253,250,244,0.6) 100%); }
.page-header-inner { position: relative; z-index: 1; max-width: var(--max-w); margin: 0 auto; }
.page-header h1 { font-family: var(--font-d); font-size: clamp(2rem,4vw,3rem); font-weight: 600; letter-spacing: -0.01em; margin-bottom: 0.6rem; }
.page-header p { color: var(--c-muted); font-size: 1rem; font-weight: 300; max-width: 600px; line-height: 1.8; }
.breadcrumbs { position: relative; z-index: 1; max-width: var(--max-w); margin: 0 auto 1rem; font-size: 0.78rem; color: var(--c-muted); letter-spacing: 0.03em; }
.breadcrumbs a { color: var(--c-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--c-red); }
.breadcrumbs .bc-sep { margin: 0 0.45rem; color: var(--c-border); }

/* ── BUTTONS ── */
.btn { display: inline-block; background: var(--c-red); color: #FDF8EE; padding: 0.85rem 2rem; border-radius: 3px; font-family: var(--font-b); font-size: 0.875rem; font-weight: 500; letter-spacing: 0.05em; text-decoration: none; cursor: pointer; border: none; transition: background 0.2s; }
.btn:hover { background: var(--c-red-hover); }
.btn-o { background: transparent; color: var(--c-red); border: 1.5px solid var(--c-red); margin-left: 1rem; }
.btn-o:hover { background: var(--c-red-light); }

/* ── LAYOUT ── */
.divider { border: none; border-top: 1px solid var(--c-border); max-width: var(--max-w); margin: 0 auto; }
section { max-width: var(--max-w); margin: 0 auto; padding: 4.5rem 2rem; }
.sec-h2 { font-family: var(--font-d); font-size: 2rem; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 0.5rem; }
.sec-sub { color: var(--c-muted); font-weight: 300; max-width: 560px; font-size: 0.93rem; line-height: 1.8; }

/* ── CARDS ── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 6px; padding: 1.75rem; }
a.card { text-decoration: none; display: block; }
.card h3 { font-family: var(--font-d); font-size: 1.15rem; font-weight: 600; margin-bottom: 0.45rem; color: var(--c-text); }
.card p { font-size: 0.875rem; color: var(--c-muted); font-weight: 300; line-height: 1.7; }

/* ── QUOTE ── */
.quote-card { background: var(--c-surface); border: 1px solid var(--c-border); border-left: 3px solid var(--c-red); border-radius: 0 6px 6px 0; padding: 1.75rem; }
.quote-card blockquote { font-family: var(--font-d); font-size: 1.05rem; font-style: italic; color: var(--c-text); line-height: 1.7; margin-bottom: 0.75rem; }
.quote-card cite { font-size: 0.8rem; color: var(--c-muted); font-style: normal; letter-spacing: 0.04em; }

/* ── INFO BOX ── */
.info-box { background: var(--c-surface); border-left: 3px solid var(--c-red); padding: 1.25rem 1.5rem; border-radius: 0 4px 4px 0; font-size: 0.85rem; color: var(--c-muted); font-weight: 300; line-height: 1.8; }
.info-box strong { color: var(--c-text); font-weight: 500; display: block; margin-bottom: 0.4rem; font-size: 0.88rem; }

/* ── LEISTUNGEN ── */
.price-tag { display: inline-block; font-size: 0.8rem; font-weight: 500; color: var(--c-red); background: var(--c-red-light); padding: 0.22rem 0.75rem; border-radius: 2rem; letter-spacing: 0.02em; }
.l-item { display: flex; gap: 2rem; padding: 2.5rem 0; border-bottom: 1px solid var(--c-border); }
.l-item:first-child { padding-top: 0; }
.l-num { font-family: var(--font-d); font-size: 2.6rem; font-weight: 600; color: var(--c-border); line-height: 1; min-width: 52px; flex-shrink: 0; }
.l-item h3 { font-family: var(--font-d); font-size: 1.4rem; font-weight: 600; margin-bottom: 0.5rem; }
.l-item h3 a { color: var(--c-text); text-decoration: none; }
.l-item h3 a:hover { color: var(--c-red); }
.l-item p { color: var(--c-muted); font-weight: 300; font-size: 0.9rem; line-height: 1.8; margin-bottom: 0.6rem; }
.spezial-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(210px,1fr)); gap: 0.85rem; margin: 1.25rem 0; }
.sc { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 5px; padding: 1.1rem 1.25rem; }
a.sc { text-decoration: none; display: block; }
.sc h4 { font-family: var(--font-d); font-size: 1rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--c-text); }
.sc p { font-size: 0.82rem; color: var(--c-muted); font-weight: 300; line-height: 1.65; }

/* ── GUTSCHEIN ── */
.gutschein-box { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 6px; overflow: hidden; margin-top: 1rem; }
.g-head { background: var(--c-red-light); padding: 1.25rem 1.75rem; border-bottom: 1px solid var(--c-border); }
.g-head h4 { font-family: var(--font-d); font-size: 1.1rem; font-weight: 600; color: var(--c-red-hover); margin-bottom: 0.2rem; }
.g-head p { font-size: 0.82rem; color: var(--c-muted); font-weight: 300; }
.g-body { padding: 1.25rem 1.75rem; }
.g-values { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 0; }
.g-val { background: var(--c-bg); border: 1px solid var(--c-border); border-radius: 5px; padding: 1rem 1.25rem; }
.g-val strong { display: block; font-family: var(--font-d); font-size: 1rem; font-weight: 600; color: var(--c-text); margin-bottom: 0.2rem; }
.g-val span { font-size: 0.82rem; color: var(--c-muted); display: block; margin-bottom: 0.75rem; }

/* ── ÜBER MICH ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.two-col h2 { font-family: var(--font-d); font-size: 1.85rem; font-weight: 600; margin-bottom: 1rem; }
.two-col p { color: var(--c-muted); font-weight: 300; font-size: 0.92rem; margin-bottom: 0.9rem; line-height: 1.85; }
.stat-row { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.stat strong { display: block; font-family: var(--font-d); font-size: 2.2rem; font-weight: 600; color: var(--c-red); letter-spacing: -0.02em; }
.stat span { font-size: 0.78rem; color: var(--c-muted); font-weight: 400; letter-spacing: 0.04em; }
.val-list { list-style: none; }
.val-list li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.65rem 0; border-bottom: 1px solid var(--c-border); font-size: 0.88rem; color: var(--c-muted); font-weight: 300; }
.val-list li::before { content: '✦'; color: var(--c-red); font-size: 0.6rem; margin-top: 5px; flex-shrink: 0; }
.books { display: grid; grid-template-columns: repeat(auto-fit,minmax(190px,1fr)); gap: 0.85rem; margin-top: 1.5rem; }
.book { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 5px; padding: 1.1rem 1.25rem; }
.book strong { display: block; font-family: var(--font-d); font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; }
.book span { font-size: 0.78rem; color: var(--c-muted); }

/* ── KONTAKT ── */
.k-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 4rem; align-items: start; }
.k-info h2 { font-family: var(--font-d); font-size: 1.8rem; font-weight: 600; margin-bottom: 0.75rem; }
.k-info > p { color: var(--c-muted); font-weight: 300; font-size: 0.9rem; margin-bottom: 2rem; line-height: 1.8; }
.c-row { display: flex; align-items: flex-start; gap: 0.85rem; padding: 0.85rem 1rem; background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 6px; margin-bottom: 0.5rem; }
.c-icon { width: 34px; height: 34px; border-radius: 50%; background: var(--c-red-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.c-icon svg { width: 16px; height: 16px; stroke: var(--c-red); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.c-label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-red); margin-bottom: 0.15rem; }
.c-val { font-size: 0.88rem; color: var(--c-muted); line-height: 1.5; }
.c-val a { color: var(--c-muted); text-decoration: none; }
.c-val a:hover { color: var(--c-red); }
.firma-box { margin-top: 1.5rem; padding: 1.25rem 1.5rem; background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 6px; font-size: 0.82rem; color: var(--c-muted); line-height: 1.8; }
.firma-box strong { display: block; color: var(--c-text); font-size: 0.85rem; margin-bottom: 0.4rem; }

/* ── FORMULAR ── */
form { display: flex; flex-direction: column; gap: 1rem; }
.paypal-form { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
form label { font-size: 0.72rem; font-weight: 500; color: var(--c-text); margin-bottom: 0.2rem; display: block; letter-spacing: 0.06em; text-transform: uppercase; }
form input, form textarea, form select { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--c-border); border-radius: 3px; font-family: var(--font-b); font-size: 0.9rem; background: var(--c-surface); color: var(--c-text); transition: border-color 0.2s; outline: none; }
form input:focus, form textarea:focus, form select:focus { border-color: var(--c-red); }
form textarea { resize: vertical; min-height: 130px; }
form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A6E5A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.paypal-form input[type="image"] { width: auto; padding: 0; border: none; background: transparent; }
.form-status { display: none; padding: 0.85rem 1rem; border-radius: 4px; font-size: 0.88rem; margin-top: 0.25rem; }
.form-status.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.form-status.error   { background: #fce4ec; color: #b71c1c; border: 1px solid #f8bbd0; }

/* ── RECHTLICHE SEITEN ── */
.legal-body { font-size: 0.9rem; color: var(--c-muted); line-height: 1.9; max-width: 780px; }
.legal-body h2 { font-family: var(--font-d); font-size: 1.25rem; font-weight: 600; color: var(--c-text); margin: 1.8rem 0 0.55rem; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { margin-bottom: 0.85rem; }
.legal-body a { color: var(--c-red); }

/* ── FOOTER ── */
footer { background: var(--c-text); color: #B0A898; padding: 2.5rem 2rem; text-align: center; font-size: 0.8rem; letter-spacing: 0.03em; line-height: 2; }
footer a { color: #B0A898; text-decoration: none; cursor: pointer; }
footer a:hover { color: #E8DECA; }
.f-name { font-family: var(--font-d); font-size: 1.3rem; color: #E8DECA; font-weight: 400; display: block; margin-bottom: 0.2rem; }
.f-meta { margin-top: 0.85rem; font-size: 0.75rem; color: #7A7060; }

/* ── RESPONSIVE ── */
@media (max-width: 740px) {
  .two-col, .k-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links { gap: 1rem; }
  .l-item { flex-direction: column; gap: 0.5rem; }
  .form-row, .g-values { grid-template-columns: 1fr; }
  .btn-o { margin-left: 0; margin-top: 0.75rem; }
  .hbi .btn, .hbi .btn-o { display: block; width: fit-content; }
}
