*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #B08456;
  --gold-light: #C9A07A;
  --gold-pale: #F0E6D9;
  --terra: #BA5826;
  --terra-light: #C96E3D;
  --terra-pale: #F5E4D8;
  --dark: #2C2C2E;
  --anthrazit: #3A3A3C;
  --anthrazit-deep: #2C2C2E;
  --mid: #4B4B4F;
  --stone: #7E7E84;
  --cream: #FAF7F4;
  --white: #FFFFFF;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --nav-h: 96px;
  --gutter: clamp(20px, 3vw, 48px);
  --max: 1680px;
  --edge: var(--gutter);
  --wrap: min(100% - 2 * var(--edge), var(--max));
  --page-pad: var(--gutter);
  --radius: 0;
}

@media (min-width: 1760px) {
  :root {
    --edge: calc((100vw - var(--max)) / 2);
  }
}

@media (min-width: 1400px) {
  :root { --nav-h: 100px; }
  .nav-logo img { height: 50px; max-width: 220px; }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  overflow-x: hidden;
  background: var(--dark);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--dark);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font-family: inherit; }
ul { list-style: none; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 200;
  background: var(--terra);
  color: var(--white);
  padding: 12px 18px;
  text-decoration: none;
  font-size: 0.85rem;
}
.skip-link:focus { top: 16px; }

.wrap {
  width: var(--wrap);
  max-width: var(--max);
  margin-inline: auto;
}

/* ── BUTTONS ── */
.btn-primary,
.btn-outline,
.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 15px 32px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  font-family: var(--sans);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, transform 0.18s, box-shadow 0.18s, border-color 0.25s, color 0.25s;
  border: 2px solid var(--terra);
  white-space: nowrap;
  background: var(--terra);
  color: var(--white);
}

.btn-primary:hover,
.btn-nav:hover {
  background: var(--terra-light);
  border-color: var(--terra-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(186, 88, 38, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--terra);
}

.btn-outline:hover {
  background: var(--terra-pale);
  transform: translateY(-2px);
}

.btn-nav {
  min-width: 0;
  padding: 12px 22px;
  font-size: 0.72rem;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 247, 244, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(186, 88, 38, 0.15);
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07); }

.nav-inner {
  width: var(--wrap);
  max-width: var(--max);
  margin-inline: auto;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 46px;
  width: auto;
  max-width: min(200px, 48vw);
  object-fit: contain;
  display: block;
  background: transparent;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-left: auto;
}

.nav-links a:not(.btn-nav) {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}

.nav-links a:not(.btn-nav):hover,
.nav-links a:not(.btn-nav).is-active { color: var(--terra); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  margin: 5px auto;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

main { display: block; }
.hero,
.about-split,
.prp-split,
.haar-split {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  box-sizing: border-box;
  padding-inline: var(--edge);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  padding-top: var(--nav-h);
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 5vw, 80px) clamp(28px, 4vw, 48px) clamp(40px, 5vw, 80px) 0;
}

.hero-text-inner {
  width: 100%;
  max-width: 36rem;
}

.hero-photo {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: var(--cream);
}

.hero-eyebrow,
.section-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 24px;
  font-weight: 600;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 28px;
}

.hero-headline em,
.section-title em {
  font-style: italic;
  color: var(--terra);
  font-weight: 600;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--mid);
  margin-bottom: 44px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
}

.hero-actions .btn-primary,
.hero-actions .btn-outline {
  width: auto;
  min-width: 0;
  flex: 0 1 auto;
  white-space: nowrap;
  padding: 14px 22px;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--terra);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  padding: 28px var(--page-pad);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.trust-dot {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

/* ── SECTIONS ── */
.section { padding: clamp(48px, 6vw, 72px) 0; }

.section-eyebrow { margin-bottom: 16px; letter-spacing: 0.28em; }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 20px;
  max-width: 620px;
}

.section-sub {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.4;
  margin: -4px 0 8px;
  max-width: 620px;
}

.section-lead {
  font-size: 1rem;
  color: var(--mid);
  max-width: 560px;
  line-height: 1.85;
  margin-bottom: 56px;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--terra);
  margin: 20px 0 36px;
  border-radius: 2px;
}

.prose {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.85;
}

.prose + .prose { margin-top: 20px; }

.media-frame {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: var(--cream);
}

.media-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── ABOUT ── */
.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  background: var(--cream);
}

.about-content {
  padding: clamp(40px, 5vw, 64px) clamp(28px, 4vw, 48px) clamp(40px, 5vw, 64px) 0;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.value-card { border-top: 1px solid var(--terra-pale); padding-top: 20px; }

.value-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--terra);
  margin-bottom: 8px;
  font-weight: 700;
  opacity: 0.35;
}

.value-name {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 6px;
}

.value-text { font-size: 0.88rem; color: var(--stone); line-height: 1.7; }

/* ── PRP ── */
.prp-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  background: var(--white);
}

.prp-photo {
  background: var(--white);
}

.prp-content {
  padding: clamp(40px, 5vw, 64px) 0 clamp(40px, 5vw, 64px) clamp(28px, 4vw, 48px);
}

.prp-steps {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.prp-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
}

.step-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--terra);
  line-height: 1;
  font-weight: 700;
  opacity: 0.4;
}

.step-title {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  color: var(--dark);
}

.step-text { font-size: 0.9rem; color: var(--stone); line-height: 1.75; }

.prp-cta { margin-top: 44px; }

/* ── INDIKATIONEN ── */
.indikationen { background: var(--cream); }

.indik-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
  list-style: none;
  padding: 0;
}

.indik-compact li {
  background: var(--white);
  padding: 28px 32px;
}

.indik-compact strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.35;
}

.indik-compact span {
  display: block;
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.7;
}

.indikationen .realistic-grid { margin-top: 48px; }

/* ── ABLAUF ── */
.ablauf { background: var(--white); }

.ablauf-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
  border: 1px solid rgba(176, 132, 86, 0.18);
}

.ablauf-step {
  background: var(--cream);
  padding: 52px 40px;
  position: relative;
  border-right: 1px solid rgba(176, 132, 86, 0.15);
}

.ablauf-step:last-child { border-right: none; }

.ablauf-step::after {
  content: "→";
  position: absolute;
  right: -12px;
  top: 56px;
  font-size: 1.1rem;
  color: var(--terra);
  z-index: 2;
}

.ablauf-step:last-child::after { display: none; }

.ablauf-num {
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--terra);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
  display: block;
  opacity: 0.25;
}

.ablauf-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.ablauf-text { font-size: 0.92rem; color: var(--stone); line-height: 1.8; }

.ablauf-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── ERGEBNISSE ── */
.ergebnisse {
  background: var(--anthrazit);
  color: var(--white);
}

.ergebnisse .section-title { color: var(--white); max-width: 700px; }
.ergebnisse .section-lead { color: rgba(255, 255, 255, 0.6); }
.ergebnisse .divider { background: var(--terra); }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: calc(25% - 8px);
  height: 1px;
  background: var(--terra);
  opacity: 0.35;
}

.timeline-item { padding: 0 28px 0 0; text-align: left; }

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--terra);
  background: var(--dark);
  margin: 0 0 20px;
  position: relative;
  z-index: 2;
}

.timeline-week {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--terra);
  margin-bottom: 10px;
}

.timeline-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}

.timeline-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
}

.ergebnisse-cta { margin-top: 56px; }

/* ── REALISTIC ── */

.realistic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 56px;
}

.real-col-yes h3,
.real-col-no h3 {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}

.real-col-yes h3 { color: var(--terra); }
.real-col-no h3 { color: var(--stone); }

.real-list { display: flex; flex-direction: column; gap: 14px; }

.real-list li {
  font-size: 0.95rem;
  color: var(--mid);
  padding-left: 24px;
  position: relative;
  line-height: 1.7;
}

.real-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 2px;
  background: var(--terra);
}

.real-col-no .real-list li::before { background: var(--stone); }

.real-note {
  grid-column: 1 / -1;
  background: var(--terra-pale);
  padding: 28px 36px;
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.8;
  border-left: 3px solid var(--terra);
}

/* ── HAARAUSFALL ── */
.haarausfall { background: var(--dark); color: var(--white); }

.haarausfall .section-title { color: var(--white); }
.haarausfall .section-lead { color: rgba(255, 255, 255, 0.6); }
.haarausfall .divider { background: var(--terra); }

.haar-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
}

.haar-photo {
  background: var(--dark);
}

.haar-text {
  padding: clamp(40px, 5vw, 64px) clamp(28px, 4vw, 48px) clamp(40px, 5vw, 64px) 0;
}

.haar-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
  margin-bottom: 20px;
}

.haar-cta { margin-top: 36px; }

/* ── PREISE ── */
.preise { background: var(--cream); }

.preise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.preis-card {
  background: var(--white);
  padding: 52px 40px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.preis-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(176, 132, 86, 0.15);
  z-index: 1;
}

.preis-card.is-featured { border-top: 3px solid var(--terra); }

.preis-badge {
  position: absolute;
  top: -12px;
  left: 40px;
  background: var(--terra);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 14px;
  font-weight: 400;
}

.preis-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 12px;
}

.preis-name {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.preis-original {
  font-size: 0.88rem;
  color: var(--stone);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.preis-amount {
  font-family: var(--serif);
  font-size: 2.9rem;
  font-weight: 700;
  color: var(--terra);
  margin-bottom: 6px;
}

.preis-savings {
  font-size: 0.82rem;
  color: var(--terra);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  font-weight: 600;
}

.preis-divider {
  width: 32px;
  height: 1px;
  background: var(--terra-pale);
  margin: 24px 0;
}

.preis-includes {
  font-size: 0.82rem;
  color: var(--stone);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.preis-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.preis-list li {
  font-size: 0.92rem;
  color: var(--mid);
  padding-left: 22px;
  position: relative;
}

.preis-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--terra);
  font-size: 0.8rem;
  font-weight: 700;
}

.preis-note-sm {
  font-size: 0.82rem;
  color: var(--stone);
  margin-bottom: 24px;
  line-height: 1.7;
  flex: 1;
}

.preis-card .btn-primary,
.preis-card .btn-outline {
  width: 100%;
  min-width: 0;
}

.preise-note {
  margin-top: 36px;
  font-size: 0.9rem;
  color: var(--stone);
  max-width: 640px;
  line-height: 1.85;
}

.mobile-slider-controls { display: none; }

/* ── FAQ ── */
.faq { background: var(--white); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  margin-top: 56px;
}

.faq-item { border-bottom: 1px solid rgba(186, 88, 38, 0.12); }

.faq-q {
  width: 100%;
  background: none;
  border: 0;
  padding: 32px 0;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  font-family: var(--sans);
}

.faq-icon {
  color: var(--terra);
  font-size: 1.3rem;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s;
}

.faq-a {
  font-size: 0.92rem;
  color: var(--stone);
  line-height: 1.85;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.faq-a p { margin-bottom: 12px; }
.faq-a p:last-child { margin-bottom: 0; }

.faq-a ul,
.faq-a ol {
  margin: 4px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-a ul { list-style: none; padding-left: 0; }

.faq-a ol {
  list-style: none;
  padding-left: 0;
  counter-reset: faq-step;
}

.faq-a ul li,
.faq-a ol li {
  padding-left: 20px;
  position: relative;
}

.faq-a ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 2px;
  background: var(--terra);
}

.faq-a ol li { counter-increment: faq-step; }

.faq-a ol li::before {
  content: counter(faq-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--terra);
}

.faq-a ol li { padding-left: 32px; }

.faq-item.open .faq-a {
  max-height: 720px;
  padding-bottom: 28px;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-more { display: none; }

.faq-more-btn {
  display: inline-flex;
  align-items: center;
  background: none;
  border: 0;
  padding: 20px 0 0;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--terra);
  cursor: pointer;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.faq-more-btn:hover { color: var(--terra-light); }

.faq-more-btn:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 4px;
}

/* ── KONTAKT ── */
.kontakt { background: var(--cream); padding-bottom: 48px; }

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.kontakt-form { display: flex; flex-direction: column; gap: 16px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field { display: flex; flex-direction: column; gap: 6px; }

.form-field label {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--white);
  border: 1px solid rgba(186, 88, 38, 0.2);
  padding: 14px 16px;
  font-size: 0.95rem;
  color: var(--dark);
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
  border-radius: 0;
  appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--terra); }

.form-field textarea { resize: vertical; min-height: 120px; }

.form-consent {
  font-size: 0.72rem;
  color: var(--stone);
  line-height: 1.7;
}

.form-consent a { color: var(--terra); }

.kontakt-form .btn-primary {
  width: 100%;
  border: 2px solid var(--terra);
  font-size: 0.85rem;
  padding: 18px;
}

.form-success {
  display: none;
  color: var(--terra);
  margin-top: 16px;
  font-size: 0.88rem;
}

.kontakt-info h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 28px 0 20px;
}

.kontakt-detail {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 2.1;
}

.kontakt-detail strong { font-weight: 600; color: var(--dark); }

.kontakt-detail a {
  color: var(--mid);
  text-decoration: none;
}

.kontakt-detail a:hover { color: var(--terra); }

.map-frame {
  width: 100%;
  min-height: 280px;
  border: 1px solid rgba(186, 88, 38, 0.18);
  overflow: hidden;
  background: var(--gold-pale);
}

.map-placeholder {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  text-align: center;
}

.map-placeholder p {
  max-width: 320px;
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.7;
}

.map-frame iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(0.98);
}

.kontakt-map iframe {
  height: 360px;
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 400;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.82);
  padding: 22px var(--page-pad);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.18);
}

.cookie-banner-inner {
  width: var(--wrap);
  max-width: var(--max);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cookie-banner-title {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 8px;
}

.cookie-banner-text {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 720px;
}

.cookie-banner-text a { color: var(--gold-light); }

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner-actions .btn-primary,
.cookie-banner-actions .btn-outline {
  min-width: 0;
  padding: 12px 20px;
  font-size: 0.72rem;
}

.cookie-banner-actions .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.cookie-banner-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

body.has-cookie-banner footer { padding-bottom: 28px; }

.kontakt-cta {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kontakt-cta .btn-primary,
.kontakt-cta .btn-outline {
  width: 100%;
  min-width: 0;
}

.kontakt-map {
  margin-top: 40px;
  min-height: 360px;
}

.kontakt-map .map-placeholder,
.kontakt-map iframe {
  min-height: 360px;
  height: 360px;
}

.kontakt-note {
  font-size: 0.78rem;
  color: var(--stone);
  margin-top: 24px;
  line-height: 1.7;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.45);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--terra);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}

.footer-desc { font-size: 0.85rem; line-height: 1.85; }

.footer-instagram {
  margin-top: 16px;
}

.footer-instagram a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-instagram a:hover { color: var(--terra); }

.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--terra); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.75rem;
}

.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255, 255, 255, 0.35); text-decoration: none; }
.footer-legal a:hover { color: var(--terra); }

/* ── LEGAL PAGES ── */
.page-hero {
  padding: calc(var(--nav-h) + 72px) 0 48px;
  background: var(--cream);
}

.legal-body {
  background: var(--white);
  padding: 72px 0 112px;
}

.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin: 36px 0 12px;
}

.legal-content h3 {
  font-size: 1.05rem;
  margin: 24px 0 8px;
  color: var(--dark);
}

.legal-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 18px 0 8px;
  color: var(--dark);
}

.legal-content p,
.legal-content li {
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 12px;
}

.legal-content ul { padding-left: 20px; list-style: disc; }

.legal-content a { color: var(--terra); }

.legal-caps {
  font-size: 0.82rem !important;
  letter-spacing: 0.01em;
  line-height: 1.75 !important;
}

.legal-source {
  margin-top: 48px;
  font-size: 0.82rem !important;
  color: var(--stone) !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .nav-links { gap: 16px; }
  .nav-links a:not(.btn-nav) {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
  }
  .btn-nav {
    padding: 10px 14px;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
  }
  .nav-logo img { height: 42px; max-width: min(180px, 42vw); }
}

@media (max-width: 1024px) {
  :root { --gutter: 24px; --nav-h: 80px; --edge: 24px; }

  .nav-logo img { height: 40px; max-width: min(180px, 52vw); }

  .nav-toggle { display: block; }

  .wrap,
  .nav-inner,
  .cookie-banner-inner {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-inline: var(--gutter);
    box-sizing: border-box;
    min-width: 0;
  }

  .hero,
  .about-split,
  .prp-split,
  .haar-split {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-inline: var(--gutter);
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: start;
    align-content: start;
    min-height: 0;
    min-width: 0;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 12px var(--page-pad) 28px;
    gap: 0;
    border-bottom: 1px solid rgba(186, 88, 38, 0.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  }

  .nav-links.is-open { display: flex; }

  .nav-links li { border-bottom: 1px solid rgba(186, 88, 38, 0.1); }
  .nav-links a:not(.btn-nav) {
    display: block;
    padding: 16px 0;
    font-size: 0.9rem;
  }
  .nav-links .btn-nav {
    margin: 16px 0 8px;
    width: 100%;
  }

  .hero {
    padding-top: calc(var(--nav-h) + 20px);
    padding-bottom: 20px;
  }
  .hero-text {
    padding: 0 0 20px;
    order: 1;
    justify-content: flex-start;
  }
  .hero-text-inner { max-width: none; }
  .hero-eyebrow,
  .section-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
  }
  .hero-headline {
    font-size: clamp(2.2rem, 8vw, 2.85rem);
    line-height: 1.12;
    margin-bottom: 16px;
    text-wrap: balance;
  }
  .hero-sub {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 22px;
  }
  .section-title {
    font-size: clamp(1.5rem, 3.6vw, 1.95rem);
    line-height: 1.22;
    margin-bottom: 10px;
    max-width: none;
    text-wrap: balance;
  }
  .section-lead {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: none;
  }
  .prose,
  .haar-text p {
    font-size: 0.92rem;
    line-height: 1.7;
  }
  .section { padding: 40px 0; }
  .divider { margin: 12px 0 20px; width: 36px; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 20rem;
    width: 100%;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline,
  .btn-primary,
  .btn-outline {
    width: 100%;
    min-width: 0;
    min-height: 0;
    height: auto;
    flex: 0 0 auto;
    white-space: normal;
    padding: 13px 16px;
    letter-spacing: 0.06em;
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .hero-photo,
  .about-photo,
  .prp-photo,
  .haar-photo {
    width: 100%;
    max-width: none;
    order: 2;
  }

  .hero-photo,
  .media-frame {
    position: static;
    min-height: 0;
  }

  .hero-photo img,
  .media-frame img {
    position: static;
    width: 100%;
    height: auto;
    object-fit: unset;
  }

  .about-content { order: 1; padding: 36px 0 24px; }
  .prp-content { order: 1; padding: 36px 0 24px; }
  .haar-text { order: 1; padding: 36px 0 24px; }

  .about-values { gap: 16px; margin-top: 28px; }
  .value-num { font-size: 1.35rem; margin-bottom: 4px; }
  .value-name { font-size: 0.78rem; letter-spacing: 0.04em; }
  .value-text { font-size: 0.85rem; line-height: 1.55; }

  .prp-steps { margin-top: 28px; gap: 18px; }
  .prp-step { grid-template-columns: 36px 1fr; gap: 12px; }
  .step-num { font-size: 1.5rem; }
  .step-title { font-size: 0.88rem; }
  .step-text { font-size: 0.85rem; line-height: 1.55; }

  .ablauf-num { font-size: 2rem; margin-bottom: 10px; }
  .ablauf-step { padding: 28px 22px; }
  .ablauf-title { font-size: 0.92rem; }
  .ablauf-text { font-size: 0.85rem; line-height: 1.6; }
  .ablauf-steps { margin-top: 28px; }

  .indik-compact { margin-top: 28px; }
  .indik-compact li { padding: 20px 18px; }
  .indik-compact strong { font-size: 0.88rem; }
  .indik-compact span { font-size: 0.85rem; line-height: 1.55; }

  .preis-name { font-size: 1.45rem; }
  .preis-amount { font-size: 2.2rem; }
  .preis-card { padding: 32px 24px; }

  .timeline-week { font-size: 1.35rem; }
  .timeline-label { font-size: 0.72rem; letter-spacing: 0.08em; }
  .timeline-desc { font-size: 0.85rem; line-height: 1.6; }

  .kontakt-info h3 { font-size: 1.4rem; margin: 8px 0 16px; }
  .kontakt-detail { font-size: 0.9rem; line-height: 1.8; }
  .footer-logo { font-size: 1.05rem; letter-spacing: 0.14em; }

  .kontakt-grid,
  .realistic-grid,
  .faq-grid { grid-template-columns: 1fr; }

  .kontakt-grid,
  .realistic-grid { gap: 40px; }

  .faq-grid { gap: 0; margin-top: 32px; }
  .faq-grid.is-collapsed .faq-item:nth-child(n+7) { display: none; }
  .faq-more { display: block; }
  .faq-q { padding: 16px 0; font-size: 0.92rem; }
  .faq-item.open .faq-a { padding-bottom: 16px; }

  .trust-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: stretch;
    align-items: stretch;
    gap: 0;
    padding: 0;
  }
  .trust-item {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0;
    min-height: 76px;
    padding: 16px 12px;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    line-height: 1.35;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .trust-item:nth-child(2n) { border-right: none; }
  .trust-item:nth-child(n + 3) { border-bottom: none; }
  .trust-dot { display: none; }

  .indik-compact { grid-template-columns: 1fr 1fr; }

  .hero-headline,
  .section-title,
  .hero-sub,
  .prose,
  .section-lead {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .about-content,
  .prp-content,
  .haar-text {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .about-values {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
    width: 100%;
  }
  .value-card {
    min-width: 0;
    padding-top: 16px;
  }
  .value-name,
  .value-text {
    overflow-wrap: break-word;
  }

  .js-mobile-slider {
    margin-top: 28px;
    margin-inline: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }
  .js-mobile-slider [data-slider-track] {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    padding: 4px 0 8px;
    margin-top: 0;
    align-items: stretch;
    border: 0;
  }
  .js-mobile-slider [data-slider-track]::-webkit-scrollbar { display: none; }
  .js-mobile-slider [data-slider-track]::before { display: none; }
  .js-mobile-slider [data-slider-track] > * {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    box-sizing: border-box;
  }
  .js-mobile-slider .value-card {
    background: var(--white);
    padding: 22px 20px 20px;
    border-top: 3px solid var(--terra);
  }
  .js-mobile-slider .value-name,
  .js-mobile-slider .value-text,
  .js-mobile-slider .ablauf-text,
  .js-mobile-slider .timeline-desc,
  .js-mobile-slider .preis-note-sm {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  .js-mobile-slider .ablauf-step {
    border: 1px solid rgba(176, 132, 86, 0.18);
    border-right: 1px solid rgba(176, 132, 86, 0.18);
    padding: 28px 22px;
  }
  .js-mobile-slider .ablauf-step:last-child { border-right: 1px solid rgba(176, 132, 86, 0.18); }
  .js-mobile-slider .ablauf-step::after { display: none; }
  .js-mobile-slider .timeline-item {
    display: block;
    text-align: left;
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.05);
  }
  .js-mobile-slider .timeline-dot { margin: 0 0 16px; }
  .preis-card:hover {
    transform: none;
    box-shadow: none;
  }
  .preis-badge { left: 24px; }
  .mobile-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 18px;
  }
  .mobile-slider-nav {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(186, 88, 38, 0.28);
    background: var(--white);
    color: var(--terra);
    cursor: pointer;
    font-size: 1.35rem;
    line-height: 1;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-slider-nav:hover { background: var(--terra-pale); }
  .mobile-slider-dots {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .mobile-slider-dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 99px;
    padding: 0;
    background: rgba(186, 88, 38, 0.28);
    cursor: pointer;
    transition: width 0.2s, background 0.2s;
  }
  .mobile-slider-dot.is-active {
    width: 22px;
    background: var(--terra);
  }
  .js-mobile-slider.is-on-dark .mobile-slider-nav {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.28);
    color: var(--white);
  }
  .js-mobile-slider.is-on-dark .mobile-slider-nav:hover {
    background: rgba(255, 255, 255, 0.08);
  }
  .js-mobile-slider.is-on-dark .mobile-slider-dot {
    background: rgba(255, 255, 255, 0.28);
  }
  .js-mobile-slider.is-on-dark .mobile-slider-dot.is-active {
    background: var(--terra);
  }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cookie-banner-actions { flex-wrap: wrap; }
  .cookie-banner-actions .btn-primary,
  .cookie-banner-actions .btn-outline { flex: 1; }
}

@media (max-width: 1024px) and (max-height: 800px) and (orientation: landscape) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    align-items: stretch;
    min-height: 100dvh;
    padding-top: var(--nav-h);
    padding-bottom: 0;
    padding-inline: var(--gutter) 0;
  }
  .hero-text {
    order: 0;
    padding: 16px 28px 16px 0;
    justify-content: center;
  }
  .hero-headline {
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    margin-bottom: 12px;
  }
  .hero-sub { margin-bottom: 20px; font-size: 0.9rem; }
  .hero-eyebrow { margin-bottom: 12px; }
  .hero-photo {
    order: 0;
    position: relative;
    min-height: calc(100dvh - var(--nav-h));
  }
  .hero-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-actions { max-width: 18rem; }
}

@media (max-width: 640px) {
  :root { --gutter: 18px; --nav-h: 64px; --edge: 18px; }

  .nav-logo img {
    height: 30px;
    max-width: min(132px, 42vw);
  }

  .hero-headline br,
  .section-title br,
  .hero-sub br {
    display: none;
  }

  .hero {
    padding-top: calc(var(--nav-h) + 16px);
    padding-bottom: 16px;
  }
  .hero-text { padding: 0 0 16px; }
  .hero-headline {
    font-size: clamp(2.2rem, 9vw, 2.6rem);
    line-height: 1.12;
    margin-bottom: 14px;
  }
  .hero-sub {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 18px;
  }
  .hero-actions { max-width: none; }
  .section-title { font-size: 1.5rem; }
  .section { padding: 32px 0; }
  .about-content,
  .prp-content,
  .haar-text { padding: 28px 0 20px; }

  .trust-item {
    min-height: 72px;
    padding: 14px 10px;
    font-size: 0.7rem;
    letter-spacing: 0.03em;
  }

  .indik-compact,
  .form-row,
  .about-values { grid-template-columns: 1fr; }

  .about-values { gap: 18px; }
  .value-card { padding-top: 16px; }

  .js-mobile-slider .ablauf-step { padding: 22px 18px; }
  .ablauf-num { font-size: 1.7rem; }

  .ergebnisse .section-lead { margin-bottom: 22px; }
  .js-mobile-slider .timeline-item { padding: 22px 18px; }
  .js-mobile-slider .timeline-week { font-size: 1.2rem; }
  .ergebnisse-cta { margin-top: 24px; }
  .ergebnisse-cta .btn-primary {
    width: 100%;
    padding: 13px 16px;
    letter-spacing: 0.06em;
    font-size: 0.7rem;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  footer { padding: 36px 0 28px; }

  .preis-card { padding: 28px 20px; }
  .preis-name { font-size: 1.3rem; }
  .preis-amount { font-size: 2rem; }
  .indik-compact li { padding: 18px 16px; }

  .real-note { padding: 18px 16px; font-size: 0.85rem; }
  .realistic-grid { gap: 28px; margin-top: 28px; }
  .faq-grid { margin-top: 20px; }
  .faq-q { font-size: 0.88rem; padding: 14px 0; }
  .kontakt { padding-bottom: 32px; }
  .kontakt-map { margin-top: 28px; }
  .page-hero { padding: calc(var(--nav-h) + 36px) 0 28px; }
  .legal-body { padding: 32px 0 64px; }
  .legal-content h2 { font-size: 1.3rem; margin: 24px 0 8px; }

  .form-field input,
  .form-field select,
  .form-field textarea { font-size: 16px; }

  .btn-primary,
  .btn-outline {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 3px;
}
