/* ==========================================================================
   bindungsklar — Der Bindungskompass
   Verkaufsseite. Design: Nachtblau / warmes Papier / Messing.
   ========================================================================== */

:root {
  /* Grundfarben */
  --night: #0f1622;
  --night-2: #17202f;
  --night-3: #202b3c;
  --paper: #f0ece4;
  --paper-2: #e5dfd3;
  --paper-3: #d8d1c2;

  /* Text */
  --ink: #171c25;
  --ink-2: #3f4753;
  --ink-3: #6b7280;
  --on-night: #edeae3;
  --on-night-2: #a8b1c0;
  --on-night-3: #74809350;

  /* Akzent */
  --brass: #c79a5a;
  --brass-deep: #9a7237;
  --brass-soft: #efe2cc;

  /* Linien & Schatten */
  --line: #d5cec0;
  --line-night: #2b364a;
  --shadow-sm:
    0 1px 2px rgba(15, 22, 34, 0.06), 0 4px 12px -8px rgba(15, 22, 34, 0.28);
  --shadow-md:
    0 2px 4px rgba(15, 22, 34, 0.05), 0 14px 34px -20px rgba(15, 22, 34, 0.45);
  --shadow-lg: 0 30px 70px -40px rgba(15, 22, 34, 0.75);

  /* Typo-Skala */
  --t-hero: clamp(2.35rem, 6.2vw, 4.35rem);
  --t-h2: clamp(1.75rem, 3.7vw, 2.7rem);
  --t-h3: clamp(1.15rem, 1.9vw, 1.4rem);
  --t-lead: clamp(1.05rem, 1.75vw, 1.28rem);
  --t-body: 1.0625rem;
  --t-small: 0.9375rem;
  --t-label: 0.75rem;

  /* Raster */
  --wrap: 1140px;
  --gut: clamp(20px, 5vw, 40px);
  --sec: clamp(64px, 9vw, 118px);
  --r: 14px;
  --r-sm: 10px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Archivo",
    "Segoe UI",
    system-ui,
    -apple-system,
    Helvetica,
    Arial,
    sans-serif;
  font-size: var(--t-body);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
button {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 6px;
}

/* --------------------------------------------------------------- Typografie */
h1,
h2,
h3 {
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.012em;
  text-wrap: balance;
  margin: 0;
}
h1 {
  font-size: var(--t-hero);
  line-height: 1.03;
}
h2 {
  font-size: var(--t-h2);
  line-height: 1.1;
}
h3 {
  font-size: var(--t-h3);
  line-height: 1.25;
  letter-spacing: -0.005em;
}

.em {
  font-style: italic;
  color: var(--brass);
}
.em-dark {
  font-style: italic;
  color: var(--brass-deep);
}

p {
  margin: 0 0 1em;
  max-width: 64ch;
}
.lead {
  font-size: var(--t-lead);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
}
.on-night .lead {
  color: var(--on-night-2);
}

.label {
  font-size: var(--t-label);
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brass-deep);
  display: block;
  margin-bottom: 16px;
}
.on-night .label {
  color: var(--brass);
}

.small {
  font-size: var(--t-small);
  color: var(--ink-3);
}
.on-night .small {
  color: var(--on-night-2);
}

/* --------------------------------------------------------------- Layout */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.narrow {
  max-width: 760px;
}

section {
  padding-block: var(--sec);
  position: relative;
}

.on-night {
  background: var(--night);
  color: var(--on-night);
}
.on-night h1,
.on-night h2,
.on-night h3 {
  color: var(--on-night);
}
.on-paper-2 {
  background: var(--paper-2);
}

.sec-head {
  max-width: 660px;
  margin-bottom: clamp(32px, 4.5vw, 52px);
}
.sec-head p {
  margin-bottom: 0;
}
.center {
  text-align: center;
  margin-inline: auto;
}
.center p {
  margin-inline: auto;
}

.hairline {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}
.on-night .hairline {
  background: var(--line-night);
}

/* --------------------------------------------------------------- Buttons */
.btn {
  --btn-bg: var(--brass);
  --btn-fg: #1a1206;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease;
  box-shadow:
    0 1px 2px rgba(15, 22, 34, 0.14),
    0 10px 24px -14px rgba(154, 114, 55, 0.9);
  text-align: center;
}
.btn:hover,
.btn:focus-visible {
  background: #d6a967;
  transform: translateY(-2px);
  box-shadow:
    0 2px 4px rgba(15, 22, 34, 0.16),
    0 16px 30px -14px rgba(154, 114, 55, 0.95);
}
.btn:active {
  transform: translateY(0);
}

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--on-night);
  border-color: var(--line-night);
  box-shadow: none;
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(199, 154, 90, 0.1);
  border-color: var(--brass);
  box-shadow: none;
}
.btn-ghost-dark {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}
.btn-ghost-dark:hover,
.btn-ghost-dark:focus-visible {
  background: var(--paper-2);
  border-color: var(--ink-3);
  box-shadow: none;
}
.btn-lg {
  padding: 19px 36px;
  font-size: 1.06rem;
}
.btn-sm {
  padding: 11px 20px;
  font-size: 0.92rem;
}
.btn .arrow {
  transition: transform 0.18s ease;
}
.btn:hover .arrow {
  transform: translateX(3px);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cta-note {
  font-size: var(--t-small);
  color: var(--ink-3);
  margin: 14px 0 0;
}
.on-night .cta-note {
  color: var(--on-night-2);
}

/* --------------------------------------------------------------- Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(15, 22, 34, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-night);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 66px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--on-night);
  text-decoration: none;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.28rem;
  letter-spacing: 0.01em;
}
.brand svg {
  flex: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--on-night-2);
  text-decoration: none;
  font-size: 0.925rem;
  letter-spacing: 0.01em;
  transition: color 0.16s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--brass);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-price {
  font-size: 0.9rem;
  color: var(--on-night-2);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--line-night);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--on-night);
  position: relative;
  transition: background 0.2s ease;
}
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--on-night);
  transition:
    transform 0.24s ease,
    top 0.24s ease;
}
.burger span::before {
  top: -6px;
}
.burger span::after {
  top: 6px;
}
.nav.open .burger span {
  background: transparent;
}
.nav.open .burger span::before {
  top: 0;
  transform: rotate(45deg);
}
.nav.open .burger span::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
}

@media (max-width: 900px) {
  .nav-links,
  .nav-price {
    display: none;
  }
  .burger {
    display: flex;
  }
  .mobile-menu {
    display: block;
    max-height: 0;
    overflow: hidden;
    border-top: 0 solid var(--line-night);
    transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav.open .mobile-menu {
    max-height: 420px;
    border-top-width: 1px;
  }
  .mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 12px 0 22px;
  }
  .mobile-menu li {
    border-bottom: 1px solid var(--line-night);
  }
  .mobile-menu li:last-child {
    border-bottom: 0;
    padding-top: 16px;
  }
  .mobile-menu a:not(.btn) {
    display: block;
    padding: 13px 0;
    color: var(--on-night);
    text-decoration: none;
    font-size: 1.02rem;
  }
  .mobile-menu .btn {
    width: 100%;
  }
}
@media (max-width: 520px) {
  .nav-cta .btn {
    padding: 11px 16px;
    font-size: 0.87rem;
  }
}

/* --------------------------------------------------------------- Hero */
.hero {
  background:
    radial-gradient(
      120% 90% at 82% 8%,
      rgba(199, 154, 90, 0.16) 0%,
      rgba(199, 154, 90, 0) 58%
    ),
    radial-gradient(
      90% 70% at 6% 96%,
      rgba(93, 116, 160, 0.16) 0%,
      rgba(93, 116, 160, 0) 60%
    ),
    var(--night);
  padding-block: clamp(52px, 7vw, 92px) clamp(60px, 8vw, 104px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.hero h1 {
  margin-bottom: 22px;
}
.hero .lead {
  max-width: 50ch;
  margin-bottom: 30px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 11px;
  border: 1px solid var(--line-night);
  border-radius: 999px;
  font-size: 0.79rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--on-night-2);
  margin-bottom: 26px;
  background: rgba(255, 255, 255, 0.02);
}
.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass);
  flex: none;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line-night);
  list-style: none;
  padding-inline: 0;
}
.trust-row li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--on-night-2);
}
.trust-row svg {
  flex: none;
  color: var(--brass);
}

/* --------------------------------------------------------------- Mockup */
.mockup {
  position: relative;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.mockup::before {
  content: "";
  position: absolute;
  inset: 8% 4% 4%;
  background: radial-gradient(
    closest-side,
    rgba(199, 154, 90, 0.18),
    rgba(199, 154, 90, 0) 72%
  );
  z-index: -1;
}
.mock-page,
.mock-cover {
  position: absolute;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
}
.mock-page {
  width: 60%;
  aspect-ratio: 1/1.414;
  background: var(--paper);
  right: 4%;
  top: 8%;
  transform: rotate(5.5deg);
  padding: 8% 8% 6%;
  color: var(--ink);
  font-size: clamp(0.56rem, 1.05vw, 0.72rem);
  line-height: 1.5;
  border: 1px solid var(--paper-3);
}
.mock-page .mp-label {
  font-size: 0.86em;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 600;
}
.mock-page .mp-title {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2em;
  line-height: 1.15;
  margin: 0.5em 0 0.9em;
}
.mock-page .mp-rule {
  height: 1px;
  background: var(--line);
  margin: 0.9em 0;
}
.mock-page .mp-line {
  height: 0.42em;
  background: var(--paper-2);
  border-radius: 2px;
  margin-bottom: 0.55em;
}
.mock-page .mp-line.w80 {
  width: 80%;
}
.mock-page .mp-line.w62 {
  width: 62%;
}
.mock-page .mp-line.w90 {
  width: 90%;
}
.mock-page .mp-field {
  height: 1px;
  background: var(--paper-3);
  margin: 1.15em 0;
}

.mock-cover {
  width: 63%;
  aspect-ratio: 1/1.414;
  left: 2%;
  bottom: 5%;
  transform: rotate(-6deg);
  background: linear-gradient(
    158deg,
    var(--night-3) 0%,
    var(--night-2) 46%,
    #131b27 100%
  );
  border: 1px solid rgba(199, 154, 90, 0.35);
  padding: 11% 10%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--on-night);
}
.mock-cover .mc-top {
  font-size: clamp(0.56rem, 1vw, 0.7rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}
.mock-cover .mc-title {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1.35rem, 3.3vw, 2.15rem);
  line-height: 1.06;
}
.mock-cover .mc-sub {
  font-size: clamp(0.58rem, 1.05vw, 0.74rem);
  color: var(--on-night-2);
  letter-spacing: 0.03em;
}
.mock-cover .mc-mark {
  align-self: flex-start;
}

.mock-badge {
  position: absolute;
  right: 0;
  bottom: 2%;
  background: var(--paper);
  color: var(--ink);
  border-radius: 999px;
  padding: 9px 17px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--paper-3);
  z-index: 3;
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .mockup {
    max-width: 420px;
    margin-inline: auto;
    width: 100%;
  }
}

/* --------------------------------------------------------------- Zitat-Liste (Problem) */
.thoughts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.thoughts li {
  padding: 22px 0 22px 30px;
  border-top: 1px solid var(--line);
  position: relative;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1.18rem, 2.3vw, 1.62rem);
  line-height: 1.35;
  color: var(--ink);
}
.thoughts li:last-child {
  border-bottom: 1px solid var(--line);
}
.thoughts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(22px + 0.62em);
  width: 14px;
  height: 1px;
  background: var(--brass-deep);
}
.after-thoughts {
  margin-top: 34px;
  font-size: var(--t-lead);
  color: var(--ink-2);
  max-width: 58ch;
}
.after-thoughts strong {
  color: var(--ink);
  font-weight: 600;
}

/* --------------------------------------------------------------- Karten */
.cards {
  display: grid;
  gap: 18px;
}
.cards-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.cards-3 {
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
}
.cards-4 {
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
}

.card {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--paper-3);
}

.on-night .card {
  background: var(--night-2);
  border-color: var(--line-night);
  box-shadow: none;
}
.on-night .card:hover {
  border-color: rgba(199, 154, 90, 0.4);
  box-shadow: 0 20px 44px -30px #000;
}
.on-night .card p {
  color: var(--on-night-2);
}

.card .ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--brass-soft);
  color: var(--brass-deep);
  margin-bottom: 16px;
}
.on-night .card .ico {
  background: rgba(199, 154, 90, 0.14);
  color: var(--brass);
}
.card h3 {
  margin-bottom: 10px;
}
.card p {
  font-size: var(--t-small);
  color: var(--ink-2);
}

/* Wochen-Karten */
.week {
  position: relative;
}
.week .wk {
  font-size: var(--t-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}
.week h3 {
  margin-bottom: 10px;
}
.week .days {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line-night);
  font-size: 0.82rem;
  color: var(--on-night-2);
  letter-spacing: 0.03em;
}

/* --------------------------------------------------------------- Vorher / Nachher */
.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(16px, 3vw, 34px);
  align-items: stretch;
}
.compare .col {
  border-radius: var(--r);
  padding: 28px 26px;
  border: 1px solid var(--line-night);
}
.compare .col.before {
  background: rgba(255, 255, 255, 0.025);
}
.compare .col.after {
  background: linear-gradient(
    170deg,
    rgba(199, 154, 90, 0.14),
    rgba(199, 154, 90, 0.04)
  );
  border-color: rgba(199, 154, 90, 0.42);
}
.compare .col h3 {
  font-size: 1.12rem;
  margin-bottom: 18px;
}
.compare .col .tag {
  font-size: var(--t-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}
.compare .before .tag {
  color: var(--on-night-2);
}
.compare .after .tag {
  color: var(--brass);
}
.compare ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.compare li {
  font-size: var(--t-small);
  color: var(--on-night-2);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.compare li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.compare .after li {
  color: var(--on-night);
}
.compare .arrow-col {
  display: grid;
  place-items: center;
  color: var(--brass);
}
@media (max-width: 820px) {
  .compare {
    grid-template-columns: 1fr;
  }
  .compare .arrow-col {
    transform: rotate(90deg);
    padding: 4px 0;
  }
}

/* --------------------------------------------------------------- Nutzen-Liste */
.benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}
.benefits li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
}
.benefits li:first-child {
  border-top: 1px solid var(--line);
}
.benefits .n {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.5rem;
  color: var(--brass-deep);
  line-height: 1;
  padding-top: 0.12em;
  min-width: 1.6ch;
}
.benefits p {
  margin: 0;
  font-size: 1.03rem;
  color: var(--ink-2);
}
.benefits strong {
  color: var(--ink);
  font-weight: 600;
}

/* --------------------------------------------------------------- Ablauf */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  counter-reset: s;
}
.step {
  counter-increment: s;
  padding-top: 26px;
  border-top: 2px solid var(--brass);
}
.step::before {
  content: counter(s, decimal-leading-zero);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.5rem;
  color: var(--brass-deep);
  display: block;
  margin-bottom: 10px;
}
.step h3 {
  font-size: 1.14rem;
  margin-bottom: 8px;
}
.step p {
  font-size: var(--t-small);
  color: var(--ink-2);
  margin: 0;
}

/* --------------------------------------------------------------- Inhalt-Liste */
.contents {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.contents .row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: baseline;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}
.contents .row:last-child {
  border-bottom: 0;
}
.contents .row .t {
  font-weight: 600;
}
.contents .row .d {
  font-size: var(--t-small);
  color: var(--ink-3);
  margin: 2px 0 0;
  max-width: none;
}
.contents .row .meta {
  font-size: 0.82rem;
  color: var(--ink-3);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.contents .row.bonus {
  background: var(--brass-soft);
}
.contents .row.bonus .meta {
  color: var(--brass-deep);
  font-weight: 600;
}
@media (max-width: 520px) {
  .contents .row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* --------------------------------------------------------------- Abgrenzung */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 3vw, 34px);
}
.plate {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px 28px;
  background: #fffdf8;
}
.plate.quiet {
  background: transparent;
  border-style: dashed;
}
.plate h3 {
  margin-bottom: 12px;
}
.plate p:last-child {
  margin-bottom: 0;
}
.plate .mini-label {
  font-size: var(--t-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  display: block;
  margin-bottom: 14px;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}
.checklist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  font-size: var(--t-small);
  color: var(--ink-2);
}
.checklist svg {
  margin-top: 0.28em;
  flex: none;
  color: var(--brass-deep);
}
.checklist.no svg {
  color: var(--ink-3);
}

/* --------------------------------------------------------------- Angebot */
.offer {
  background: var(--night-2);
  border: 1px solid rgba(199, 154, 90, 0.34);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 46px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
  box-shadow: 0 40px 90px -60px #000;
}
.offer h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 18px;
}
.stack {
  list-style: none;
  margin: 0 0 4px;
  padding: 0;
  display: grid;
  gap: 0;
}
.stack li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-night);
  font-size: var(--t-small);
  color: var(--on-night);
}
.stack li:first-child {
  border-top: 1px solid var(--line-night);
}
.stack svg {
  color: var(--brass);
  flex: none;
}
.stack .tagline {
  color: var(--on-night-2);
  font-size: 0.82rem;
  text-align: right;
}
@media (max-width: 560px) {
  .stack li {
    grid-template-columns: auto 1fr;
  }
  .stack .tagline {
    grid-column: 2;
    text-align: left;
    margin-top: -6px;
  }
}

.price-box {
  text-align: center;
}
.price-strike {
  font-size: 0.95rem;
  color: var(--on-night-2);
}
.price {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(3.4rem, 8vw, 4.6rem);
  line-height: 1;
  color: var(--on-night);
  display: block;
  margin: 6px 0 4px;
}
.price sup {
  font-size: 0.4em;
  top: -0.75em;
  margin-left: 0.1em;
}
.price-note {
  font-size: 0.88rem;
  color: var(--on-night-2);
  margin-bottom: 22px;
}
.price-box .btn {
  width: 100%;
}
.price-fine {
  font-size: 0.79rem;
  color: var(--on-night-2);
  margin: 14px 0 0;
  line-height: 1.5;
}
@media (max-width: 860px) {
  .offer {
    grid-template-columns: 1fr;
  }
}

/* Ankerpreis-Zeile */
.anchor {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  justify-content: center;
  margin-top: 26px;
  font-size: var(--t-small);
  color: var(--on-night-2);
}
.anchor b {
  color: var(--on-night);
  font-weight: 600;
}

/* --------------------------------------------------------------- FAQ */
.faq {
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  position: relative;
  font-size: 1.06rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.16s ease;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:hover {
  color: var(--brass-deep);
}
.faq summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 1.5px solid var(--brass-deep);
  border-bottom: 1.5px solid var(--brass-deep);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.24s ease;
}
.faq details[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}
.faq .answer {
  padding: 0 40px 24px 0;
}
.faq .answer p {
  margin: 0;
  color: var(--ink-2);
  font-size: var(--t-small);
  max-width: 62ch;
}
.faq details[open] .answer {
  animation: fadeIn 0.26s ease both;
}
@media (prefers-reduced-motion: reduce) {
  .faq details[open] .answer {
    animation: none;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------- Abschluss */
.final {
  text-align: center;
}
.final h2 {
  margin-bottom: 20px;
}
.final .lead {
  margin-inline: auto;
  margin-bottom: 32px;
}
.final .cta-group {
  justify-content: center;
}

/* --------------------------------------------------------------- Footer */
.footer {
  background: var(--night);
  color: var(--on-night-2);
  padding-block: 52px 40px;
  border-top: 1px solid var(--line-night);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line-night);
}
.footer h4 {
  font-size: var(--t-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-night);
  margin: 0 0 14px;
  font-weight: 600;
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}
.footer a {
  color: var(--on-night-2);
  text-decoration: none;
  font-size: var(--t-small);
  transition: color 0.16s ease;
}
.footer a:hover,
.footer a:focus-visible {
  color: var(--brass);
}
.footer p {
  font-size: var(--t-small);
  max-width: 44ch;
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-size: 0.82rem;
}
@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* --------------------------------------------------------------- Sticky Mobile CTA */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  background: rgba(15, 22, 34, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-night);
  padding: 11px var(--gut) calc(11px + env(safe-area-inset-bottom));
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transform: translateY(110%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sticky-cta.show {
  transform: translateY(0);
}
.sticky-cta .info {
  line-height: 1.25;
}
.sticky-cta .t {
  font-size: 0.9rem;
  color: var(--on-night);
  font-weight: 600;
  display: block;
}
.sticky-cta .s {
  font-size: 0.76rem;
  color: var(--on-night-2);
}
@media (max-width: 760px) {
  .sticky-cta {
    display: flex;
  }
  /* Platz, damit die Leiste den Footer nicht verdeckt */
  .footer {
    padding-bottom: calc(40px + 74px + env(safe-area-inset-bottom));
  }
}

/* --------------------------------------------------------------- Reveal */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
}
.js .reveal.in {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.6s cubic-bezier(0.22, 0.8, 0.3, 1),
    transform 0.6s cubic-bezier(0.22, 0.8, 0.3, 1);
}
.js .reveal.d1.in {
  transition-delay: 0.07s;
}
.js .reveal.d2.in {
  transition-delay: 0.14s;
}
.js .reveal.d3.in {
  transition-delay: 0.21s;
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   Ergänzungen: Tagesplan, Seitenvorschau, Satzproben, Bedenken, Ausschluss
   ========================================================================== */

/* --------------------------------------------------------------- Tagesplan */
.plan {
  border-top: 1px solid var(--line-night);
  margin-top: 34px;
}
.plan details {
  border-bottom: 1px solid var(--line-night);
}
.plan summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 44px 20px 0;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: baseline;
  transition: color 0.16s ease;
}
.plan summary::-webkit-details-marker {
  display: none;
}
.plan summary:hover {
  color: var(--brass);
}
.plan summary .wk {
  font-size: var(--t-label);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  white-space: nowrap;
}
.plan summary .ti {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.32rem;
}
.plan summary .rg {
  font-size: 0.82rem;
  color: var(--on-night-2);
  white-space: nowrap;
}
.plan summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid var(--brass);
  border-bottom: 1.5px solid var(--brass);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.24s ease;
}
.plan details[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}
.plan .days-list {
  list-style: none;
  margin: 0;
  padding: 0 40px 24px 0;
  display: grid;
  gap: 9px;
}
.plan .days-list li {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 14px;
  font-size: var(--t-small);
  color: var(--on-night-2);
  align-items: baseline;
}
.plan .days-list .d {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}
@media (max-width: 620px) {
  .plan summary {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .plan .days-list li {
    grid-template-columns: 1fr;
    gap: 1px;
    padding-bottom: 6px;
  }
}

/* --------------------------------------------------------------- Seitenvorschau */
.preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4.5vw, 60px);
  align-items: center;
}
@media (max-width: 880px) {
  .preview-grid {
    grid-template-columns: 1fr;
  }
}
.sheet {
  background: #fffdf8;
  border: 1px solid var(--paper-3);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  padding: clamp(26px, 4vw, 40px);
  max-width: 460px;
  width: 100%;
  margin-inline: auto;
  transform: rotate(-1.1deg);
}
.sheet .sh-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  margin-bottom: 18px;
}
.sheet h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.sheet p {
  font-size: 0.92rem;
  color: var(--ink-2);
  margin-bottom: 0.9em;
}
.sheet .sh-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 600;
  margin: 22px 0 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.sheet .sh-field {
  height: 1px;
  background: var(--paper-3);
  margin: 26px 0;
}
.sheet .sh-foot {
  font-size: 0.72rem;
  color: var(--ink-3);
  margin: 20px 0 0;
}

/* --------------------------------------------------------------- Satzproben */
.quotes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.quotes li {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-left: 3px solid var(--brass);
  border-radius: 0 10px 10px 0;
  padding: 20px 22px;
}
.on-night .quotes li {
  background: var(--night-2);
  border-color: var(--line-night);
  border-left-color: var(--brass);
}
.quotes .q {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.4;
  display: block;
  margin-bottom: 9px;
}
.quotes .w {
  font-size: 0.85rem;
  color: var(--ink-3);
  display: block;
}
.on-night .quotes .w {
  color: var(--on-night-2);
}

/* --------------------------------------------------------------- Bedenken */
.concerns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.concern {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.concern:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--paper-3);
}
.concern .q {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.24rem;
  line-height: 1.3;
  display: block;
  margin-bottom: 12px;
  padding-left: 26px;
  position: relative;
  color: var(--ink);
}
.concern .q::before {
  content: "„";
  position: absolute;
  left: 0;
  top: -0.08em;
  font-size: 1.9em;
  line-height: 1;
  color: var(--brass);
}
.concern p {
  font-size: var(--t-small);
  color: var(--ink-2);
  margin: 0 0 0.75em;
}
.concern p:last-child {
  margin-bottom: 0;
}
.concern strong {
  color: var(--ink);
  font-weight: 600;
}

/* --------------------------------------------------------------- Ausschluss */
.nots {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px 26px;
}
.nots li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: start;
  font-size: var(--t-small);
  color: var(--on-night-2);
  padding: 14px 0;
  border-top: 1px solid var(--line-night);
}
.nots svg {
  margin-top: 0.3em;
  flex: none;
  color: var(--brass);
}
.nots b {
  color: var(--on-night);
  display: block;
  font-weight: 600;
  font-size: 0.97rem;
  margin-bottom: 2px;
}
