/* ==========================================================================
   Occto — Public Site (Phase D: Apple-Editorial)
   1:1-Übernahme der "Occto Landing.html" Pattern-Library.
   Kein Tailwind. Kein React-UI-Hook. Tokens aus tokens.css.
   ========================================================================== */

@import url("./tokens.css");
@import url("./reset.css");

/* Schriften: Fraunces (Serif) + Inter (Web-Fallback im Apple-Stack) */
@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500&family=Inter:wght@350;400;450;500;600&display=swap");

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.011em;
}

::selection { background: var(--bordeaux); color: var(--bg); }

a { color: inherit; text-decoration: none; }

/* ---------------------------------- Layout -------------------------------- */

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.narrow {
  max-width: 820px;
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .hair { border-width: 0.5px !important; }
}

/* ───────── Sticky Pill-Nav ───────── */

.nav-shell {
  position: sticky;
  top: 0;
  z-index: 60;
  padding-top: 14px;
  pointer-events: none;
}

header.nav {
  pointer-events: auto;
  margin: 0 auto;
  max-width: 1080px;
  margin-left: var(--pad);
  margin-right: var(--pad);
  /* Anti-AI-Regel: kein Glassmorphism. Solide off-white-Variante ohne
     Backdrop-Blur, leichte Transluzenz nur als Übergangshilfe beim Scroll. */
  background: rgba(250, 250, 247, 0.96);
  border: 1px solid var(--rule);
  border-radius: var(--radius-pill);
}

@media (min-width: 1180px) {
  header.nav { margin-left: auto; margin-right: auto; }
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 50px;
  padding: 0 18px 0 22px;
}

.logo {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 21px;
  letter-spacing: -0.025em;
  font-style: italic;
  line-height: 1;
}

.logo .dot { color: var(--bordeaux); }

nav.menu {
  display: flex;
  gap: 28px;
  justify-content: center;
  font-size: 13px;
  color: var(--ink-70);
  font-weight: 450;
  letter-spacing: -0.005em;
}

nav.menu a { padding: 6px 0; transition: color .15s ease; }
nav.menu a:hover { color: var(--ink); }

.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.nav-meta {
  font-size: 12px;
  color: var(--ink-55);
  letter-spacing: -0.005em;
}

@media (max-width: 720px) {
  nav.menu { display: none; }
  .nav-meta { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
}

/* ───────── Buttons (Apple-Pill) ───────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}

.btn .arrow {
  display: inline-block;
  transition: transform .2s ease;
  font-size: 13px;
}

.btn:hover .arrow { transform: translateX(3px); }

.btn-primary {
  background: var(--bordeaux);
  color: #FAFAF7;
}
.btn-primary:hover { background: var(--bordeaux-ink); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-strong);
}
.btn-outline:hover { border-color: var(--ink); background: rgba(10, 10, 10, 0.03); }

.btn-ink {
  background: var(--ink);
  color: var(--bg);
}
.btn-ink:hover { background: #1f1f1f; }

.btn-link {
  background: transparent;
  padding: 6px 0;
  color: var(--bordeaux);
  font-weight: 500;
  border-radius: 0;
}
.btn-link:hover { color: var(--bordeaux-ink); }

.btn-sm { padding: 8px 16px; font-size: 13px; }

/* Backwards-compatibility-Aliase: alte Phase-1-Klassennamen.
   .btn--primary / .btn--ghost werden visuell identisch zu .btn .btn-primary
   / .btn .btn-outline behandelt. */
.btn--primary,
a.btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  background: var(--bordeaux);
  color: #FAFAF7;
  transition: background .2s ease, border-color .2s ease;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.btn--primary:hover { background: var(--bordeaux-ink); }

.btn--ghost,
a.btn--ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--rule-strong);
  background: transparent;
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: rgba(10, 10, 10, 0.03);
}

/* ───────── Eyebrow ───────── */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--bordeaux);
  letter-spacing: -0.005em;
}

.eyebrow .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
}

.eyebrow .tick {
  width: 5px;
  height: 5px;
  background: var(--bordeaux);
  border-radius: 50%;
}

/* ───────── Hero ───────── */

.hero {
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(60px, 8vw, 100px);
  text-align: center;
}

.hero .eyebrow {
  justify-content: center;
  margin-bottom: 28px;
}

h1.hero-h {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0 auto;
  max-width: 14ch;
  text-wrap: balance;
}

h1.hero-h em {
  font-style: italic;
  font-weight: 400;
  color: var(--bordeaux);
}

.hero-sub {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--ink-70);
  max-width: 52ch;
  margin: clamp(28px, 3vw, 40px) auto 0;
  font-weight: 400;
  letter-spacing: -0.012em;
  text-wrap: pretty;
}

.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* Hero "Product-Shelf" — kleine Kennzahl-Karte unter dem Hero */
.hero-shelf {
  margin: clamp(64px, 8vw, 104px) auto 0;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  padding: clamp(24px, 3vw, 36px) clamp(24px, 3vw, 40px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 980px;
}

@media (min-width: 760px) {
  .hero-shelf { grid-template-columns: repeat(4, 1fr); }
}

.shelf-item {
  display: grid;
  gap: 6px;
  border-left: 1px solid var(--rule);
  padding-left: 16px;
}

.shelf-item:first-child {
  border-left: 0;
  padding-left: 0;
}

@media (max-width: 759px) {
  .shelf-item {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--rule);
    padding-top: 14px;
  }
  .shelf-item:first-child {
    border-top: 0;
    padding-top: 0;
  }
}

.shelf-num {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 30px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.shelf-num em { color: var(--bordeaux); font-style: italic; }

.shelf-num-unit {
  font-size: 18px;
  color: var(--ink-55);
  font-style: normal;
  margin-left: 0.15em;
}

.shelf-label {
  font-size: 12.5px;
  color: var(--ink-55);
  letter-spacing: -0.005em;
}

/* ───────── Module-Shells (Tile-Pattern) ───────── */

section.module {
  padding-top: clamp(72px, 9vw, 128px);
  padding-bottom: clamp(72px, 9vw, 128px);
}

.module-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: clamp(20px, 2.4vw, 32px);
  padding: clamp(40px, 6vw, 88px) clamp(28px, 5vw, 80px);
  text-align: center;
}

.module-card.alt {
  background: var(--bg-alt);
  border-color: rgba(10, 10, 10, 0.06);
}

.module-card.dark {
  background: #0A0A0A;
  color: #FAFAF7;
  border-color: #0A0A0A;
}

.module-card.dark .sub-h { color: rgba(250, 250, 247, 0.7); }
.module-card.dark .eyebrow { color: var(--bordeaux-light); }
.module-card.dark .eyebrow .tick { background: var(--bordeaux-light); }
.module-card.dark .btn-outline {
  color: #FAFAF7;
  border-color: rgba(250, 250, 247, 0.3);
}
.module-card.dark .btn-outline:hover {
  border-color: #FAFAF7;
  background: rgba(255, 255, 255, 0.05);
}

h2.module-h {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 18px auto 0;
  text-wrap: balance;
  max-width: 18ch;
}

h2.module-h em {
  font-style: italic;
  color: var(--bordeaux);
  font-weight: 400;
}

.module-card.dark h2.module-h em { color: var(--bordeaux-light); }

.sub-h {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.5;
  color: var(--ink-70);
  margin: 18px auto 0;
  max-width: 56ch;
  text-wrap: pretty;
  font-weight: 400;
  letter-spacing: -0.011em;
}

/* ───────── Pillars (Apple-Feature-Trio) ───────── */

.pillar-grid {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 880px) {
  .pillar-grid { grid-template-columns: repeat(3, 1fr); }
}

.pillar {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: clamp(16px, 1.6vw, 22px);
  padding: clamp(28px, 3vw, 40px);
  text-align: left;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 18px;
  transition: border-color .2s ease, transform .2s ease;
}

.pillar:hover { border-color: var(--rule-strong); }

.pillar-num {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  color: var(--bordeaux);
  font-size: 38px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.pillar h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  margin: 0;
}

.pillar p {
  color: var(--ink-70);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  letter-spacing: -0.005em;
}

.pillar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
  font-size: 13.5px;
}

.pillar ul li {
  border-top: 1px solid var(--rule);
  padding: 10px 0;
  color: var(--ink-70);
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.pillar ul li::before {
  content: "+";
  color: var(--bordeaux);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
}

/* ───────── About (Split Portrait + Copy) ───────── */

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: clamp(20px, 2.4vw, 32px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 880px) {
  .about-card { grid-template-columns: 1fr 1.05fr; }
}

.photo-frame {
  aspect-ratio: 4 / 5;
  width: 100%;
  background:
    repeating-linear-gradient(135deg,
      rgba(10, 10, 10, 0.05) 0 1px,
      transparent 1px 14px),
    #EFEDE6;
  position: relative;
  overflow: hidden;
}

@media (min-width: 880px) {
  .photo-frame {
    aspect-ratio: auto;
    min-height: 100%;
  }
}

.photo-frame::after {
  content: "founder portrait — Wesley & Giuliano  /  4:5  /  natural light";
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--ink-55);
  background: var(--bg);
  padding: 6px 10px;
  border: 1px solid var(--rule);
  border-radius: 6px;
}

.photo-frame::before {
  content: "Frankfurt";
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--bordeaux);
  font-size: 13px;
  background: var(--bg);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--rule);
}

.about-copy {
  padding: clamp(36px, 5vw, 72px) clamp(28px, 4vw, 56px);
  display: grid;
  align-content: center;
  gap: 22px;
}

.about-copy h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  margin: 0;
  text-wrap: balance;
}

.about-copy h2 em {
  font-style: italic;
  color: var(--bordeaux);
  font-weight: 400;
}

.about-copy p {
  color: var(--ink-70);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0;
  letter-spacing: -0.005em;
}

.signoff {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 18px;
  margin-top: 6px;
  font-size: 13.5px;
  border-top: 1px solid var(--rule);
  padding-top: 18px;
}

.signoff dt {
  font-family: var(--serif);
  font-style: italic;
  color: var(--bordeaux);
  font-weight: 400;
}

.signoff dd { margin: 0; color: var(--ink-70); }

/* ───────── Steps (numerierte Liste) ───────── */

.steps {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  gap: 14px;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: clamp(16px, 1.6vw, 22px);
  padding: clamp(24px, 3vw, 36px) clamp(24px, 3vw, 40px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px 32px;
  align-items: baseline;
  text-align: left;
  transition: border-color .2s ease;
}

.step:hover { border-color: var(--rule-strong); }

@media (min-width: 880px) {
  .step {
    grid-template-columns: 80px 1.1fr 1.4fr 0.7fr;
    gap: 40px;
  }
}

.step-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--bordeaux);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.step h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

.step p {
  color: var(--ink-70);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  max-width: 50ch;
  letter-spacing: -0.005em;
}

.step .dur {
  font-size: 12.5px;
  color: var(--ink-55);
  letter-spacing: -0.005em;
  text-align: left;
}

@media (min-width: 880px) {
  .step .dur { text-align: right; }
}

.step .dur strong {
  color: var(--ink);
  font-weight: 500;
  display: block;
}

/* ───────── Final CTA ───────── */

.final {
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(72px, 9vw, 120px);
}

.final-card {
  background: #0A0A0A;
  color: #FAFAF7;
  border-radius: clamp(20px, 2.4vw, 32px);
  padding: clamp(56px, 8vw, 120px) clamp(28px, 5vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-card .eyebrow {
  color: var(--bordeaux-light);
  justify-content: center;
  margin-bottom: 24px;
}

.final-card .eyebrow .tick { background: var(--bordeaux-light); }

h2.final-h {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 auto;
  max-width: 14ch;
  text-wrap: balance;
}

h2.final-h em {
  font-style: italic;
  color: var(--bordeaux-light);
  font-weight: 400;
}

.final-sub {
  color: rgba(250, 250, 247, 0.7);
  font-size: 17px;
  line-height: 1.55;
  max-width: 52ch;
  margin: 24px auto 0;
  letter-spacing: -0.011em;
}

.final-cta-row {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.final-card .btn-primary { background: #FAFAF7; color: #0A0A0A; }
.final-card .btn-primary:hover { background: #fff; }

.final-card .btn-outline {
  color: #FAFAF7;
  border-color: rgba(250, 250, 247, 0.3);
}
.final-card .btn-outline:hover {
  border-color: #FAFAF7;
  background: rgba(255, 255, 255, 0.05);
}

/* ───────── Forms (Pill-Style) ───────── */

.form-grid {
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: 560px;
  text-align: left;
}

.form-grid label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-70);
  letter-spacing: -0.005em;
}

.form-grid input,
.form-grid textarea {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink);
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 12px 16px;
  transition: border-color .15s ease;
  width: 100%;
}

.form-grid input:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: var(--bordeaux);
}

.form-grid textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.form-error {
  color: var(--color-error);
  font-size: 13px;
}

.form-hint {
  color: var(--ink-55);
  font-size: 12.5px;
}

/* ───────── Footer ───────── */

footer {
  padding-top: 36px;
  padding-bottom: 36px;
  font-size: 12.5px;
  color: var(--ink-55);
  border-top: 1px solid var(--rule);
  letter-spacing: -0.005em;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

@media (min-width: 720px) {
  .foot-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
  }
}

.foot h5 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-35);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

.foot ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.foot ul a {
  color: var(--ink-70);
  transition: color .15s ease;
}

.foot ul a:hover { color: var(--bordeaux); }

.foot-brand .logo { font-size: 24px; }

.foot-brand p {
  margin: 14px 0 0;
  color: var(--ink-70);
  font-size: 12.5px;
  line-height: 1.55;
  max-width: 32ch;
}

.foot-bottom {
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--ink-35);
}

.foot-bottom .legal {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.foot-bottom .legal a:hover { color: var(--ink); }

/* ───────── Cookie-Banner ───────── */

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  z-index: 70;
  box-shadow: 0 8px 32px rgba(10, 10, 10, 0.08);
}

.cookie-banner[hidden] { display: none; }

.cookie-banner__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  margin: 0 0 6px;
  letter-spacing: -0.015em;
}

.cookie-banner__text {
  margin: 0 0 14px;
  font-size: 13.5px;
  color: var(--ink-70);
  line-height: 1.5;
}

.cookie-banner__row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ───────── Backwards-Compatibility (Phase-1-Klassen) ───────── */

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section {
  padding-top: clamp(72px, 9vw, 128px);
  padding-bottom: clamp(72px, 9vw, 128px);
}

.section__heading {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 56px);
}

.section__heading h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.028em;
  margin: 8px 0 0;
}

.section__body {
  display: grid;
  gap: 16px;
  max-width: 60ch;
  margin: 0 auto;
  color: var(--ink-70);
  font-size: 16px;
  line-height: 1.6;
}

.hero__inner {
  display: grid;
  gap: 24px;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0;
  text-wrap: balance;
}

.hero__lede {
  color: var(--ink-70);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  max-width: 52ch;
  letter-spacing: -0.012em;
}

.hero__meta {
  font-size: 12.5px;
  color: var(--ink-55);
  margin-top: 16px;
}

.leistung {
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--rule);
  padding-top: 22px;
  margin-top: 22px;
}

.leistung__meta {
  font-family: var(--serif);
  font-style: italic;
  color: var(--bordeaux);
  font-size: 13.5px;
}

.leistung__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.02em;
  margin: 0;
}

.leistung__desc {
  color: var(--ink-70);
  font-size: 15.5px;
  line-height: 1.55;
  margin: 6px 0 0;
}

/* Legal-/Doc-Pages (Impressum, Datenschutz) */
.doc {
  color: var(--ink-70);
  font-size: 15.5px;
  line-height: 1.65;
}

.doc h2 {
  color: var(--ink);
  letter-spacing: -0.02em;
}

.doc p {
  margin: 8px 0;
}

.doc ul {
  list-style: none;
  padding: 0;
  margin: 8px 0;
  display: grid;
  gap: 6px;
}

.doc ul li {
  padding-left: 14px;
  position: relative;
}

.doc ul li::before {
  content: "·";
  color: var(--bordeaux);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 600;
}

/* ───────── Newsletter-Strip (Phase 3-Alt) ───────── */

.newsletter-strip {
  padding: clamp(48px, 6vw, 88px) 0;
  background: var(--bg);
  border-top: 1px solid var(--rule);
}

.newsletter-card {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
  text-align: left;
}

.newsletter-intro {
  display: grid;
  gap: 10px;
}

.newsletter-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}

.newsletter-h em {
  font-style: italic;
  color: var(--bordeaux);
}

.newsletter-sub {
  color: var(--ink-70);
  font-size: 15px;
  max-width: 60ch;
}

.newsletter-form {
  display: grid;
  gap: 12px;
  max-width: 520px;
}

.newsletter-form input[type="email"],
.newsletter-form input[type="text"] {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink);
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 12px 16px;
  transition: border-color .15s ease;
  width: 100%;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--bordeaux);
}

.newsletter-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12.5px;
  color: var(--ink-55);
  line-height: 1.5;
}

.newsletter-consent input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}

.newsletter-consent a {
  color: var(--bordeaux);
}

.newsletter-form button[type="submit"] {
  justify-self: start;
  margin-top: 4px;
}

/* Honeypot — vor Bots ausblenden, vor Screenreadern auch. */
.hp-field {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
