@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/playfair-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/playfair-700.ttf') format('truetype');
}
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/quicksand-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/quicksand-500.ttf') format('truetype');
}
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/quicksand-600.ttf') format('truetype');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/dmsans-400.ttf') format('truetype');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/dmsans-500.ttf') format('truetype');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/dmsans-700.ttf') format('truetype');
}

:root {
  --accent:    #E5CEC0;
  --accent-dk: #c9a898;
  --text:      #2a2020;
  --muted:     #6b5f5a;
  --bg:        #faf8f6;
  --white:     #ffffff;
  --border:    #ede5df;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Quicksand', 'Segoe UI', sans-serif;
  --font-ui:   'DM Sans', 'Helvetica Neue', sans-serif;
  --max:       1100px;
  --radius:    6px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
}

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

a { color: var(--text); }

/* ── Topbar ──────────────────────────────────────────── */
.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.topbar-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 6%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1.4;
}
.logo span { color: var(--accent-dk); }
nav { display: flex; gap: 28px; align-items: center; }
nav a {
  font-family: var(--font-ui);
  font-size: 18px;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
}
nav a:hover { color: var(--text); }
nav a.active { color: var(--text); background: var(--accent); padding: 6px 12px; border-radius: var(--radius); }
.nav-cta {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 400;
  padding: 8px 18px;
  background: transparent;
  color: var(--text) !important;
  border: 1.5px solid var(--text);
  border-radius: 99px;
  text-decoration: none;
  transition: all .15s;
}
.nav-cta:hover { background: var(--text); color: var(--white) !important; }

/* Hamburger */
.hamburger { display: none; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); margin: 5px 0;
  transition: all .2s;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 20px;
  gap: 4px;
}
.mobile-nav a {
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--muted);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: flex; }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  max-width: 100%;
  padding: 64px 5% 56px 6%;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 32px;
  align-items: center;
}
.hero-text {}
.hero-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent-dk);
  margin-bottom: 14px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: 49px;
  line-height: 1.3;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--text); background-color: var(--accent); padding: 0 4px; }
.hero-body {
  font-size: 20px;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 560px;
}
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all .15s;
  display: inline-block;
}
.btn-primary { background: var(--accent); color: var(--text); }
.btn-primary:hover { background: var(--accent-dk); }
.btn-outline { border: 1.5px solid var(--text); color: var(--text); }
.btn-outline:hover { background: var(--text); color: var(--white); }
.hero-img img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 8px;
}

/* ── Sections ────────────────────────────────────────── */
.section { padding: 64px 24px; }
.section-inner { max-width: 100%; margin: 0 auto; padding: 0 6%; }
.section-alt { background: var(--white); }
.section-accent { background: #f3ede8; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.section-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.section-img-portrait img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

h2 {
  font-family: var(--font-head);
  font-size: 49px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--text);
}
h2 em { font-style: normal; color: var(--text); background-color: var(--accent); padding: 0 4px; }
h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--text);
}
p { margin-bottom: 14px; color: var(--muted); }
p:last-child { margin-bottom: 0; }

.text-link {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 1px;
  display: inline-block;
  margin-top: 16px;
  transition: border-color .15s;
}
.text-link:hover { border-color: var(--text); }

/* ── Preis-Karten ────────────────────────────────────── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}
.price-card h3 { font-size: 18px; margin-bottom: 8px; }
.price-amount {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin: 8px 0 6px;
}
.price-amount span { font-size: 16px; font-family: var(--font-ui); font-weight: 400; color: var(--muted); }
.price-note { font-size: 13px; color: var(--muted); line-height: 1.6; margin-top: 8px; }

/* ── Kontakt-Bereich ─────────────────────────────────── */
.contact-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
}
.contact-box form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-box label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  display: block;
  margin-bottom: 5px;
}
.contact-box input,
.contact-box textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--bg);
  color: var(--text);
  transition: border-color .15s;
}
.contact-box input:focus,
.contact-box textarea:focus {
  outline: none;
  border-color: var(--accent-dk);
}
.contact-box textarea { height: 120px; resize: vertical; }
.contact-info { font-family: var(--font-ui); font-size: 15px; color: var(--muted); line-height: 1.9; }
.contact-info a { color: var(--text); text-decoration: none; font-weight: 500; }
.contact-info a:hover { text-decoration: underline; }

/* ── Footer ──────────────────────────────────────────── */
footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}
.footer-brand {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 47px;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}
.footer-brand em { font-style: normal; background-color: var(--accent); padding: 0 4px; }
.footer-contact {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}
.footer-contact a { color: var(--muted); text-decoration: none; }
.footer-contact a:hover { color: var(--text); }
.footer-links { display: flex; flex-direction: column; gap: 6px; text-align: right; }
.footer-links a {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1400px;
  margin: 24px auto 0;
  padding: 20px 60px 0;
  border-top: 1px solid var(--border);
  font-family: var(--font-ui);
  font-size: 12px;
  color: #bbb;
  display: flex;
  justify-content: space-between;
}

/* ── Seiten-Hero (Unterseiten) ───────────────────────── */
.page-hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
  text-align: center;
}
.page-hero h1 { font-size: 42px; margin-bottom: 8px; }
.page-hero p { font-size: 18px; color: var(--muted); max-width: 560px; margin: 0 auto; }

/* ── Markdown-Content (aus Infokarten) ───────────────── */
.md-content h2 { margin-top: 32px; }
.md-content h3 { margin-top: 24px; font-size: 20px; }
.md-content ul, .md-content ol { padding-left: 20px; margin-bottom: 14px; color: var(--muted); }
.md-content li { margin-bottom: 6px; }
.md-content strong { color: var(--text); font-weight: 600; }
.md-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 8px 16px;
  margin: 16px 0;
  background: #faf3ef;
  border-radius: 0 4px 4px 0;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .hero-img { order: -1; }
  .hero-img img { height: 280px; }
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }
  .section-img img, .section-img-portrait img { height: auto; }
  h2 { font-size: 28px; }
  nav { display: none; }
  .hamburger { display: block; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { text-align: left; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero { padding: 40px 16px; }
  .hero h1 { font-size: 30px; }
  .section { padding: 48px 16px; }
}

.content-col { max-width: 800px; }
.content-col ul { color: var(--muted); padding-left: 24px; margin-bottom: 14px; line-height: 1.9; }
.content-col li { margin-bottom: 6px; }

.page-hero h1 { font-family: var(--font-head); font-weight: 400; font-size: 49px; line-height: 1.3; }

.md-content mark { background-color: var(--accent); color: var(--text); padding: 0 3px; font-style: normal; }
/* Markdown Tabellen */
.md-content table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 16px; }
.md-content th { font-family: var(--font-ui); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); padding: 8px 12px; border-bottom: 2px solid var(--border); text-align: left; }
.md-content td { padding: 10px 12px; border-bottom: 1px solid var(--border); color: var(--muted); vertical-align: top; }
.md-content tr:last-child td { border-bottom: none; }
.md-content td strong { color: var(--text); }
