/* ===========================================================================
   Boutique Funnel — offer landing (2026-07)
   Baut auf site.css (Komponenten-Kanon) + magnet-shared.css (m-dark, m-chapter).
   Werte-Kanon: docs/design.md + docs/landing-standard.md.
   =========================================================================== */

* { margin: 0; padding: 0; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.014em;
  color: var(--bone);
}
h1 { font-size: clamp(3rem, 5.6vw, 5.8rem); line-height: 1; }
h2 { font-size: clamp(2.2rem, 3.8vw, 3.9rem); line-height: 1.04; }
h3 { font-size: clamp(1.35rem, 1.9vw, 1.9rem); line-height: 1.14; }
@media (max-width: 760px) {
  h1 { font-size: clamp(2.4rem, 11.5vw, 3.8rem); hyphens: auto; -webkit-hyphens: auto; }
}
.section--light h1, .section--light h2, .section--light h3 { color: var(--ink-soft); }

.kicker {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 20px;
}

/* ===== Hero ===== */
.magnet-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(600px, 90vh, 940px);
  display: flex;
  align-items: flex-end;
  padding: clamp(120px, 14vw, 180px) 0 clamp(64px, 8vh, 110px);
  background: var(--builderz-green);
}
.magnet-hero__media {
  position: absolute;
  inset: 0;
  background-image: url("../images/bibliothek/konferenztisch-wald-1600.webp");
  background-size: cover;
  background-position: 64% 38%;
  opacity: 0.5;
  filter: saturate(0.72) contrast(1.02);
}
.magnet-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(94deg, rgba(9, 22, 16, 0.95) 0%, rgba(9, 22, 16, 0.74) 40%, rgba(9, 22, 16, 0.28) 100%),
    linear-gradient(180deg, rgba(6, 15, 11, 0.10) 0%, rgba(6, 15, 11, 0.62) 100%);
}
.magnet-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 96px 96px;
  -webkit-mask-image: linear-gradient(180deg, black, transparent 86%);
  mask-image: linear-gradient(180deg, black, transparent 86%);
  pointer-events: none;
}
.magnet-hero__inner { position: relative; z-index: 1; width: 100%; min-width: 0; }
.magnet-hero__inner h1 { max-width: 20ch; }
.magnet-hero__lead {
  font-size: clamp(1.08rem, 1.35vw, 1.3rem);
  line-height: 1.62;
  color: rgba(244, 240, 232, 0.82);
  max-width: 620px;
  margin-top: clamp(26px, 3.2vw, 40px);
}
.magnet-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 3vw, 34px);
  margin-top: clamp(32px, 4vw, 48px);
}
.magnet-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.6);
  margin-top: clamp(30px, 3.6vw, 46px);
}
.magnet-hero__meta span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.magnet-hero__meta svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: currentColor;
}
.magnet-hero__meta span + span::before {
  content: "";
  position: absolute;
  left: -16px; top: 50%;
  width: 4px; height: 4px;
  transform: translateY(-50%);
  background: var(--bronze);
}
.magnet-hero__microcopy {
  margin-top: clamp(18px, 2.2vw, 26px);
  font-size: 0.95rem;
  color: rgba(244, 240, 232, 0.66);
}
.magnet-hero__microcopy a {
  color: var(--bone);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.magnet-hero__microcopy a:hover { color: var(--accent); }

/* ===== Sections ===== */
.section { padding: clamp(72px, 7.5vw, 116px) 0; }
.section--light {
  background: linear-gradient(180deg, rgba(234, 227, 213, 0.85), rgba(244, 240, 232, 0.96)), var(--bone);
  color: var(--ink-soft);
}

/* ===== Section head ===== */
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: clamp(28px, 3.4vw, 60px);
  align-items: start;
  margin-bottom: clamp(48px, 6vw, 84px);
}
.section-head > div .kicker { margin-top: 6px; margin-bottom: 18px; }
.section-head p:not(.kicker) {
  padding-top: 4px;
  font-size: clamp(1.02rem, 1.2vw, 1.2rem);
  line-height: 1.62;
  color: rgba(26, 26, 26, 0.66);
}
.m-dark .section-head p:not(.kicker) { color: rgba(244, 240, 232, 0.74); }
@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; align-items: start; gap: 22px; }
}

/* ===== Compare (für wen / für wen nicht) — Karlhoff-Prinzip, Builderz-Farben ===== */
.ofx-compare {
  display: grid;
  gap: clamp(20px, 2.6vw, 32px);
}
@media (min-width: 861px) {
  .ofx-compare { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.ofx-compare__panel {
  border: 1px solid var(--builderz-line-light);
  padding: clamp(24px, 3vw, 38px);
}
.ofx-compare__panel--focus {
  border-color: var(--bronze);
  outline: 1px solid color-mix(in srgb, var(--bronze) 35%, transparent);
  outline-offset: 7px;
  background: linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--bronze) 7%, transparent) 100%);
}
.ofx-compare__panel--dim {
  background: color-mix(in srgb, var(--ink-soft) 4%, transparent);
}
.ofx-compare h3 {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: clamp(18px, 2.2vw, 26px);
}
.ofx-compare__panel--dim h3 { color: rgba(23, 23, 20, 0.5); }
.ofx-compare ul { list-style: none; display: grid; }
.ofx-compare li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.7);
  border-top: 1px solid var(--builderz-line-light);
}
.ofx-compare li:first-child { border-top: 0; padding-top: 0; }
.ofx-compare__panel--dim li { color: rgba(26, 26, 26, 0.55); }
.ofx-compare__icon {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 0.24em;
  color: var(--bronze);
}
.ofx-compare__panel--dim .ofx-compare__icon { color: rgba(23, 23, 20, 0.42); }
.ofx-compare a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.ofx-compare a:hover { color: var(--bronze); }

/* ===== CTA-Zeile (nach Fit und nach den Bausteinen) ===== */
.ofx-cta {
  margin-top: clamp(44px, 5.5vw, 72px);
  border-top: 1px solid var(--builderz-line-light);
  padding-top: clamp(28px, 3.4vw, 44px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px clamp(28px, 3.5vw, 52px);
}
.ofx-cta--dark { border-top-color: var(--atelier-line); }
.ofx-cta__proof {
  font-size: clamp(0.98rem, 1.15vw, 1.1rem);
  color: rgba(26, 26, 26, 0.62);
}
.ofx-cta__proof a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.ofx-cta__proof a:hover { color: var(--bronze); }
.ofx-cta__micro {
  flex-basis: 100%;
  font-size: 0.95rem;
  color: rgba(26, 26, 26, 0.58);
}
.ofx-cta__micro a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.ofx-cta__micro a:hover { color: var(--bronze); }
.ofx-cta__note {
  flex-basis: 100%;
  font-size: 0.92rem;
  color: rgba(244, 240, 232, 0.6);
}
@media (max-width: 760px) {
  .ofx-cta .button { width: 100%; justify-content: center; text-align: center; }
}

/* ===== Signature: der gezeichnete Trichter ===== */
.ofx-os {
  max-width: 660px;
  margin: 0 auto clamp(64px, 8vw, 104px);
}
.ofx-os__cap {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  text-align: center;
  margin-bottom: 14px;
}
.ofx-os__cap--out { margin: 14px 0 0; }
.ofx-os__svg { display: block; width: 100%; height: auto; }
.ofx-os__svg path {
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ofx-os__frame,
.ofx-os__in { stroke: rgba(244, 240, 232, 0.8); }
.ofx-os__dash { stroke: rgba(244, 240, 232, 0.34); }
.ofx-os__feed,
.ofx-os__out { stroke: var(--bronze); }
.ofx-os__marker { fill: var(--bronze); }
.ofx-os__stage {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  fill: var(--bone);
  text-anchor: middle;
}
.ofx-os__seat {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  fill: rgba(244, 240, 232, 0.6);
  text-anchor: start;
}

/* ===== Bausteine als gezeichnete Zeilen (rs-piece-Muster, dunkel) ===== */
.ofx-piece {
  position: relative;
  display: grid;
  grid-template-columns: minmax(110px, 0.18fr) minmax(64px, auto) minmax(0, 0.36fr) minmax(260px, 0.4fr);
  gap: clamp(18px, 3vw, 48px);
  align-items: center;
  padding: clamp(26px, 3.2vw, 44px) 0;
}
.ofx-piece__rule {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(168, 131, 85, 0.7), rgba(244, 240, 232, 0.14));
  transform-origin: left center;
}
.ofx-piece__no {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
}
.ofx-piece__fig { display: block; width: clamp(52px, 5vw, 72px); color: rgba(244, 240, 232, 0.85); }
.ofx-piece__fig svg { width: 100%; height: auto; display: block; }
.ofx-piece h3 {
  font-size: clamp(1.5rem, 2.3vw, 2.4rem);
  line-height: 1.06;
  color: var(--bone);
}
.ofx-piece p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(244, 240, 232, 0.7);
  max-width: 48ch;
}
@media (max-width: 900px) {
  .ofx-piece { grid-template-columns: minmax(90px, auto) minmax(52px, auto) 1fr; }
  .ofx-piece p { grid-column: 1 / -1; max-width: none; }
}

/* ===== Ablauf und Rahmen: Timeline + Notizen | Fakten-Karte ===== */
.frame {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  gap: clamp(36px, 5vw, 88px);
  align-items: start;
}
.frame .offer-timeline { margin-top: 0; margin-bottom: clamp(36px, 4.5vw, 60px); }
.frame__notes p {
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.66);
  max-width: 58ch;
  border-top: 1px solid var(--builderz-line-light);
  padding: clamp(18px, 2.2vw, 26px) 0;
}
.frame__notes p:last-child { padding-bottom: 0; }

/* Die drei Rollen des Funnels: geboxte Icons + Bold-Zeile + ein Satz */
.ofx-points {
  list-style: none;
  margin-top: clamp(20px, 2.6vw, 30px);
  display: grid;
  gap: clamp(20px, 2.6vw, 30px);
}
.ofx-points__item {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 2vw, 24px);
}
.ofx-points__icon {
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(26, 26, 26, 0.25);
  color: var(--bronze);
}
.ofx-points__icon svg { width: 1.35rem; height: 1.35rem; display: block; }
.ofx-points__title {
  font-weight: 500;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.ofx-points__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.6);
  max-width: 52ch;
}

.facts {
  position: sticky;
  top: 108px;
  background: #ece5d8;
  border: 1px solid var(--builderz-line-light);
  padding: clamp(26px, 3.2vw, 40px);
}
.facts dl { display: grid; }
.facts dl > div {
  display: grid;
  grid-template-columns: minmax(90px, 0.5fr) 1fr;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid var(--builderz-line-light);
}
.facts dl > div:first-child { border-top: 0; padding-top: 0; }
.facts dt {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(23, 23, 20, 0.55);
  padding-top: 3px;
}
.facts dd {
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.facts__guarantee {
  margin-top: clamp(20px, 2.6vw, 28px);
  border: 1px solid var(--bronze);
  padding: 16px 18px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(23, 23, 20, 0.72);
}
.facts__guarantee span {
  display: block;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 6px;
}
.facts__note {
  margin-top: 16px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(23, 23, 20, 0.6);
}
.facts .button { margin-top: clamp(22px, 2.8vw, 30px); width: 100%; text-align: center; justify-content: center; }
.facts .button--dark {
  background: var(--ink-soft);
  color: var(--bone);
  border-color: var(--ink-soft);
}
@media (max-width: 980px) {
  .frame { grid-template-columns: 1fr; }
  .facts { position: static; }
}

/* ===== Foto-Kapitel: das Prinzip ===== */
.offer-chapter {
  --m-chapter-image: url("../images/bibliothek/empty-boardroom-1600.webp");
  align-items: center;
}
.chapter-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.2vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: -0.014em;
  color: var(--bone);
  max-width: 20ch;
}
.chapter-quote figcaption {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: 28px;
}

/* ===== Stimmen: hell, editorial (magnet-Kanon) ===== */
.offer-page .case-voices {
  background: linear-gradient(180deg, rgba(234, 227, 213, 0.8), rgba(244, 240, 232, 0.96)), var(--bone);
  border-top: 0;
  border-bottom: 0;
  padding: var(--space-section) 0;
}
.offer-page .case-voices__head h2 { color: var(--ink-soft); }
.offer-page .case-voices .kicker { color: #755a36; }
.offer-page .case-voices__grid {
  gap: 0;
  border-top: 1px solid rgba(26, 26, 26, 0.2);
}
.offer-page .voice-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: clamp(30px, 3.4vw, 48px) clamp(22px, 2.6vw, 40px) 0;
}
.offer-page .voice-card:first-child { padding-left: 0; }
.offer-page .voice-card + .voice-card { border-left: 1px solid var(--builderz-line-light); }
.offer-page .voice-card__quote {
  font-size: clamp(1.3rem, 1.8vw, 1.85rem);
  line-height: 1.28;
  color: var(--ink-soft);
}
.offer-page .voice-card__avatar { border-color: var(--builderz-line-light); }
.offer-page .voice-card__name { color: var(--ink-soft); }
.offer-page .voice-card__role { color: rgba(26, 26, 26, 0.5); }
.offer-page .voice-card__metric {
  border-top-color: var(--builderz-line-light);
  color: rgba(26, 26, 26, 0.6);
}
.offer-page .voice-card__metric strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--ink-soft);
}
.offer-page .voice-card__link {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #755a36;
  padding-bottom: 12px;
}
.offer-page .case-voices__all a {
  color: rgba(26, 26, 26, 0.62);
  border-bottom-color: var(--builderz-line-light);
}
.offer-page .case-voices__all a:hover {
  color: var(--ink-soft);
  border-bottom-color: var(--ink-soft);
}

/* ===== Finale ===== */
.offer-finale { padding: clamp(96px, 11vw, 156px) 0; }
.finale { max-width: 720px; }
.finale h2 { color: var(--bone); }
.finale__lead {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.62;
  color: rgba(244, 240, 232, 0.76);
  margin-top: clamp(20px, 2.6vw, 30px);
  max-width: 54ch;
}
.finale__actions { margin-top: clamp(30px, 3.8vw, 44px); }
.finale__note {
  margin-top: 18px;
  font-size: 0.92rem;
  color: rgba(244, 240, 232, 0.6);
}
.finale__microcopy {
  margin-top: clamp(26px, 3.2vw, 36px);
  font-size: 0.95rem;
  color: rgba(244, 240, 232, 0.66);
}
.finale__microcopy a {
  color: var(--bone);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.finale__microcopy a:hover { color: var(--accent); }

.siblings {
  margin-top: clamp(64px, 8vw, 104px);
  border-top: 1px solid var(--atelier-line);
  padding-top: clamp(28px, 3.4vw, 40px);
}
.siblings__head {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.5);
  margin-bottom: clamp(18px, 2.2vw, 26px);
}
.siblings__row {
  display: block;
  padding: clamp(18px, 2.2vw, 26px) 0;
  border-top: 1px solid rgba(244, 240, 232, 0.1);
  text-decoration: none;
}
.siblings__row:first-of-type { border-top: 0; }
.siblings__eyebrow {
  display: block;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 8px;
}
.siblings__title {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
  line-height: 1.22;
  color: rgba(244, 240, 232, 0.88);
  transition: color 300ms ease;
}
.siblings__row:hover .siblings__title { color: var(--accent); }

@media (max-width: 760px) {
  .magnet-hero__actions .button,
  .finale__actions .button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
