
/* === ueber-mich.html === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #FAF8F3; --bg-warm: #F3EFE6; --white: #FFFFFF;
  --dark: #141210; --dark-mid: #2A2520;
  --text: #1C1A17; --text-sub: #5C5750; --text-muted: #9A9590;
  --accent: #9B7B3E;
  --border: #E4DDD4; --border-soft: #EDE9E2;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Trebuchet MS', sans-serif;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-weight: 400; line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0 56px; height: 72px; display: flex; align-items: center; justify-content: space-between; background: rgba(250,248,243,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color 0.3s var(--ease), background 0.3s var(--ease); }
.nav.scrolled { border-bottom-color: var(--border-soft); background: rgba(250,248,243,0.97); }
.nav-logo { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: 0.02em; color: var(--text); }
.nav-logo span { font-weight: 400; font-style: italic; color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 400; letter-spacing: 0.06em; color: var(--text-sub); text-transform: uppercase; transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease); }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--text); }
.nav-cta { background: var(--dark); color: #FAF8F3 !important; padding: 9px 22px; border-radius: 2px; font-size: 12.5px !important; letter-spacing: 0.1em !important; transition: background 0.2s !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent) !important; color: #fff !important; }

/* PAGE HERO */
.page-hero {
  background: var(--dark);
  padding: 152px 56px 80px;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.18;
  filter: grayscale(30%);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20,18,16,0.97) 50%, rgba(20,18,16,0.75) 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.page-hero-eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: #F5F1EA;
  line-height: 1.1;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.35s forwards;
}
.page-hero-title em { font-style: italic; font-weight: 400; color: var(--accent); }
.page-hero-lead {
  margin-top: 24px;
  font-size: 17px;
  color: rgba(245,241,234,0.55);
  font-weight: 300;
  line-height: 1.8;
  max-width: 580px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.5s forwards;
}

/* SECTION SHARED */
section { padding: 96px 56px; }
.section-eyebrow { font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 16px; display: block; }
.section-title { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 42px); font-weight: 700; color: var(--text); line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--accent); }

/* BIO SECTION */
.bio-section { background: var(--white); }
.bio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; max-width: 1400px; margin: 0 auto; }
.bio-img { min-height: 600px; overflow: hidden; position: relative; }
.bio-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.bio-accent { position: absolute; bottom: 0; left: 0; width: 4px; height: 50%; background: var(--accent); z-index: 1; }
.bio-body { padding: 72px 64px; display: flex; flex-direction: column; justify-content: center; gap: 0; }
.bio-body p { font-size: 15px; color: var(--text-sub); line-height: 1.95; margin-bottom: 20px; font-weight: 300; }
.bio-body p strong { font-weight: 500; color: var(--text); }
.bio-quote {
  margin: 32px 0;
  padding: 24px 32px;
  border-left: 3px solid var(--accent);
  background: var(--bg-warm);
}
.bio-quote p {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

/* STATIONEN */
.stationen-section { background: var(--bg); }
.stationen-inner { max-width: 1100px; margin: 0 auto; }
.stationen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.station-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.station-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(20,18,16,0.07); }
.station-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.25s;
}
.station-card:hover::before { opacity: 1; }
.station-icon {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}
.station-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.station-desc {
  font-size: 13.5px;
  color: var(--text-sub);
  line-height: 1.85;
  font-weight: 300;
}

/* METHODIK */
.methodik-section { background: var(--dark); color: #F5F1EA; }
.methodik-inner { max-width: 1100px; margin: 0 auto; }
.methodik-section .section-title { color: #F5F1EA; }
.methodik-section .section-title em { color: var(--accent); }
.methodik-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 52px; }
.methodik-item {
  background: rgba(255,255,255,0.04);
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.25s;
}
.methodik-item:hover { background: rgba(155,123,62,0.08); }
.methodik-label {
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 14px;
}
.methodik-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #F5F1EA;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.methodik-desc {
  font-size: 13.5px;
  color: rgba(245,241,234,0.5);
  line-height: 1.85;
  font-weight: 300;
}

/* FREMDBILD */
.fremdbild-section { background: var(--bg-warm); }
.fremdbild-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.fremdbild-inner .section-eyebrow { display: block; text-align: center; }
.fremdbild-inner .section-title { text-align: center; }
.fremdbild-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 28px);
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  line-height: 1.65;
  margin: 32px 0 16px;
}
.fremdbild-quote strong { font-style: normal; font-weight: 700; color: var(--accent); }
.fremdbild-source {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.adjektive {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
}
.adjektiv {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--text-sub);
  font-weight: 400;
}

/* CTA BAND */
.cta-band { background: var(--accent); padding: 72px 56px; display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.cta-band-text { font-family: var(--font-display); font-size: clamp(22px, 3vw, 32px); font-weight: 700; color: #fff; line-height: 1.2; letter-spacing: -0.01em; max-width: 540px; }
.cta-band-text em { font-style: italic; font-weight: 400; }
.btn-white { background: #fff; color: var(--accent); padding: 16px 36px; border-radius: 2px; font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.2s, transform 0.2s; white-space: nowrap; flex-shrink: 0; }
.btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }

/* FOOTER */
.site-footer { background: var(--dark-mid); color: rgba(245,241,234,0.4); padding: 40px 56px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; letter-spacing: 0.04em; }
.footer-logo { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: rgba(245,241,234,0.7); }
.footer-logo span { font-style: italic; font-weight: 400; color: var(--accent); }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a { color: rgba(245,241,234,0.35); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: rgba(245,241,234,0.7); }
.footer-brand16 { font-size: 10.5px; letter-spacing: 0.1em; color: rgba(245,241,234,0.2); }
.footer-brand16 a { color: rgba(155,123,62,0.5); transition: color 0.2s; }
.footer-brand16 a:hover { color: var(--accent); }


/* ARBEITSPROBEN */
.arbeitsproben-section { background: var(--bg); padding: 96px 56px; }
.arbeitsproben-inner { max-width: 1200px; margin: 0 auto; }

.ap-tabs { display: flex; gap: 2px; margin-top: 40px; margin-bottom: 40px; background: var(--border); border-radius: 3px; width: fit-content; padding: 3px; }
.ap-tab { background: none; border: none; padding: 10px 28px; border-radius: 2px; font-family: var(--font-body); font-size: 12.5px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); cursor: pointer; transition: background 0.2s, color 0.2s; }
.ap-tab.active { background: var(--dark); color: #F5F1EA; }

.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.video-card { display: flex; flex-direction: column; gap: 12px; }
.video-embed { position: relative; padding-bottom: 56.25%; background: var(--dark); border-radius: 3px; overflow: hidden; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.video-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: var(--dark-mid); border: 1px dashed rgba(155,123,62,0.3); border-radius: 3px; }
.video-placeholder svg { width: 32px; height: 32px; fill: rgba(155,123,62,0.4); }
.video-placeholder span { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(155,123,62,0.4); }
.video-label { font-size: 12px; color: var(--text-muted); letter-spacing: 0.06em; }

.audio-list { display: flex; flex-direction: column; gap: 2px; }
.audio-row { display: flex; align-items: center; gap: 20px; background: var(--white); border: 1px solid var(--border); border-radius: 3px; padding: 18px 24px; transition: border-color 0.2s; }
.audio-row:hover { border-color: var(--accent); }
.audio-row-btn { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s, transform 0.2s; }
.audio-row-btn:hover { background: #b08a4a; transform: scale(1.05); }
.audio-row-btn svg { width: 16px; height: 16px; fill: #fff; margin-left: 2px; }
.audio-row-btn.playing svg { margin-left: 0; }
.audio-row-info { flex: 1; }
.audio-row-title { font-size: 14px; font-weight: 500; color: var(--text); }
.audio-row-meta { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.audio-row-wave { display: flex; align-items: center; gap: 3px; height: 20px; opacity: 0; transition: opacity 0.3s; }
.audio-row.playing .audio-row-wave { opacity: 1; }
.audio-row-wave span { display: block; width: 3px; border-radius: 2px; background: var(--accent); animation: wave 1.2s ease-in-out infinite; }
.audio-row-wave span:nth-child(1){height:8px;animation-delay:0.0s}
.audio-row-wave span:nth-child(2){height:14px;animation-delay:0.1s}
.audio-row-wave span:nth-child(3){height:18px;animation-delay:0.2s}
.audio-row-wave span:nth-child(4){height:12px;animation-delay:0.3s}
.audio-row-wave span:nth-child(5){height:16px;animation-delay:0.15s}
@keyframes wave { 0%,100%{opacity:0.4;transform:scaleY(1)} 50%{opacity:1.0;transform:scaleY(1.4)} }

@media (max-width: 900px) {
  .arbeitsproben-section { padding: 64px 24px; }
  .video-grid { grid-template-columns: 1fr; }
}

/* ANIMATIONS */
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  section { padding: 64px 24px; }
  .page-hero { padding: 120px 24px 56px; }
  .bio-grid { grid-template-columns: 1fr; }
  .bio-img { min-height: 340px; }
  .bio-body { padding: 48px 24px; }
  .stationen-grid { grid-template-columns: 1fr; }
  .methodik-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; padding: 48px 24px; }
  .site-footer { flex-direction: column; gap: 20px; text-align: center; padding: 32px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* === leistungen.html === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #FAF8F3; --bg-warm: #F3EFE6; --white: #FFFFFF;
  --dark: #141210; --dark-mid: #2A2520;
  --text: #1C1A17; --text-sub: #5C5750; --text-muted: #9A9590;
  --accent: #9B7B3E;
  --border: #E4DDD4; --border-soft: #EDE9E2;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Trebuchet MS', sans-serif;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-weight: 400; line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0 56px; height: 72px; display: flex; align-items: center; justify-content: space-between; background: rgba(250,248,243,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color 0.3s var(--ease), background 0.3s var(--ease); }
.nav.scrolled { border-bottom-color: var(--border-soft); background: rgba(250,248,243,0.97); }
.nav-logo { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: 0.02em; color: var(--text); }
.nav-logo span { font-weight: 400; font-style: italic; color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 400; letter-spacing: 0.06em; color: var(--text-sub); text-transform: uppercase; transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease); }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--text); }
.nav-cta { background: var(--dark); color: #FAF8F3 !important; padding: 9px 22px; border-radius: 2px; font-size: 12.5px !important; letter-spacing: 0.1em !important; transition: background 0.2s !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent) !important; color: #fff !important; }

/* PAGE HERO */
.page-hero { background: var(--dark); padding: 152px 56px 80px; position: relative; overflow: hidden; min-height: 380px; display: flex; align-items: flex-end; }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; opacity: 0.12; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(20,18,16,0.97) 50%, rgba(20,18,16,0.80) 100%); z-index: 1; }
.page-hero-content { position: relative; z-index: 2; max-width: 800px; }
.page-hero-eyebrow { font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; font-weight: 500; opacity: 0; animation: fadeUp 0.8s var(--ease-out) 0.2s forwards; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px); font-weight: 700; color: #F5F1EA; line-height: 1.1; letter-spacing: -0.02em; opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.35s forwards; }
.page-hero-title em { font-style: italic; font-weight: 400; color: var(--accent); }
.page-hero-lead { margin-top: 24px; font-size: 17px; color: rgba(245,241,234,0.55); font-weight: 300; line-height: 1.8; max-width: 580px; opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.5s forwards; }

/* SECTION SHARED */
section { padding: 96px 56px; }
.section-eyebrow { font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 16px; display: block; }
.section-title { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; color: var(--text); line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--accent); }
.section-lead { font-size: 16px; color: var(--text-sub); line-height: 1.9; max-width: 600px; font-weight: 300; margin-bottom: 0; }

/* PAKETE */
.pakete-section { background: var(--white); }
.pakete-inner { max-width: 1200px; margin: 0 auto; }

.paket-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
  transition: box-shadow 0.25s var(--ease);
}
.paket-block:hover { box-shadow: 0 16px 48px rgba(20,18,16,0.08); }
.paket-block.featured { border-color: var(--accent); }

.paket-meta {
  background: var(--bg);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--border);
}
.paket-block.featured .paket-meta { background: var(--dark); border-right-color: rgba(255,255,255,0.07); }

.paket-badge { font-size: 9.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 20px; }
.paket-block.featured .paket-badge { color: rgba(155,123,62,0.9); }

.paket-name { font-family: var(--font-display); font-size: clamp(22px, 2.5vw, 30px); font-weight: 700; color: var(--text); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 8px; }
.paket-block.featured .paket-name { color: #F5F1EA; }

.paket-tagline { font-size: 14px; color: var(--text-sub); font-style: italic; margin-bottom: 32px; font-family: var(--font-display); }
.paket-block.featured .paket-tagline { color: rgba(245,241,234,0.45); }

.paket-preis-block { margin-top: auto; }
.paket-preis { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--accent); letter-spacing: -0.02em; line-height: 1; }
.paket-preis-detail { font-size: 12px; color: var(--text-muted); letter-spacing: 0.06em; margin-top: 6px; }
.paket-block.featured .paket-preis-detail { color: rgba(245,241,234,0.3); }

.paket-cta {
  display: inline-block;
  margin-top: 28px;
  background: var(--accent);
  color: #fff;
  padding: 13px 28px;
  border-radius: 2px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.paket-cta:hover { background: #b08a4a; transform: translateY(-1px); }
.paket-block.featured .paket-cta { background: rgba(155,123,62,0.9); }

.paket-detail {
  background: var(--white);
  padding: 48px 44px;
}
.paket-block.featured .paket-detail { background: #1a1816; }

.paket-includes-title {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.paket-block.featured .paket-includes-title { color: rgba(245,241,234,0.25); }

.paket-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.paket-includes li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.6;
}
.paket-block.featured .paket-includes li { color: rgba(245,241,234,0.55); }
.paket-includes li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.15;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}
.paket-includes li::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%239B7B3E' d='M13.5 3.5L6 11 2.5 7.5l-1 1L6 13l8.5-8.5z'/%3E%3C/svg%3E") center/14px no-repeat;
  width: 18px; height: 18px;
  content: '';
  flex-shrink: 0;
  margin-top: 3px;
}

.paket-fuer {
  background: var(--bg-warm);
  border-radius: 3px;
  padding: 16px 20px;
}
.paket-block.featured .paket-fuer { background: rgba(155,123,62,0.08); }
.paket-fuer-label { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 6px; }
.paket-fuer-text { font-size: 13.5px; color: var(--text-sub); line-height: 1.6; }
.paket-block.featured .paket-fuer-text { color: rgba(245,241,234,0.45); }

/* RETAINER */
.retainer-section { background: var(--bg); }
.retainer-inner { max-width: 1200px; margin: 0 auto; }
.retainer-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--dark);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 52px;
}
.retainer-left { padding: 56px 52px; }
.retainer-eyebrow { font-size: 9.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 20px; }
.retainer-title { font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px); font-weight: 700; color: #F5F1EA; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px; }
.retainer-title em { font-style: italic; color: var(--accent); font-weight: 400; }
.retainer-desc { font-size: 14px; color: rgba(245,241,234,0.5); line-height: 1.85; font-weight: 300; margin-bottom: 32px; }
.retainer-preis { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--accent); }
.retainer-preis-detail { font-size: 12px; color: rgba(245,241,234,0.3); margin-top: 4px; letter-spacing: 0.05em; }
.retainer-right {
  padding: 56px 52px;
  border-left: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.retainer-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.retainer-feature-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 8px;
}
.retainer-feature-text { font-size: 14px; color: rgba(245,241,234,0.55); line-height: 1.7; }
.retainer-feature-text strong { color: rgba(245,241,234,0.85); font-weight: 500; }

/* ENTSCHEIDUNGSHILFE */
.entscheidung-section { background: var(--bg-warm); }
.entscheidung-inner { max-width: 900px; margin: 0 auto; }
.entscheidung-inner .section-title { margin-bottom: 40px; }
.entscheidung-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.entscheidung-row:last-child { border-bottom: none; }
.entscheidung-situation { font-size: 14px; color: var(--text-sub); line-height: 1.6; }
.entscheidung-arrow { color: var(--accent); font-size: 18px; }
.entscheidung-empfehlung {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  text-align: right;
}

/* CTA BAND */
.cta-band { background: var(--accent); padding: 72px 56px; display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.cta-band-text { font-family: var(--font-display); font-size: clamp(22px, 3vw, 32px); font-weight: 700; color: #fff; line-height: 1.2; letter-spacing: -0.01em; max-width: 540px; }
.cta-band-text em { font-style: italic; font-weight: 400; }
.btn-white { background: #fff; color: var(--accent); padding: 16px 36px; border-radius: 2px; font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.2s, transform 0.2s; white-space: nowrap; flex-shrink: 0; }
.btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }

/* FOOTER */
.site-footer { background: var(--dark-mid); color: rgba(245,241,234,0.4); padding: 40px 56px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; letter-spacing: 0.04em; }
.footer-logo { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: rgba(245,241,234,0.7); }
.footer-logo span { font-style: italic; font-weight: 400; color: var(--accent); }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a { color: rgba(245,241,234,0.35); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: rgba(245,241,234,0.7); }
.footer-brand16 { font-size: 10.5px; letter-spacing: 0.1em; color: rgba(245,241,234,0.2); }
.footer-brand16 a { color: rgba(155,123,62,0.5); transition: color 0.2s; }
.footer-brand16 a:hover { color: var(--accent); }

/* ANIMATIONS */
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  section { padding: 64px 24px; }
  .page-hero { padding: 120px 24px 56px; }
  .paket-block { grid-template-columns: 1fr; }
  .paket-meta { border-right: none; border-bottom: 1px solid var(--border); }
  .retainer-card { grid-template-columns: 1fr; }
  .retainer-right { border-left: none; border-top: 1px solid rgba(255,255,255,0.07); }
  .entscheidung-row { grid-template-columns: 1fr; gap: 8px; }
  .entscheidung-arrow { display: none; }
  .entscheidung-empfehlung { text-align: left; color: var(--accent); }
  .cta-band { flex-direction: column; padding: 48px 24px; }
  .site-footer { flex-direction: column; gap: 20px; text-align: center; padding: 32px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* === ergebnisse.html === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #FAF8F3; --bg-warm: #F3EFE6; --white: #FFFFFF;
  --dark: #141210; --dark-mid: #2A2520;
  --text: #1C1A17; --text-sub: #5C5750; --text-muted: #9A9590;
  --accent: #9B7B3E;
  --border: #E4DDD4; --border-soft: #EDE9E2;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Trebuchet MS', sans-serif;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-weight: 400; line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0 56px; height: 72px; display: flex; align-items: center; justify-content: space-between; background: rgba(250,248,243,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color 0.3s var(--ease), background 0.3s var(--ease); }
.nav.scrolled { border-bottom-color: var(--border-soft); background: rgba(250,248,243,0.97); }
.nav-logo { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: 0.02em; color: var(--text); }
.nav-logo span { font-weight: 400; font-style: italic; color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 400; letter-spacing: 0.06em; color: var(--text-sub); text-transform: uppercase; transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease); }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--text); }
.nav-cta { background: var(--dark); color: #FAF8F3 !important; padding: 9px 22px; border-radius: 2px; font-size: 12.5px !important; letter-spacing: 0.1em !important; transition: background 0.2s !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent) !important; color: #fff !important; }

/* PAGE HERO */
.page-hero { background: var(--dark); padding: 152px 56px 80px; position: relative; overflow: hidden; min-height: 380px; display: flex; align-items: flex-end; }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; opacity: 0.13; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(20,18,16,0.97) 50%, rgba(20,18,16,0.80) 100%); z-index: 1; }
.page-hero-content { position: relative; z-index: 2; max-width: 800px; }
.page-hero-eyebrow { font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; font-weight: 500; opacity: 0; animation: fadeUp 0.8s var(--ease-out) 0.2s forwards; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px); font-weight: 700; color: #F5F1EA; line-height: 1.1; letter-spacing: -0.02em; opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.35s forwards; }
.page-hero-title em { font-style: italic; font-weight: 400; color: var(--accent); }
.page-hero-lead { margin-top: 24px; font-size: 17px; color: rgba(245,241,234,0.55); font-weight: 300; line-height: 1.8; max-width: 580px; opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.5s forwards; }

/* SECTIONS */
section { padding: 96px 56px; }
.section-eyebrow { font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 16px; display: block; }
.section-title { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; color: var(--text); line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--accent); }

/* NUMBERS STRIP */
.numbers-strip { background: var(--dark); padding: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.number-item { padding: 40px 44px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); text-align: center; }
.number-value { font-family: var(--font-display); font-size: clamp(44px, 6vw, 72px); font-weight: 700; color: var(--accent); letter-spacing: -0.03em; line-height: 1; }
.number-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,241,234,0.35); margin-top: 12px; }

/* CASE STUDIES */
.cases-section { background: var(--white); }
.cases-inner { max-width: 1200px; margin: 0 auto; }

.case-block {
  margin-bottom: 64px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.case-block:last-child { margin-bottom: 0; }

.case-header {
  background: var(--dark);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}
.case-client-label { font-size: 9.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 10px; }
.case-client-name { font-family: var(--font-display); font-size: clamp(22px, 2.8vw, 32px); font-weight: 700; color: #F5F1EA; letter-spacing: -0.02em; line-height: 1.15; }
.case-client-sub { font-size: 14px; color: rgba(245,241,234,0.4); margin-top: 6px; }
.case-tag {
  background: rgba(155,123,62,0.15);
  border: 1px solid rgba(155,123,62,0.3);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.case-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.case-col {
  padding: 36px 36px;
  border-right: 1px solid var(--border);
}
.case-col:last-child { border-right: none; }
.case-col-label {
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.case-col-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--accent);
}
.case-col p { font-size: 14px; color: var(--text-sub); line-height: 1.85; font-weight: 300; }
.case-col p strong { color: var(--text); font-weight: 500; }

.case-result {
  background: var(--bg-warm);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--border);
}
.case-result-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.case-result-icon svg { width: 16px; height: 16px; fill: #fff; }
.case-result-text { font-size: 14px; color: var(--text); line-height: 1.6; }
.case-result-text strong { font-weight: 600; color: var(--accent); }

/* WIRKUNG */
.wirkung-section { background: var(--bg); }
.wirkung-inner { max-width: 1100px; margin: 0 auto; }
.wirkung-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
.wirkung-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 32px 28px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.wirkung-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(20,18,16,0.07); }
.wirkung-nr { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--border); line-height: 1; margin-bottom: 16px; letter-spacing: -0.03em; }
.wirkung-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 10px; letter-spacing: -0.01em; }
.wirkung-desc { font-size: 13.5px; color: var(--text-sub); line-height: 1.85; font-weight: 300; }

/* STIMMEN */
.stimmen-section { background: var(--dark); }
.stimmen-inner { max-width: 1100px; margin: 0 auto; }
.stimmen-section .section-title { color: #F5F1EA; }
.stimmen-section .section-title em { color: var(--accent); }
.stimmen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 52px; }
.stimme-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 3px;
  padding: 36px 32px;
}
.stimme-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: rgba(245,241,234,0.8);
  line-height: 1.7;
  margin-bottom: 24px;
}
.stimme-text strong { font-style: normal; color: var(--accent); font-weight: 600; }
.stimme-source { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,241,234,0.25); }
.stimme-source span { color: rgba(155,123,62,0.6); }

/* CTA BAND */
.cta-band { background: var(--accent); padding: 72px 56px; display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.cta-band-text { font-family: var(--font-display); font-size: clamp(22px, 3vw, 32px); font-weight: 700; color: #fff; line-height: 1.2; letter-spacing: -0.01em; max-width: 540px; }
.cta-band-text em { font-style: italic; font-weight: 400; }
.btn-white { background: #fff; color: var(--accent); padding: 16px 36px; border-radius: 2px; font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.2s, transform 0.2s; white-space: nowrap; flex-shrink: 0; }
.btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }

/* FOOTER */
.site-footer { background: var(--dark-mid); color: rgba(245,241,234,0.4); padding: 40px 56px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; letter-spacing: 0.04em; }
.footer-logo { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: rgba(245,241,234,0.7); }
.footer-logo span { font-style: italic; font-weight: 400; color: var(--accent); }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a { color: rgba(245,241,234,0.35); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: rgba(245,241,234,0.7); }
.footer-brand16 { font-size: 10.5px; letter-spacing: 0.1em; color: rgba(245,241,234,0.2); }
.footer-brand16 a { color: rgba(155,123,62,0.5); transition: color 0.2s; }
.footer-brand16 a:hover { color: var(--accent); }


/* VIDEO IN CASES */
.case-video { margin-top: 0; border-top: 1px solid var(--border); }
.case-video-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.case-video-item { padding: 28px 36px; }
.case-video-item:first-child { border-right: 1px solid var(--border); }
.case-video-label { font-size: 9.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.case-video-label::before { content: ''; display: inline-block; width: 20px; height: 1px; background: var(--accent); }
.case-video-embed { position: relative; padding-bottom: 56.25%; background: var(--dark); border-radius: 3px; overflow: hidden; }
.case-video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.case-video-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; background: var(--dark-mid); border: 1px dashed rgba(155,123,62,0.3); border-radius: 3px; }
.case-video-placeholder svg { width: 28px; height: 28px; fill: rgba(155,123,62,0.4); }
.case-video-placeholder span { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(155,123,62,0.4); }
@media (max-width: 900px) { .case-video-inner { grid-template-columns: 1fr; } .case-video-item:first-child { border-right: none; border-bottom: 1px solid var(--border); } }

/* ANIMATIONS */
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  section { padding: 64px 24px; }
  .page-hero { padding: 120px 24px 56px; }
  .numbers-strip { grid-template-columns: 1fr; padding: 40px 24px; gap: 2px; }
  .case-header { grid-template-columns: 1fr; }
  .case-body { grid-template-columns: 1fr; }
  .case-col { border-right: none; border-bottom: 1px solid var(--border); }
  .case-col:last-child { border-bottom: none; }
  .wirkung-grid { grid-template-columns: 1fr; }
  .stimmen-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; padding: 48px 24px; }
  .site-footer { flex-direction: column; gap: 20px; text-align: center; padding: 32px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* === kontakt.html === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #FAF8F3; --bg-warm: #F3EFE6; --white: #FFFFFF;
  --dark: #141210; --dark-mid: #2A2520;
  --text: #1C1A17; --text-sub: #5C5750; --text-muted: #9A9590;
  --accent: #9B7B3E;
  --border: #E4DDD4; --border-soft: #EDE9E2;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Trebuchet MS', sans-serif;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-weight: 400; line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0 56px; height: 72px; display: flex; align-items: center; justify-content: space-between; background: rgba(250,248,243,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color 0.3s var(--ease), background 0.3s var(--ease); }
.nav.scrolled { border-bottom-color: var(--border-soft); background: rgba(250,248,243,0.97); }
.nav-logo { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: 0.02em; color: var(--text); }
.nav-logo span { font-weight: 400; font-style: italic; color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 400; letter-spacing: 0.06em; color: var(--text-sub); text-transform: uppercase; transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease); }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--text); }
.nav-cta { background: var(--dark); color: #FAF8F3 !important; padding: 9px 22px; border-radius: 2px; font-size: 12.5px !important; letter-spacing: 0.1em !important; transition: background 0.2s !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent) !important; color: #fff !important; }

/* PAGE HERO */
.page-hero { background: var(--dark); padding: 152px 56px 80px; position: relative; overflow: hidden; min-height: 380px; display: flex; align-items: flex-end; }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; opacity: 0.12; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(20,18,16,0.97) 50%, rgba(20,18,16,0.80) 100%); z-index: 1; }
.page-hero-content { position: relative; z-index: 2; max-width: 800px; }
.page-hero-eyebrow { font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; font-weight: 500; opacity: 0; animation: fadeUp 0.8s var(--ease-out) 0.2s forwards; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px); font-weight: 700; color: #F5F1EA; line-height: 1.1; letter-spacing: -0.02em; opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.35s forwards; }
.page-hero-title em { font-style: italic; font-weight: 400; color: var(--accent); }
.page-hero-lead { margin-top: 24px; font-size: 17px; color: rgba(245,241,234,0.55); font-weight: 300; line-height: 1.8; max-width: 560px; opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.5s forwards; }

/* MAIN KONTAKT */
.kontakt-section { background: var(--white); padding: 0; }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; max-width: 1400px; margin: 0 auto; min-height: 700px; }

/* LEFT: Info */
.kontakt-info { background: var(--dark); padding: 72px 64px; display: flex; flex-direction: column; justify-content: space-between; }
.kontakt-info-top {}
.kontakt-info-eyebrow { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 20px; }
.kontakt-info-title { font-family: var(--font-display); font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: #F5F1EA; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px; }
.kontakt-info-title em { font-style: italic; font-weight: 400; color: var(--accent); }
.kontakt-info-desc { font-size: 14px; color: rgba(245,241,234,0.45); line-height: 1.85; font-weight: 300; max-width: 380px; }

.kontakt-ablauf { margin-top: 52px; }
.kontakt-ablauf-title { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(245,241,234,0.25); margin-bottom: 24px; }
.ablauf-steps { display: flex; flex-direction: column; gap: 20px; }
.ablauf-step { display: flex; gap: 20px; align-items: flex-start; }
.ablauf-nr { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--accent); opacity: 0.6; flex-shrink: 0; width: 20px; margin-top: 1px; }
.ablauf-text { font-size: 13.5px; color: rgba(245,241,234,0.5); line-height: 1.7; }
.ablauf-text strong { color: rgba(245,241,234,0.8); font-weight: 500; }

.kontakt-direct { margin-top: 52px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.07); }
.kontakt-direct-label { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(245,241,234,0.25); margin-bottom: 16px; }
.kontakt-direct-email { font-family: var(--font-display); font-size: 18px; color: var(--accent); font-weight: 400; letter-spacing: 0.01em; transition: opacity 0.2s; }
.kontakt-direct-email:hover { opacity: 0.75; }
.kontakt-direct-note { font-size: 12px; color: rgba(245,241,234,0.2); margin-top: 8px; }

/* RIGHT: Form */
.kontakt-form-wrap { background: var(--white); padding: 72px 64px; display: flex; flex-direction: column; justify-content: center; }
.form-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -0.01em; }
.form-subtitle { font-size: 13.5px; color: var(--text-muted); margin-bottom: 40px; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.form-label { font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); font-weight: 500; display: block; margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  font-weight: 300;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
  background: var(--white);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%239A9590' d='M8 10L3 5h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 12px; padding-right: 36px; }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.form-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 8px;
}
.form-submit:hover { background: #b08a4a; transform: translateY(-1px); }

.form-note { font-size: 11.5px; color: var(--text-muted); margin-top: 14px; line-height: 1.6; text-align: center; }
.form-note a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* SUCCESS STATE */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
}
.form-success-icon { font-size: 40px; margin-bottom: 16px; }
.form-success-title { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.form-success-text { font-size: 14px; color: var(--text-sub); line-height: 1.8; }

/* FAQ */
.faq-section { background: var(--bg); padding: 96px 56px; }
.faq-inner { max-width: 900px; margin: 0 auto; }
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 2px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 2px; overflow: hidden; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  gap: 16px;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--bg); }
.faq-icon { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s; }
.faq-icon svg { width: 10px; height: 10px; fill: var(--text-muted); transition: transform 0.3s; }
.faq-item.open .faq-icon { background: var(--accent); border-color: var(--accent); }
.faq-item.open .faq-icon svg { fill: #fff; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-answer-inner { padding: 0 28px 22px; font-size: 14px; color: var(--text-sub); line-height: 1.85; font-weight: 300; }

/* FOOTER */
.site-footer { background: var(--dark-mid); color: rgba(245,241,234,0.4); padding: 40px 56px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; letter-spacing: 0.04em; }
.footer-logo { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: rgba(245,241,234,0.7); }
.footer-logo span { font-style: italic; font-weight: 400; color: var(--accent); }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a { color: rgba(245,241,234,0.35); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: rgba(245,241,234,0.7); }
.footer-brand16 { font-size: 10.5px; letter-spacing: 0.1em; color: rgba(245,241,234,0.2); }
.footer-brand16 a { color: rgba(155,123,62,0.5); transition: color 0.2s; }
.footer-brand16 a:hover { color: var(--accent); }

/* ANIMATIONS */
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .page-hero { padding: 120px 24px 56px; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .kontakt-info { padding: 56px 28px; }
  .kontakt-form-wrap { padding: 48px 28px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .faq-section { padding: 64px 24px; }
  .site-footer { flex-direction: column; gap: 20px; text-align: center; padding: 32px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* === impressum.html === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #FAF8F3; --bg-warm: #F3EFE6; --white: #FFFFFF;
  --dark: #141210; --dark-mid: #2A2520;
  --text: #1C1A17; --text-sub: #5C5750; --text-muted: #9A9590;
  --accent: #9B7B3E;
  --border: #E4DDD4; --border-soft: #EDE9E2;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Trebuchet MS', sans-serif;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-weight: 400; line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0 56px; height: 72px; display: flex; align-items: center; justify-content: space-between; background: rgba(250,248,243,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color 0.3s var(--ease), background 0.3s var(--ease); }
.nav.scrolled { border-bottom-color: var(--border-soft); background: rgba(250,248,243,0.97); }
.nav-logo { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: 0.02em; color: var(--text); }
.nav-logo span { font-weight: 400; font-style: italic; color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 400; letter-spacing: 0.06em; color: var(--text-sub); text-transform: uppercase; transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease); }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { background: var(--dark); color: #FAF8F3 !important; padding: 9px 22px; border-radius: 2px; font-size: 12.5px !important; letter-spacing: 0.1em !important; transition: background 0.2s !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent) !important; color: #fff !important; }

/* PAGE HERO */
.page-hero { background: var(--dark); padding: 152px 56px 72px; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; opacity: 0.08; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(20,18,16,0.96); z-index: 1; }
.page-hero-content { position: relative; z-index: 2; max-width: 700px; }
.page-hero-eyebrow { font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; font-weight: 500; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 700; color: #F5F1EA; line-height: 1.1; letter-spacing: -0.02em; }

/* CONTENT */
.legal-section { padding: 80px 56px; }
.legal-inner { max-width: 760px; margin: 0 auto; }

.legal-block { margin-bottom: 48px; }
.legal-block:last-child { margin-bottom: 0; }

.legal-h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.legal-h3 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  margin-top: 24px;
}
.legal-p {
  font-size: 14.5px;
  color: var(--text-sub);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 12px;
}
.legal-p a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal-p strong { font-weight: 500; color: var(--text); }

.placeholder-banner {
  background: rgba(155,123,62,0.08);
  border: 1px solid rgba(155,123,62,0.25);
  border-radius: 3px;
  padding: 14px 20px;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}

/* FOOTER */
.site-footer { background: var(--dark-mid); color: rgba(245,241,234,0.4); padding: 40px 56px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; letter-spacing: 0.04em; }
.footer-logo { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: rgba(245,241,234,0.7); }
.footer-logo span { font-style: italic; font-weight: 400; color: var(--accent); }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a { color: rgba(245,241,234,0.35); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: rgba(245,241,234,0.7); }
.footer-brand16 { font-size: 10.5px; letter-spacing: 0.1em; color: rgba(245,241,234,0.2); }
.footer-brand16 a { color: rgba(155,123,62,0.5); transition: color 0.2s; }
.footer-brand16 a:hover { color: var(--accent); }

@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .page-hero { padding: 120px 24px 56px; }
  .legal-section { padding: 56px 24px; }
  .site-footer { flex-direction: column; gap: 20px; text-align: center; padding: 32px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* === datenschutz.html === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #FAF8F3; --bg-warm: #F3EFE6; --white: #FFFFFF;
  --dark: #141210; --dark-mid: #2A2520;
  --text: #1C1A17; --text-sub: #5C5750; --text-muted: #9A9590;
  --accent: #9B7B3E;
  --border: #E4DDD4; --border-soft: #EDE9E2;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Trebuchet MS', sans-serif;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-weight: 400; line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }

.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0 56px; height: 72px; display: flex; align-items: center; justify-content: space-between; background: rgba(250,248,243,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color 0.3s var(--ease), background 0.3s var(--ease); }
.nav.scrolled { border-bottom-color: var(--border-soft); background: rgba(250,248,243,0.97); }
.nav-logo { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: 0.02em; color: var(--text); }
.nav-logo span { font-weight: 400; font-style: italic; color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 400; letter-spacing: 0.06em; color: var(--text-sub); text-transform: uppercase; transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease); }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { background: var(--dark); color: #FAF8F3 !important; padding: 9px 22px; border-radius: 2px; font-size: 12.5px !important; letter-spacing: 0.1em !important; transition: background 0.2s !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent) !important; color: #fff !important; }

.page-hero { background: var(--dark); padding: 152px 56px 72px; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; opacity: 0.08; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(20,18,16,0.96); z-index: 1; }
.page-hero-content { position: relative; z-index: 2; max-width: 700px; }
.page-hero-eyebrow { font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; font-weight: 500; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 700; color: #F5F1EA; line-height: 1.1; letter-spacing: -0.02em; }

.legal-section { padding: 80px 56px; }
.legal-inner { max-width: 760px; margin: 0 auto; }
.legal-block { margin-bottom: 48px; }
.legal-block:last-child { margin-bottom: 0; }
.legal-h2 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.legal-h3 { font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; margin-top: 24px; }
.legal-p { font-size: 14.5px; color: var(--text-sub); line-height: 1.85; font-weight: 300; margin-bottom: 12px; }
.legal-p a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal-p strong { font-weight: 500; color: var(--text); }
.legal-ul { list-style: none; margin: 12px 0; }
.legal-ul li { font-size: 14.5px; color: var(--text-sub); line-height: 1.85; font-weight: 300; padding-left: 20px; position: relative; margin-bottom: 6px; }
.legal-ul li::before { content: '–'; position: absolute; left: 0; color: var(--accent); }

.placeholder-banner { background: rgba(155,123,62,0.08); border: 1px solid rgba(155,123,62,0.25); border-radius: 3px; padding: 14px 20px; font-size: 12px; color: var(--accent); letter-spacing: 0.04em; margin-bottom: 32px; }

.site-footer { background: var(--dark-mid); color: rgba(245,241,234,0.4); padding: 40px 56px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; letter-spacing: 0.04em; }
.footer-logo { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: rgba(245,241,234,0.7); }
.footer-logo span { font-style: italic; font-weight: 400; color: var(--accent); }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a { color: rgba(245,241,234,0.35); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: rgba(245,241,234,0.7); }
.footer-brand16 { font-size: 10.5px; letter-spacing: 0.1em; color: rgba(245,241,234,0.2); }
.footer-brand16 a { color: rgba(155,123,62,0.5); transition: color 0.2s; }
.footer-brand16 a:hover { color: var(--accent); }

@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .page-hero { padding: 120px 24px 56px; }
  .legal-section { padding: 56px 24px; }
  .site-footer { flex-direction: column; gap: 20px; text-align: center; padding: 32px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* === index.html === */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #FAF8F3; --bg-warm: #F3EFE6; --white: #FFFFFF;
  --dark: #141210; --dark-mid: #2A2520;
  --text: #1C1A17; --text-sub: #5C5750; --text-muted: #9A9590;
  --accent: #9B7B3E;
  --accent-light: rgba(155,123,62,0.12);
  --accent-line: rgba(155,123,62,0.30);
  --border: #E4DDD4; --border-soft: #EDE9E2;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Trebuchet MS', sans-serif;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); font-weight: 400; line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0 56px; height: 72px; display: flex; align-items: center; justify-content: space-between; background: rgba(250,248,243,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color 0.3s var(--ease), background 0.3s var(--ease); }
.nav.scrolled { border-bottom-color: var(--border-soft); background: rgba(250,248,243,0.97); }
.nav-logo { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: 0.02em; color: var(--text); }
.nav-logo span { font-weight: 400; font-style: italic; color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 400; letter-spacing: 0.06em; color: var(--text-sub); text-transform: uppercase; transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease); }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--text); }
.nav-cta { background: var(--dark); color: #FAF8F3 !important; padding: 9px 22px; border-radius: 2px; font-size: 12.5px !important; letter-spacing: 0.1em !important; transition: background 0.2s !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent) !important; color: #fff !important; }

/* HERO */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 56px 72px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: var(--dark); z-index: 0; }
.hero-photo { position: absolute; top: 0; right: 0; width: 52%; height: 100%; z-index: 0; overflow: hidden; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(20,18,16,0.88) 38%, rgba(20,18,16,0.45) 65%, rgba(20,18,16,0.10) 100%); z-index: 2; }
.hero-content { position: relative; z-index: 3; max-width: 680px; }
.hero-eyebrow { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; font-weight: 500; opacity: 0; animation: fadeUp 0.8s var(--ease-out) 0.2s forwards; }
.hero-title { font-family: var(--font-display); font-size: clamp(52px, 7vw, 88px); font-weight: 700; color: #F5F1EA; line-height: 1.0; letter-spacing: -0.02em; margin-bottom: 10px; opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.35s forwards; }
.hero-title-italic { font-style: italic; font-weight: 400; color: var(--accent); display: block; }
.hero-claim { font-family: var(--font-display); font-size: clamp(20px, 2.8vw, 28px); font-weight: 400; font-style: italic; color: rgba(245,241,234,0.65); margin-bottom: 36px; letter-spacing: 0.01em; opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.5s forwards; }
.hero-audio { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.65s forwards; }
.audio-btn { width: 48px; height: 48px; border-radius: 50%; background: var(--accent); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform 0.2s, background 0.2s; flex-shrink: 0; }
.audio-btn:hover { transform: scale(1.05); background: #b08a4a; }
.audio-btn svg { width: 18px; height: 18px; fill: #fff; margin-left: 2px; }
.audio-info { display: flex; flex-direction: column; gap: 3px; }
.audio-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,241,234,0.45); }
.audio-wave { display: flex; align-items: center; gap: 3px; height: 20px; }
.audio-wave span { display: block; width: 3px; border-radius: 2px; background: rgba(155,123,62,0.5); animation: wave 1.2s ease-in-out infinite; }
.audio-wave span:nth-child(1){height:8px;animation-delay:0.0s}
.audio-wave span:nth-child(2){height:14px;animation-delay:0.1s}
.audio-wave span:nth-child(3){height:18px;animation-delay:0.2s}
.audio-wave span:nth-child(4){height:12px;animation-delay:0.3s}
.audio-wave span:nth-child(5){height:16px;animation-delay:0.15s}
.audio-wave span:nth-child(6){height:9px;animation-delay:0.25s}
.audio-wave span:nth-child(7){height:13px;animation-delay:0.05s}
.audio-wave span:nth-child(8){height:17px;animation-delay:0.35s}
.audio-wave span:nth-child(9){height:10px;animation-delay:0.2s}
.audio-wave span:nth-child(10){height:15px;animation-delay:0.1s}
@keyframes wave { 0%,100%{opacity:0.4;transform:scaleY(1)} 50%{opacity:1.0;transform:scaleY(1.4)} }
.hero-actions { display: flex; align-items: center; gap: 20px; opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.8s forwards; }

/* BUTTONS */
.btn-primary { background: var(--accent); color: #fff; padding: 15px 34px; border-radius: 2px; font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; transition: background 0.2s, transform 0.2s; border: none; cursor: pointer; }
.btn-primary:hover { background: #b08a4a; transform: translateY(-1px); }
.btn-ghost { color: rgba(245,241,234,0.6); font-size: 13px; letter-spacing: 0.06em; display: flex; align-items: center; gap: 8px; transition: color 0.2s; }
.btn-ghost:hover { color: #F5F1EA; }
.btn-ghost svg { width: 16px; height: 16px; }
.btn-white { background: #fff; color: var(--accent); padding: 16px 36px; border-radius: 2px; font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.2s, transform 0.2s; white-space: nowrap; flex-shrink: 0; }
.btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }

/* SECTIONS */
section { padding: 96px 56px; }
.section-eyebrow { font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 16px; display: block; }
.section-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); font-weight: 700; color: var(--text); line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--accent); }
.section-lead { font-size: 16px; color: var(--text-sub); line-height: 1.9; max-width: 560px; font-weight: 300; }

/* INTRO STRIP */
.intro-strip { background: var(--dark); color: #F5F1EA; padding: 48px 56px; display: flex; align-items: center; gap: 56px; }
.intro-strip-text { font-family: var(--font-display); font-size: clamp(18px, 2.5vw, 24px); font-weight: 400; font-style: italic; line-height: 1.6; color: rgba(245,241,234,0.85); max-width: 680px; }
.intro-strip-text strong { font-style: normal; font-weight: 600; color: var(--accent); }
.intro-strip-rule { width: 1px; height: 80px; background: rgba(255,255,255,0.1); flex-shrink: 0; }
.intro-strip-meta { flex-shrink: 0; }
.intro-strip-name { font-size: 13px; font-weight: 500; color: #F5F1EA; letter-spacing: 0.04em; }
.intro-strip-role { font-size: 12px; color: rgba(245,241,234,0.4); margin-top: 4px; letter-spacing: 0.06em; }

/* ABOUT PREVIEW */
.about-preview { background: var(--white); max-width: 1400px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.about-img { min-height: 520px; overflow: hidden; position: relative; }
.about-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-img-accent { position: absolute; bottom: 0; left: 0; width: 4px; height: 60%; background: var(--accent); z-index: 1; }
.about-body { padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }
.about-body p { font-size: 15px; color: var(--text-sub); line-height: 1.9; margin-bottom: 16px; font-weight: 300; }
.about-body p:last-of-type { margin-bottom: 28px; }
.credentials { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.credential { display: flex; align-items: center; gap: 14px; font-size: 13px; color: var(--text-sub); }
.credential::before { content: ''; width: 24px; height: 1px; background: var(--accent); flex-shrink: 0; }

/* LEISTUNGEN */
.leistungen-preview { background: var(--bg); padding: 96px 56px; }
.leistungen-preview .inner { max-width: 1300px; margin: 0 auto; }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
.pkg-card { background: var(--white); border: 1px solid var(--border); border-radius: 3px; padding: 32px 28px; display: flex; flex-direction: column; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.pkg-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(20,18,16,0.08); }
.pkg-card.featured { background: var(--dark); border-color: transparent; }
.pkg-badge { font-size: 9.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 16px; }
.pkg-card.featured .pkg-badge { color: rgba(155,123,62,0.8); }
.pkg-name { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--text); line-height: 1.25; margin-bottom: 14px; letter-spacing: -0.01em; }
.pkg-card.featured .pkg-name { color: #F5F1EA; }
.pkg-desc { font-size: 13.5px; color: var(--text-sub); line-height: 1.85; flex: 1; margin-bottom: 24px; font-weight: 300; }
.pkg-card.featured .pkg-desc { color: rgba(245,241,234,0.55); }
.pkg-price { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--accent); letter-spacing: -0.01em; margin-bottom: 4px; }
.pkg-detail { font-size: 11.5px; color: var(--text-muted); letter-spacing: 0.04em; }
.pkg-card.featured .pkg-detail { color: rgba(245,241,234,0.3); }

/* CTA BAND */
.cta-band { background: var(--accent); padding: 72px 56px; display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.cta-band-text { font-family: var(--font-display); font-size: clamp(22px, 3vw, 32px); font-weight: 700; color: #fff; line-height: 1.2; letter-spacing: -0.01em; max-width: 540px; }
.cta-band-text em { font-style: italic; font-weight: 400; }

/* FOOTER */
.site-footer { background: var(--dark-mid); color: rgba(245,241,234,0.4); padding: 40px 56px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; letter-spacing: 0.04em; }
.footer-logo { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: rgba(245,241,234,0.7); }
.footer-logo span { font-style: italic; font-weight: 400; color: var(--accent); }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a { color: rgba(245,241,234,0.35); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: rgba(245,241,234,0.7); }
.footer-brand16 { font-size: 10.5px; letter-spacing: 0.1em; color: rgba(245,241,234,0.2); }
.footer-brand16 a { color: rgba(155,123,62,0.5); transition: color 0.2s; }
.footer-brand16 a:hover { color: var(--accent); }

/* ANIMATIONS */
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  section { padding: 64px 24px; }
  .hero { padding: 0 24px 56px; }
  .hero-photo { width: 100%; opacity: 0.3; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { min-height: 300px; }
  .pkg-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; padding: 48px 24px; }
  .intro-strip { flex-direction: column; padding: 40px 24px; gap: 28px; }
  .intro-strip-rule { display: none; }
  .site-footer { flex-direction: column; gap: 20px; text-align: center; padding: 32px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

