/* ==========================================================================
   ZILLERHOF – Bauernhof-Style mit Kuhmuster
   Charolaisrinder aus artgerechter Haltung | München-Aubing
   ========================================================================== */

/* --- Fonts (lokal, Variable Font) --- */
@font-face {
  font-family: 'Playfair';
  src: url('../fonts/PlayfairDisplay.woff2') format('woff2');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

/* --- Custom Properties --- */
:root {
  --meadow: #4a7c59;
  --meadow-dark: #365a40;
  --meadow-light: #e8f2eb;
  --earth: #8B6914;
  --earth-light: #f5eed9;
  --barn: #9B2335;
  --barn-light: #fce8eb;
  --cream: #FFF8F0;
  --warm-white: #FFFDF9;
  --surface: #ffffff;
  --text: #2c1810;
  --text-muted: #6b5b4f;
  --line: rgba(139,105,20,.12);
  --line-strong: rgba(139,105,20,.22);
  --shadow-sm: 0 2px 8px rgba(44,24,16,.06);
  --shadow-md: 0 8px 30px rgba(44,24,16,.08);
  --shadow-lg: 0 20px 50px rgba(44,24,16,.12);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --max: 1140px;
  --header-h: 70px;
  --font-heading: 'Playfair', ui-serif, Georgia, 'Times New Roman', serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

  /* Kuhmuster-Farben */
  --cow-dark: #1a1a1a;
  --cow-light: #faf9f6;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- Utility --- */
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.skip-link {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  left: 20px; top: 20px; width: auto; height: auto;
  background: var(--surface); padding: 12px 16px;
  border-radius: var(--radius-sm); box-shadow: var(--shadow-md);
  z-index: 9999; color: var(--meadow);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --- Kuhmuster-Dekor (CSS-Pattern) --- */
.cow-pattern {
  position: relative;
  overflow: hidden;
}
.cow-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .035;
  background:
    radial-gradient(ellipse 120px 90px at 15% 20%, var(--cow-dark) 50%, transparent 51%),
    radial-gradient(ellipse 80px 100px at 75% 15%, var(--cow-dark) 50%, transparent 51%),
    radial-gradient(ellipse 100px 70px at 45% 80%, var(--cow-dark) 50%, transparent 51%),
    radial-gradient(ellipse 140px 80px at 85% 70%, var(--cow-dark) 50%, transparent 51%),
    radial-gradient(ellipse 70px 110px at 25% 60%, var(--cow-dark) 50%, transparent 51%),
    radial-gradient(ellipse 90px 60px at 60% 40%, var(--cow-dark) 50%, transparent 51%);
  pointer-events: none;
  z-index: 0;
}
.cow-pattern > * { position: relative; z-index: 1; }

/* Kuhmuster-Divider */
.cow-divider {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 0;
  opacity: .15;
}
.cow-spot {
  background: var(--cow-dark);
  border-radius: 50%;
}
.cow-spot:nth-child(1) { width: 28px; height: 20px; border-radius: 60% 40% 50% 50%; }
.cow-spot:nth-child(2) { width: 18px; height: 22px; border-radius: 40% 60% 50% 50%; }
.cow-spot:nth-child(3) { width: 32px; height: 18px; border-radius: 50% 50% 40% 60%; }
.cow-spot:nth-child(4) { width: 14px; height: 16px; border-radius: 50%; }
.cow-spot:nth-child(5) { width: 24px; height: 24px; border-radius: 45% 55% 50% 50%; }

/* ==========================================================================
   HEADER — Auto-hide, Blur
   ========================================================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: rgba(255,248,240,.88);
  border-bottom: 1px solid var(--line);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.header--hidden { transform: translateY(-100%); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo/Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--meadow), var(--meadow-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(74,124,89,.25);
  flex-shrink: 0;
  overflow: hidden;
}
.brand-icon svg { width: 28px; height: 28px; }
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .3px;
  line-height: 1.1;
}
.brand-sub {
  font-size: 11.5px;
  color: var(--text-muted);
  letter-spacing: .02em;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
}
.nav a:hover { background: rgba(74,124,89,.08); color: var(--text); }
.nav a[aria-current="page"] {
  background: rgba(74,124,89,.1);
  color: var(--meadow-dark);
  font-weight: 600;
}

/* Burger */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* Header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--barn);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: .02em;
  transition: filter .2s;
}
.header-cta:hover { filter: brightness(1.1); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  padding-top: calc(var(--header-h) + 20px);
  padding-bottom: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  min-height: 480px;
}
.hero-media {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(44,24,16,.3) 0%, transparent 60%);
}
.hero-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 44px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--meadow-light);
  color: var(--meadow-dark);
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 18px;
  letter-spacing: .02em;
}
.hero-kicker svg { width: 16px; height: 16px; }
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}
.hero-title em {
  font-style: normal;
  color: var(--meadow);
}
.hero-lead {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 440px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--text);
  transition: all .2s;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover { background: var(--earth-light); border-color: var(--earth); }
.btn--primary {
  background: var(--meadow);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(74,124,89,.3);
}
.btn--primary:hover { background: var(--meadow-dark); }
.btn--barn {
  background: var(--barn);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(155,35,53,.25);
}
.btn--barn:hover { filter: brightness(1.08); }
.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn--outline-white:hover { background: rgba(255,255,255,.1); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section {
  padding: 60px 0;
}
.section--alt { background: var(--warm-white); }
.section--meadow {
  background: linear-gradient(135deg, var(--meadow) 0%, var(--meadow-dark) 100%);
  color: #fff;
}
.section--meadow .section-sub { color: rgba(255,255,255,.75); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 44px;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--meadow-light);
  color: var(--meadow-dark);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section--meadow .section-badge {
  background: rgba(255,255,255,.15);
  color: #fff;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 16.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   CARDS — Service & Feature
   ========================================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s, transform .3s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 26px;
}
.card-icon--meadow { background: var(--meadow-light); color: var(--meadow); }
.card-icon--earth { background: var(--earth-light); color: var(--earth); }
.card-icon--barn { background: var(--barn-light); color: var(--barn); }
.card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 8px;
}
.card-text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--meadow);
  text-decoration: none;
}
.card-link:hover { color: var(--meadow-dark); }

/* ==========================================================================
   VERKAUFSTAG-BANNER (leicht editierbar)
   ========================================================================== */
.verkaufstag {
  background: linear-gradient(135deg, var(--barn) 0%, #7a1a28 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.verkaufstag::before {
  content: '';
  position: absolute; inset: 0;
  opacity: .06;
  background:
    radial-gradient(ellipse 140px 100px at 10% 25%, #fff 50%, transparent 51%),
    radial-gradient(ellipse 100px 120px at 80% 20%, #fff 50%, transparent 51%),
    radial-gradient(ellipse 120px 80px at 50% 75%, #fff 50%, transparent 51%),
    radial-gradient(ellipse 80px 90px at 90% 65%, #fff 50%, transparent 51%);
  pointer-events: none;
}
.verkaufstag > * { position: relative; z-index: 1; }
.verkaufstag-badge {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(255,255,255,.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.verkaufstag-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  margin-bottom: 10px;
}
.verkaufstag-date {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.verkaufstag-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  opacity: .9;
}
.verkaufstag-location a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.4);
}
.verkaufstag-info {
  font-size: 15px;
  line-height: 1.7;
  opacity: .9;
  margin-bottom: 24px;
  max-width: 600px;
}
.verkaufstag-deadline {
  padding: 10px 16px;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-top: 16px;
  display: inline-block;
}
.verkaufstag-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.verkaufstag .btn--white {
  background: #fff;
  color: var(--barn);
  border-color: transparent;
  font-weight: 700;
}
.verkaufstag .btn--white:hover { background: #f0f0f0; }

/* Verkaufstag-Hinweis (wenn KEIN Verkaufstag) */
.verkaufstag--none {
  background: linear-gradient(135deg, var(--earth) 0%, #6a4d10 100%);
}

/* ==========================================================================
   FLEISCHPAKET-KONFIGURATOR
   ========================================================================== */
.konfig {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.konfig-header {
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--line);
}
.konfig-title {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 4px;
}
.konfig-sub { color: var(--text-muted); font-size: 14.5px; }
.konfig-body { padding: 24px 32px 32px; }

/* Paket-Tabs */
.paket-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.paket-tab {
  padding: 12px 20px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .2s;
  background: var(--surface);
}
.paket-tab:hover { border-color: var(--meadow); color: var(--meadow); }
.paket-tab.active {
  border-color: var(--meadow);
  background: var(--meadow-light);
  color: var(--meadow-dark);
}
.paket-tab .paket-tab-price {
  display: block;
  font-size: 12px;
  font-weight: 400;
  margin-top: 2px;
  opacity: .7;
}

/* Paket-Content */
.paket-content { display: none; }
.paket-content.active { display: block; }

.paket-info {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--meadow-light);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.paket-info-price {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--meadow-dark);
}
.paket-info-price small {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}
.paket-info-details {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Konfig-Zeile (ODER-Wahl) */
.konfig-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.konfig-row:last-child { border-bottom: none; }
.konfig-row-label {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.konfig-row-label .weight {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 13px;
}
.konfig-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.konfig-option {
  padding: 10px 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14px;
  cursor: pointer;
  transition: all .2s;
  background: var(--surface);
  color: var(--text);
}
.konfig-option:hover { border-color: var(--earth); }
.konfig-option.selected {
  border-color: var(--meadow);
  background: var(--meadow-light);
  color: var(--meadow-dark);
  font-weight: 600;
}
.konfig-option.locked {
  border-color: var(--meadow-light);
  background: var(--meadow-light);
  color: var(--meadow-dark);
  cursor: default;
  font-weight: 600;
}

/* Einzelstücke */
.einzel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.einzel-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.einzel-name { font-weight: 600; font-size: 14.5px; }
.einzel-detail { font-size: 12.5px; color: var(--text-muted); }
.einzel-price { font-weight: 700; color: var(--meadow-dark); white-space: nowrap; }
.einzel-qty {
  display: flex;
  align-items: center;
  gap: 6px;
}
.einzel-qty button {
  width: 32px; height: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
  color: var(--text);
  transition: background .15s;
}
.einzel-qty button:hover { background: var(--meadow-light); }
.einzel-qty span {
  min-width: 24px;
  text-align: center;
  font-weight: 600;
}

/* Warenkorb-Zusammenfassung */
.konfig-summary {
  margin-top: 28px;
  padding: 24px;
  background: var(--earth-light);
  border-radius: var(--radius);
  border: 1px solid rgba(139,105,20,.15);
}
.konfig-summary-title {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 12px;
}
.konfig-summary-list {
  margin-bottom: 16px;
}
.konfig-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14.5px;
  border-bottom: 1px dashed rgba(139,105,20,.15);
}
.konfig-summary-item:last-child { border-bottom: none; }
.konfig-summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 2px solid var(--earth);
  font-size: 18px;
  font-weight: 700;
}
.konfig-summary-total .price {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--meadow-dark);
}
.konfig-summary-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ==========================================================================
   ABOUT / CONTENT
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.about-img img { width: 100%; height: 400px; object-fit: cover; }
.about-body {}
.about-title {
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.about-text {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
}
.about-feature-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--meadow);
  flex-shrink: 0;
}

/* ==========================================================================
   PROZESS / STEPS
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  text-align: center;
  padding: 28px 20px;
  counter-increment: step;
}
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--meadow);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-title {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 6px;
}
.step-text { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox figure { margin: 0; max-width: min(960px, 100%); }
.lightbox img { width: 100%; height: auto; border-radius: var(--radius); }
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
}

/* ==========================================================================
   FAQ / ACCORDION
   ========================================================================== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  background: none;
  border: none;
}
.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--meadow);
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-question::after {
  content: '−';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-answer-inner {
  padding: 0 0 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.contact-card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 20px;
}
.contact-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.contact-row:last-child { border-bottom: none; }
.contact-row-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--meadow-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--meadow);
}
.contact-row-label {
  font-size: 12.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
  margin-bottom: 2px;
}
.contact-row-value {
  font-size: 15.5px;
  font-weight: 500;
}
.contact-row-value a { text-decoration: none; color: var(--text); }
.contact-row-value a:hover { color: var(--meadow); }

/* Map Embed */
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  height: 100%;
  min-height: 360px;
}
.contact-map iframe {
  width: 100%; height: 100%; border: none;
  min-height: 360px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  padding: 48px 0 32px;
  background: var(--text);
  color: rgba(255,255,255,.7);
}
.footer a { color: rgba(255,255,255,.7); text-decoration: none; }
.footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}
.footer-brand {
  font-family: var(--font-heading);
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
}
.footer-text {
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 340px;
}
.footer-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14.5px; }
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.footer-legal {
  display: flex;
  gap: 20px;
}

/* ==========================================================================
   PAGE HEADER (Unterseiten)
   ========================================================================== */
.page-header {
  padding: calc(var(--header-h) + 32px) 0 32px;
}
.page-header-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  gap: 6px;
}
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--meadow); }
.page-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.5vw, 42px);
  line-height: 1.12;
  margin-bottom: 12px;
}
.page-lead {
  font-size: 16.5px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 520px;
}
.page-header-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.page-header-media img {
  width: 100%; height: 280px; object-fit: cover;
}

/* Content Block */
.content-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.content-block h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  margin: 24px 0 10px;
}
.content-block h2:first-child { margin-top: 0; }
.content-block p {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.content-block ul {
  margin: 12px 0 16px 20px;
  color: var(--text-muted);
}
.content-block ul li {
  list-style: disc;
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.6;
}
.content-block .checklist li {
  list-style: none;
  position: relative;
  padding-left: 28px;
}
.content-block .checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--meadow);
  font-weight: 700;
}

/* ==========================================================================
   NEWSLETTER CTA
   ========================================================================== */
.newsletter {
  text-align: center;
  padding: 48px 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.newsletter-title {
  font-family: var(--font-heading);
  font-size: 28px;
  margin-bottom: 10px;
}
.newsletter-text {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 300px; }
  .hero-body { padding: 36px 28px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img img { height: 300px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-header-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 16px; right: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 16px; font-size: 15px; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }

  .hero-title { font-size: 30px; }
  .card-grid { grid-template-columns: 1fr; }
  .card-grid--2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .paket-tabs { gap: 6px; }
  .paket-tab { padding: 10px 14px; font-size: 13px; }
  .konfig-header { padding: 20px 20px 16px; }
  .konfig-body { padding: 16px 20px 24px; }
  .einzel-grid { grid-template-columns: 1fr; }
  .verkaufstag { padding: 28px 24px; }

  .section { padding: 40px 0; }
}

@media (max-width: 480px) {
  .container { width: calc(100% - 28px); }
  .hero-body { padding: 28px 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .konfig-options { flex-direction: column; }
  .konfig-option { width: 100%; text-align: center; }
  .about-features { grid-template-columns: 1fr; }
  .konfig-summary-actions { flex-direction: column; }
  .konfig-summary-actions .btn { width: 100%; }
}

/* ==========================================================================
   PRINT
   ========================================================================== */
@media print {
  .header, .footer, .nav-toggle, .lightbox, .skip-link { display: none !important; }
  body { background: #fff; color: #000; }
  .section, .hero { padding: 20px 0; }
}
