/* Das Gegenteil von Einfach — Unified Design System
 * Palette: Warm Cream #F5F0E8 · Near-Black #1A1A1A · Taupe #B8A07A · Dark #141210 · Cream-2 #EDE6D8
 * Typography: Playfair Display (headlines) · Georgia (body)
 * Mood: Literarisch · Minimalistisch · Editorial — like the book cover
 */

/* ═══════════════════════════════════════
   CSS CUSTOM PROPERTIES — Light (default)
═══════════════════════════════════════ */
:root,
[data-theme="light"] {
  --cream:       #F5F0E8;
  --cream-2:     #EDE6D8;
  --dark:        #141210;
  --near-black:  #1A1A1A;
  --taupe:       #B8A07A;
  --taupe-dark:  #8C7355;
  --warm-white:  #FAF7F2;
  --gray:        #6B6B6B;
  --gray-light:  #9A9A9A;

  /* Semantic tokens */
  --bg:             var(--cream);
  --bg-alt:         var(--cream-2);
  --text:           var(--near-black);
  --text-muted:     var(--gray);
  --text-faint:     var(--gray-light);
  --border:         var(--cream-2);

  /* Nav — Light Mode: hell mit dunkler Schrift */
  --nav-bg:         var(--cream);
  --nav-text:       var(--near-black);
  --nav-accent:     var(--taupe-dark);
  --nav-border:     var(--cream-2);

  /* Hero / page-header — Light Mode: hell */
  --hero-bg:        var(--cream-2);
  --hero-text:      var(--near-black);
  --hero-muted:     var(--gray);

  /* Sections */
  --section-dark:   var(--near-black);
  --section-dark-text: var(--cream);

  /* Cards */
  --card-bg:        #fff;
  --card-shadow:    rgba(26,26,26,0.08);
  --card-border:    var(--taupe);
  --card-text:      #444;

  /* Buttons */
  --btn-primary-bg:    var(--near-black);
  --btn-primary-text:  var(--cream);
  --btn-primary-hover: #333;
  --btn-secondary-bg:  transparent;
  --btn-secondary-text: var(--near-black);
  --btn-secondary-border: var(--near-black);
  /* In light mode the hero is now light — outline-light button uses dark text */
  --btn-outline-light-text: var(--near-black);
  --btn-outline-light-border: rgba(26,26,26,0.4);

  /* CTA band */
  --cta-bg:         var(--near-black);
  --cta-text:       var(--cream);

  /* Newsletter */
  --newsletter-bg:  var(--near-black);
  --newsletter-text: var(--cream);

  /* Footer */
  --footer-bg:      #0d0d0a;
  --footer-text:    rgba(245,240,232,0.7);
  --footer-heading: var(--cream);
  --footer-link:    rgba(245,240,232,0.65);
  --footer-accent:  var(--taupe);

  /* Highlight / accent */
  --accent:         var(--taupe);
  --accent-dark:    var(--taupe-dark);
  --highlight-bg:   rgba(184,160,122,0.08);
  --highlight-border: var(--taupe);

  /* Divider */
  --divider-from:   var(--taupe);
  --divider-to:     var(--cream-2);

  /* Forms */
  --input-bg:       #fff;
  --input-border:   #ccc;
  --input-text:     var(--near-black);
  --input-focus:    var(--taupe);

  /* Blog */
  --blog-post-border: var(--cream-2);
  --blog-tag-bg:    var(--cream-2);
  --blog-tag-text:  var(--gray);
  --blog-sidebar-bg: var(--cream-2);
  --surface-alt:    var(--cream-2);

  /* Klaro */
  --klaro-bg:       var(--near-black);
  --klaro-accent:   var(--taupe);
  --klaro-hover:    var(--taupe-dark);

  /* Checklist */
  --check-color:    var(--taupe);

  /* Testimonial */
  --testimonial-bg: #fff;
  --testimonial-quote: var(--taupe);

  /* Booking */
  --booking-bg:     var(--cream-2);

  /* Badge */
  --badge-bg:       rgba(184,160,122,0.15);
  --badge-text:     var(--taupe-dark);
  --badge-border:   rgba(184,160,122,0.35);

  /* Accent colors */
  --accent-teal:    #0A8A7A;
  --accent-gold:    #D4A843;

  /* Misc */
  --selection-bg:   var(--taupe);
  --selection-text:  #fff;
}

/* ═══════════════════════════════════════
   DARK MODE
═══════════════════════════════════════ */
[data-theme="dark"] {
  --cream:       #F5F0E8;
  --cream-2:     #EDE6D8;
  --dark:        #141210;
  --near-black:  #1A1A1A;
  --taupe:       #B8A07A;
  --taupe-dark:  #8C7355;
  --warm-white:  #FAF7F2;
  --gray:        #9A9A9A;
  --gray-light:  #6B6B6B;

  --bg:             #141210;
  --bg-alt:         #1A1816;
  --text:           #F5F0E8;
  --text-muted:     #9A9A9A;
  --text-faint:     #6B6B6B;
  --border:         #2A2724;

  --nav-bg:         #0A0908;
  --nav-text:       #F5F0E8;
  --nav-accent:     var(--taupe);
  --nav-border:     rgba(184,160,122,0.15);

  --hero-bg:        #111010;
  --hero-text:      #F5F0E8;
  --hero-muted:     rgba(245,240,232,0.7);

  --section-dark:   #0E0D0B;
  --section-dark-text: #F5F0E8;

  --card-bg:        #1E1C1A;
  --card-shadow:    rgba(0,0,0,0.3);
  --card-border:    var(--taupe);
  --card-text:      rgba(245,240,232,0.75);

  --btn-primary-bg:    var(--taupe);
  --btn-primary-text:  #141210;
  --btn-primary-hover: var(--taupe-dark);
  --btn-secondary-bg:  transparent;
  --btn-secondary-text: #F5F0E8;
  --btn-secondary-border: rgba(245,240,232,0.4);
  --btn-outline-light-text: #F5F0E8;
  --btn-outline-light-border: rgba(245,240,232,0.3);

  --cta-bg:         #0E0D0B;
  --cta-text:       #F5F0E8;

  --newsletter-bg:  #0E0D0B;
  --newsletter-text: #F5F0E8;

  --footer-bg:      #080807;
  --footer-text:    rgba(245,240,232,0.6);
  --footer-heading: #F5F0E8;
  --footer-link:    rgba(245,240,232,0.55);
  --footer-accent:  var(--taupe);

  --accent:         var(--taupe);
  --accent-dark:    var(--taupe-dark);
  --highlight-bg:   rgba(184,160,122,0.1);
  --highlight-border: var(--taupe);

  --divider-from:   var(--taupe);
  --divider-to:     #2A2724;

  --input-bg:       #1E1C1A;
  --input-border:   #2A2724;
  --input-text:     #F5F0E8;
  --input-focus:    var(--taupe);

  --blog-post-border: #2A2724;
  --blog-tag-bg:    #2A2724;
  --blog-tag-text:  rgba(245,240,232,0.65);
  --blog-sidebar-bg: #1E1C1A;
  --surface-alt:    #1E1C1A;

  --klaro-bg:       #0E0D0B;
  --klaro-accent:   var(--taupe);
  --klaro-hover:    var(--taupe-dark);

  --check-color:    var(--taupe);

  --testimonial-bg: #1E1C1A;
  --testimonial-quote: var(--taupe);

  --booking-bg:     #1E1C1A;

  --badge-bg:       rgba(184,160,122,0.15);
  --badge-text:     var(--taupe);
  --badge-border:   rgba(184,160,122,0.3);

  /* Accent colors */
  --accent-teal:    #0d9e8c;
  --accent-gold:    #e0b84a;

  --selection-bg:   var(--taupe);
  --selection-text:  #141210;
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  transition: background 0.3s, color 0.3s;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
::selection { background: var(--selection-bg); color: var(--selection-text); }

/* ═══════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 1rem; font-weight: 700; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; font-weight: 700; }
p { margin-bottom: 1rem; max-width: 68ch; }
strong { color: var(--text); }

/* ═══════════════════════════════════════
   LAYOUT
═══════════════════════════════════════ */
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--dark { background: var(--section-dark); color: var(--section-dark-text); }
.section--dark h1,.section--dark h2,.section--dark h3,.section--dark p { color: var(--section-dark-text); }
.section--teal { background: var(--accent); color: #fff; }
.section--teal h1,.section--teal h2,.section--teal h3,.section--teal p { color: #fff; }
.section--light { background: var(--bg-alt); }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-teal { color: var(--accent); }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 2px;
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: 2px solid transparent;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border-color: var(--btn-primary-bg);
}
.btn-primary:hover {
  background: var(--btn-primary-hover);
  border-color: var(--btn-primary-hover);
  text-decoration: none;
  color: var(--btn-primary-text);
}
.btn-secondary {
  background: var(--btn-secondary-bg);
  color: var(--btn-secondary-text);
  border-color: var(--btn-secondary-border);
}
.btn-secondary:hover {
  background: var(--btn-secondary-text);
  color: var(--bg);
  text-decoration: none;
}
.btn-outline-light {
  background: transparent;
  color: var(--btn-outline-light-text);
  border-color: var(--btn-outline-light-border);
}
.btn-outline-light:hover {
  background: rgba(245,240,232,0.1);
  border-color: var(--cream);
  color: var(--cream);
  text-decoration: none;
}
.btn-teal {
  background: var(--taupe);
  color: var(--dark);
  border-color: var(--taupe);
}
.btn-teal:hover {
  background: var(--taupe-dark);
  border-color: var(--taupe-dark);
  text-decoration: none;
  color: var(--dark);
}

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-bottom: 1px solid var(--nav-border, rgba(184,160,122,0.2));
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.nav__logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: var(--nav-text);
  font-weight: bold;
  text-decoration: none;
}
.nav__logo span { color: var(--nav-accent); }
.nav__links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  list-style: none;
}
.nav__links a {
  color: var(--nav-text);
  opacity: 0.75;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.15s, opacity 0.15s;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--nav-accent);
  text-decoration: none;
  opacity: 1;
}
.nav__links .btn {
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  background: var(--taupe);
  border-color: var(--taupe);
  color: var(--dark);
}
.nav__links .btn:hover {
  background: var(--taupe-dark);
  border-color: var(--taupe-dark);
}
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--nav-text);
  margin: 5px 0;
}

/* Theme toggle */
.nav__theme-toggle {
  list-style: none;
}
.nav__theme-btn {
  background: none;
  border: 1px solid rgba(245,240,232,0.2);
  border-radius: 2px;
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  font-size: 1rem;
  line-height: 1;
  color: var(--nav-text);
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 0;
}
.nav__theme-btn:hover {
  border-color: var(--taupe);
  background: rgba(184,160,122,0.1);
}
/* Show/hide sun/moon based on theme */
[data-theme="light"] .theme-icon--dark,
[data-theme=""] .theme-icon--dark,
:root:not([data-theme]) .theme-icon--dark { display: none; }
[data-theme="light"] .theme-icon--light,
[data-theme=""] .theme-icon--light,
:root:not([data-theme]) .theme-icon--light { display: inline; }

[data-theme="dark"] .theme-icon--light { display: none; }
[data-theme="dark"] .theme-icon--dark { display: inline; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  background: var(--hero-bg);
  color: var(--hero-text);
  padding: 6rem 0 0;
  position: relative;
  overflow: visible;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(135deg, transparent 0%, rgba(184,160,122,0.06) 100%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hero__text h1 { color: var(--hero-text); margin-bottom: 1.25rem; }
.hero__text p { color: var(--hero-muted); font-size: 1.15rem; max-width: 52ch; }
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.hero__badge {
  display: inline-block;
  background: var(--badge-bg);
  color: var(--badge-text);
  border: 1px solid var(--badge-border);
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero__image { position: relative; display: flex; justify-content: center; align-items: flex-end; overflow: visible; }
.hero__image img {
  width: 100%;
  max-width: 360px;
  height: 540px;
  object-fit: cover;
  object-position: top center;
  border-radius: 3px;
  filter: grayscale(10%);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
/* Freigestelltes Cutout-Bild — kein crop, kein box-shadow, kein border-radius */
.hero__image .hero__img--cutout {
  height: auto;
  max-width: 460px;
  max-height: min(800px, 85vh);
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.55));
  align-self: flex-end;
  /* Absicherung: weiße Ränder bei PNG mit Alpha-Kanal-Fransen unterdrücken */
  mix-blend-mode: normal;
}
.hero__image::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 10%;
  width: 80%;
  height: 4px;
  background: var(--taupe);
}
/* Kein Linie-Dekor unter dem Cutout */
.hero__image:has(.hero__img--cutout)::after {
  display: none;
}

/* ═══════════════════════════════════════
   CARDS
═══════════════════════════════════════ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.card {
  background: var(--card-bg);
  border-radius: 4px;
  padding: 2rem;
  box-shadow: 0 2px 16px var(--card-shadow);
  border-top: 4px solid var(--card-border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px var(--card-shadow); }
.card--teal { border-top-color: var(--taupe-dark); }
.card--gold { border-top-color: var(--taupe); }
.card__tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.card--teal .card__tag { color: var(--accent-dark); }
.card h3 { margin-bottom: 0.75rem; }
.card p { font-size: 0.95rem; color: var(--card-text); margin-bottom: 1.25rem; max-width: none; }
.card__meta { font-size: 0.8rem; color: var(--text-faint); margin-bottom: 1rem; }

/* ═══════════════════════════════════════
   TWO COLUMN
═══════════════════════════════════════ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

/* ═══════════════════════════════════════
   HIGHLIGHT BOXES
═══════════════════════════════════════ */
.highlight-box {
  border-left: 4px solid var(--highlight-border);
  padding: 1.5rem 2rem;
  background: var(--highlight-bg);
  margin: 2rem 0;
  border-radius: 0 4px 4px 0;
}
.highlight-box--teal {
  border-left-color: var(--accent-dark);
  background: rgba(140,115,85,0.05);
}

/* ═══════════════════════════════════════
   CHECKLIST
═══════════════════════════════════════ */
.checklist { list-style: none; padding: 0; margin: 1.5rem 0; }
.checklist li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--check-color);
  font-weight: bold;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.testimonial {
  background: var(--testimonial-bg);
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 2px 16px var(--card-shadow);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--testimonial-quote);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
}
.testimonial p { font-style: italic; color: var(--card-text); padding-top: 1rem; }
.testimonial__author { margin-top: 1rem; font-size: 0.85rem; font-weight: bold; color: var(--text); }
.testimonial__role { font-size: 0.8rem; color: var(--text-faint); }

/* ═══════════════════════════════════════
   CTA BAND
═══════════════════════════════════════ */
.cta-band {
  background: var(--cta-bg);
  padding: 4rem 0;
  text-align: center;
}
.cta-band h2 { color: var(--cta-text); margin-bottom: 1rem; }
.cta-band p { color: rgba(245,240,232,0.8); margin: 0 auto 2rem; max-width: 55ch; }
.cta-band .btn { margin: 0 0.5rem; }

/* ═══════════════════════════════════════
   PAGE HEADER
═══════════════════════════════════════ */
.page-header {
  background: var(--hero-bg);
  padding: 4rem 0 3rem;
  text-align: center;
}
.page-header h1 { color: var(--hero-text); }
.page-header p { color: var(--hero-muted); margin: 1rem auto 0; max-width: 60ch; }
.page-header .badge {
  display: inline-block;
  background: var(--badge-bg);
  color: var(--badge-text);
  border: 1px solid var(--badge-border);
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  border-radius: 2px;
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════ */
.contact-form { max-width: 640px; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.form-group input,.form-group select,.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--input-border);
  border-radius: 3px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--input-bg);
  color: var(--input-text);
  transition: border-color 0.15s;
}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus {
  outline: none;
  border-color: var(--input-focus);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; color: var(--text-muted); }
.form-check input { width: auto; margin-top: 0.2rem; }

/* ═══════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════ */
.newsletter {
  background: var(--newsletter-bg);
  padding: 4rem 0;
  text-align: center;
}
.newsletter h2 { color: var(--newsletter-text); }
.newsletter p { color: rgba(245,240,232,0.8); margin: 1rem auto 2rem; max-width: 55ch; }
.newsletter__form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter__form input {
  flex: 1;
  min-width: 220px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(245,240,232,0.2);
  background: rgba(245,240,232,0.08);
  color: var(--cream);
  border-radius: 3px;
  font-family: inherit;
  font-size: 1rem;
}
.newsletter__form input::placeholder { color: rgba(245,240,232,0.4); }
.newsletter__form input:focus { outline: none; border-color: var(--taupe); }

/* ═══════════════════════════════════════
   BOOKING WIDGET
═══════════════════════════════════════ */
.booking-widget {
  background: var(--booking-bg);
  border-radius: 4px;
  overflow: hidden;
  margin: 2rem 0;
}
.booking-widget iframe { width: 100%; min-height: 500px; border: none; display: block; }
.booking-placeholder { padding: 3rem 2rem; text-align: center; }
.booking-placeholder p { color: var(--text-muted); margin: 0 auto; }

/* ═══════════════════════════════════════
   COOKIE CONSENT (Klaro!)
═══════════════════════════════════════ */
.klaro .cookie-modal,.klaro .cookie-notice { font-family: Georgia, serif !important; }
.klaro .cm-btn.cm-btn-success,.klaro .cm-btn.cm-btn-info {
  background-color: var(--klaro-accent) !important;
  border-color: var(--klaro-accent) !important;
  color: var(--dark) !important;
}
.klaro .cm-btn.cm-btn-success:hover {
  background-color: var(--klaro-hover) !important;
}
.klaro .cookie-notice {
  background: var(--klaro-bg) !important;
}
.klaro .cookie-notice .cn-body p { color: rgba(245,240,232,0.85) !important; }

/* ═══════════════════════════════════════
   DIVIDER
═══════════════════════════════════════ */
.divider {
  height: 3px;
  background: linear-gradient(90deg, var(--divider-from), var(--divider-to));
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 3.5rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer__brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  color: var(--footer-heading);
  margin-bottom: 0.75rem;
}
.footer__brand span { color: var(--footer-accent); }
.footer p { font-size: 0.9rem; max-width: 36ch; }
.footer h4 {
  color: var(--footer-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 0.5rem; }
.footer__links a { color: var(--footer-link); font-size: 0.9rem; text-decoration: none; }
.footer__links a:hover { color: var(--footer-accent); }
.footer__bottom {
  border-top: 1px solid rgba(245,240,232,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom a { color: rgba(245,240,232,0.5); }
.footer__bottom a:hover { color: var(--footer-accent); }

/* ═══════════════════════════════════════
   BLOG
═══════════════════════════════════════ */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: flex-start;
}
.blog-post {
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--blog-post-border);
}
.blog-post__meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  margin-bottom: 0.5rem;
}
.blog-post__title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.blog-post__title a {
  color: var(--text);
  text-decoration: none;
}
.blog-post__title a:hover { color: var(--accent); text-decoration: none; }
.blog-post__excerpt {
  color: var(--text-muted);
  font-size: 0.97rem;
  margin-bottom: 0.75rem;
  max-width: none;
}
.blog-post__read-more {
  color: var(--accent);
  font-weight: bold;
  font-size: 0.9rem;
}
/* Sidebar */
.blog-sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 1.5rem; }
.blog-sidebar__newsletter {
  background: var(--newsletter-bg);
  padding: 1.75rem;
  border-radius: 4px;
  color: var(--newsletter-text);
}
.blog-sidebar__newsletter h3 { color: var(--newsletter-text); margin-bottom: 0.5rem; font-size: 1rem; }
.blog-sidebar__newsletter p { font-size: 0.875rem; opacity: 0.75; margin-bottom: 1.25rem; max-width: none; }
.blog-sidebar__newsletter input[type="email"] {
  width: 100%; padding: 0.65rem 1rem;
  border: 1px solid rgba(245,240,232,0.2);
  background: rgba(245,240,232,0.08);
  color: var(--cream);
  border-radius: 3px;
  font-family: inherit;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  display: block;
}
.blog-sidebar__newsletter input::placeholder { color: rgba(245,240,232,0.4); }
.blog-sidebar__newsletter .btn { width: 100%; }
.blog-sidebar__tags { padding: 1.5rem; background: var(--blog-sidebar-bg); border-radius: 4px; }
.blog-sidebar__tags h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-faint); margin-bottom: 0.75rem; }
.blog-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.blog-tags span { background: var(--blog-tag-bg); padding: 0.2rem 0.55rem; border-radius: 2px; font-size: 0.78rem; color: var(--blog-tag-text); }
.blog-sidebar__buch {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.25rem;
}
.blog-sidebar__buch img { border-radius: 3px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); flex-shrink: 0; }
.blog-sidebar__buch p { font-size: 0.85rem; color: var(--text-muted); margin: 0; max-width: none; }

/* ═══════════════════════════════════════
   BUCH PAGE — HERO (from style.css)
═══════════════════════════════════════ */
.buch-hero { padding: 5rem 0 4rem; }
.buch-hero__subtitle {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--hero-muted);
  margin-bottom: 0.75rem;
}
.buch-hero__cover {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.buch-hero__cover img {
  max-width: 280px;
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 4px 16px rgba(0,0,0,0.3);
}

/* ═══════════════════════════════════════
   BUCH PAGE — EXPOSÉ (from style.css)
═══════════════════════════════════════ */
.buch-expose {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3.5rem;
  align-items: start;
  margin-bottom: 3rem;
}
.buch-expose__lead {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--accent);
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
  max-width: none;
}
.buch-quote {
  border-left: 4px solid var(--taupe);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--highlight-bg);
  border-radius: 0 4px 4px 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text);
}
.buch-quote cite {
  display: block;
  font-size: 0.85rem;
  color: var(--accent);
  font-style: normal;
  margin-top: 0.5rem;
  font-weight: bold;
}

/* Buch facts sidebar */
.buch-facts {
  background: var(--blog-sidebar-bg);
  border-radius: 6px;
  padding: 1.75rem;
  position: sticky;
  top: 80px;
}
.buch-facts h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  margin-bottom: 1rem;
}
.buch-facts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.buch-facts li {
  display: flex;
  flex-direction: column;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text);
}
.buch-facts li:last-child { border-bottom: none; }
.buch-facts li span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-faint);
  margin-bottom: 0.15rem;
}

/* ═══════════════════════════════════════
   BUCH PAGE — REGELN TEASER (from style.css)
═══════════════════════════════════════ */
.buch-regeln {
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.buch-regeln h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.buch-regeln__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.buch-regel-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.25rem 1.25rem 1.25rem 1rem;
  border-left: 3px solid var(--accent);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.buch-regel-num {
  font-size: 0.7rem;
  font-weight: bold;
  color: var(--accent);
  opacity: 0.6;
  min-width: 24px;
  padding-top: 0.15rem;
  letter-spacing: 0.05em;
}
.buch-regel-item p {
  font-size: 0.9rem;
  color: var(--card-text);
  line-height: 1.5;
  margin: 0;
  max-width: none;
}
.buch-regeln__hint {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-faint);
  font-style: italic;
}

/* ═══════════════════════════════════════
   BOD SHOP WIDGETS (from style.css)
═══════════════════════════════════════ */
.bod-widgets {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto 2rem;
  max-width: 900px;
}
.bod-widget-card {
  background: var(--card-bg);
  border-radius: 6px;
  padding: 1.25rem 1.25rem 0.75rem;
  flex: 1;
  min-width: 240px;
  max-width: 360px;
  box-shadow: 0 4px 20px var(--card-shadow);
}
.bod-widget-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}
.bod-widget-label--print { border-bottom-color: var(--accent); }
.bod-widget-label--ebook { border-bottom-color: var(--accent-dark); }
.bod-widget-label__icon { font-size: 1.25rem; line-height: 1; }
.bod-widget-label__text {
  font-size: 0.95rem;
  font-weight: bold;
  color: var(--text);
  flex: 1;
}
.bod-widget-label__note {
  font-size: 0.72rem;
  color: var(--text-faint);
  font-style: italic;
}
.bodShopWidget {
  background: transparent !important;
}
.bod-fallback {
  display: none;
  margin: 1rem auto 0;
}
.bod-fallback--visible {
  display: block;
}
.bod-fallback__note {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0 auto 1.5rem;
}
.bod-fallback__links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   UTILITY / SHARED PATTERNS
═══════════════════════════════════════ */

/* Eyebrow / section label */
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.section-label--teal { color: var(--accent-teal); }

/* Info box (keynote/workshop detail grids) */
.info-box {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--bg-alt);
  border-radius: 4px;
}
.info-box--card {
  background: var(--card-bg);
  box-shadow: 0 2px 8px var(--card-shadow);
}
.info-box__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  font-size: 0.9rem;
}

/* Subtle horizontal rule */
.hr-subtle {
  height: 1px;
  background: var(--border);
}

/* Book teaser box (dark sections) */
.book-teaser {
  background: rgba(245,240,232,0.06);
  border: 1px solid rgba(245,240,232,0.12);
  border-radius: 4px;
  padding: 2rem;
}

/* Module cards for dark sections (online-kurs) */
.module-card {
  background: rgba(245,240,232,0.06);
  color: var(--cream);
}
.module-card h3 { color: var(--cream); }
.module-card p { color: var(--hero-muted); }

/* Timeline marker (ueber-mich) */
.timeline-marker {
  width: 4px;
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 0.25rem;
  min-height: 40px;
  background: var(--accent);
}
.timeline-marker--teal { background: var(--accent-teal); }

/* Info note box */
.info-note {
  margin-top: 1rem;
  padding: 1.25rem;
  background: var(--bg-alt);
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FAQ items */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: bold;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item__icon { color: var(--accent); font-size: 1.25rem; }

/* Profile photo — headshot for ueber-mich */
.profile-photo {
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: cover;
  object-position: top center;
  border-radius: 3px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  display: block;
}

/* Response time box */
.response-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--bg-alt);
  border-radius: 4px;
}
.response-box h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  margin-bottom: 0.75rem;
}
.response-box p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 768px) {
  .nav__links {
    display: none;
  }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .nav__toggle { display: flex; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__image { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .cards { grid-template-columns: 1fr; }
  /* Blog */
  .blog-layout { grid-template-columns: 1fr; gap: 3rem; }
  .blog-sidebar { position: static; }
  /* Buch page (style.css portions) */
  .buch-expose { grid-template-columns: 1fr; gap: 2rem; }
  .buch-facts { position: static; }
  .buch-hero__cover img { max-width: 200px; }
  .buch-regeln__grid { grid-template-columns: 1fr; }
  .bod-widgets { flex-direction: column; align-items: center; }
  .bod-widget-card { max-width: 100%; }
  /* Theme toggle in mobile nav */
  .nav__theme-toggle { align-self: flex-start; }
}
