/* ============================================================
   Webdesign-Firma Daniel Brot – Design-System v1
   Farbwelt: Onyx / Papier / Turmalin (Edelstein-Bezug Idar-Oberstein)
   Typo: Barlow Condensed (CAPS-Headlines) + Cormorant Italic (Serif)
         + Inter (UI/Fließtext)
   ============================================================ */

/* ---------- Fonts (lokal, DSGVO) ---------- */
@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Cormorant";
  src: url("../fonts/cormorant-italic-300.woff2") format("woff2");
  font-weight: 300; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Cormorant";
  src: url("../fonts/cormorant-italic-500.woff2") format("woff2");
  font-weight: 500; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ---------- Form-System (dokumentierte Regel) ----------
   Interaktive Elemente (Buttons, Dots-Hover) = Pill (999px).
   Inhaltsflaechen (Karten, Steps) = eckig (0).
   Medien-Rahmen (Showcase) = weich (6-10px).
   Diese drei Klassen konsequent, nichts dazwischen. */

/* ---------- Tokens ---------- */
:root {
  --onyx: #0f1317;
  --onyx-2: #151b21;
  --onyx-3: #1c242c;
  --paper: #f6f4ef;
  --paper-2: #efece4;
  --ink: #171b1f;
  --ink-soft: #4c545c;
  --turmalin: #2fa68c;
  --turmalin-deep: #157a63;
  --silber: #9ba3ab;
  --line-dark: #262f37;
  --line-light: #ddd8cd;
  --white: #fdfdfc;
  --focus: #2fa68c;
  --wrap: 1200px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  color-scheme: light;
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-wrap: break-word;
  overflow-x: clip;
}
a, button { -webkit-tap-highlight-color: transparent; }
section[id], main[id] { scroll-margin-top: 88px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--turmalin-deep); color: #fff; padding: .75rem 1.25rem;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }

/* ---------- Headline-Formel ---------- */
.hl {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .015em;
  line-height: .95;
  margin: 0;
  text-wrap: balance;
}
.hl em {
  font-family: "Cormorant", Georgia, serif;
  font-weight: 300;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: .52em;
  position: relative;
  top: -.06em;
  margin-inline: .08em;
}
.hl .dim { color: var(--silber); }
.hl .acc { color: var(--turmalin); }

.kicker {
  font-family: "Inter", sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--turmalin-deep);
  margin: 0 0 1rem;
}
.on-dark .kicker { color: var(--turmalin); }

.serif-lead {
  font-family: "Cormorant", Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  line-height: 1.45;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.solid {
  background: rgba(15, 19, 23, .96);
  box-shadow: 0 1px 0 var(--line-dark);
}
@supports (backdrop-filter: blur(8px)) {
  .site-header.solid { background: rgba(15, 19, 23, .82); backdrop-filter: blur(8px); }
}
.header-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: .9rem;
}
.brand {
  display: flex; flex-direction: column; line-height: 1.05;
  text-decoration: none; color: var(--white);
}
.brand .brand-name {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700; font-size: 1.35rem; letter-spacing: .06em; text-transform: uppercase;
}
.brand .brand-sub {
  font-family: "Cormorant", Georgia, serif; font-style: italic; font-weight: 500;
  font-size: .95rem; color: var(--turmalin);
}
.main-nav { display: flex; align-items: center; gap: 1.75rem; }
.main-nav a {
  position: relative;
  color: #cfd5da; text-decoration: none; font-size: .92rem; font-weight: 600;
  transition: color .2s ease;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--turmalin); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 600; font-size: .95rem; text-decoration: none;
  padding: .78rem 1.5rem; border-radius: 999px; border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
  touch-action: manipulation;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--turmalin); color: #08211b; }
.btn-primary:hover { background: #3cbf9f; }
.btn-ghost { border-color: #48525a; color: #e8ebed; background: transparent; }
.btn-ghost:hover { border-color: #7c878f; color: #fff; }
.btn-dark-solid { background: var(--onyx); color: var(--paper); }
.btn-dark-solid:hover { background: #232c34; }
.btn-outline-dark { border-color: #b8b2a4; color: var(--ink); }
.btn-outline-dark:hover { border-color: var(--ink); }
.btn .ico { width: 1.05em; height: 1.05em; flex: none; }
.header-cta { white-space: nowrap; }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--onyx);
  color: var(--paper);
  padding-top: clamp(6.5rem, 12vh, 9rem);
  padding-bottom: clamp(3rem, 7vh, 5.5rem);
  overflow: hidden;
}
.hero .facets {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .5; pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero h1.hl { font-size: clamp(3rem, 7.2vw, 5.6rem); color: var(--white); }
.hero h1 .acc { color: var(--turmalin); }
.hero-sub {
  font-family: "Cormorant", Georgia, serif; font-style: italic; font-weight: 300;
  font-size: clamp(1.2rem, 2vw, 1.5rem); line-height: 1.5;
  color: #c9cfd4; max-width: 34rem; margin: 1.5rem 0 2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; }

/* Beispiel-Slider */
.showcase { position: relative; }
.showcase-frame {
  position: relative;
  border: 1px solid var(--line-dark);
  background: var(--onyx-2);
  border-radius: 10px;
  padding: .75rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .45);
}
/* Cookie-frei-Banner: gleitet beim Laden von links herein, danach laeuft ein
   weisser Schein zwischen Schwarz und Weiss dauerhaft von links nach rechts.
   (Daniel-Wunsch: Banner auf dem Bild, das den cookielosen Vorteil sofort zeigt.) */
.cookie-banner {
  position: relative; margin-top: 14px; z-index: 1;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .6rem 1rem;
  font-family: "Inter", sans-serif; font-weight: 700; font-size: .85rem; letter-spacing: .01em;
  color: #fff; text-align: center; text-shadow: 0 1px 2px rgba(0, 0, 0, .5);
  background: linear-gradient(90deg, #0b0e11, #1a232b, #0b0e11);
  border: 1px solid rgba(255, 255, 255, .18); border-radius: 8px;
  overflow: hidden; box-shadow: 0 12px 30px rgba(0, 0, 0, .5);
  animation: cookie-in 900ms cubic-bezier(.16, 1, .3, 1) both;
}
.cookie-banner .ico { width: 1.05em; height: 1.05em; color: var(--turmalin); flex: none; }
.cookie-banner::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .72) 50%, transparent 70%);
  transform: translateX(-135%);
  animation: cookie-slide 2.8s linear infinite; animation-delay: 900ms;
}
@keyframes cookie-in { from { transform: translateX(-118%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes cookie-slide { 0% { transform: translateX(-135%); } 100% { transform: translateX(135%); } }

.showcase-track { position: relative; aspect-ratio: 16 / 10.5; overflow: hidden; border-radius: 6px; }
.showcase-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity .7s ease;
}
.showcase-slide.active { opacity: 1; }
.showcase-slide img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.showcase-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .8rem .35rem .25rem;
}
.showcase-caption {
  font-family: "Cormorant", Georgia, serif; font-style: italic; font-weight: 500;
  font-size: 1.05rem; color: #d9dde1; margin: 0;
}
.showcase-dots { display: flex; gap: .1rem; }
/* Grosse, gut treffbare Klick-/Tap-Flaeche (32x40px); der sichtbare Strich
   (3px) liegt zentriert darin. Vorher waren nur 3px hoch treffbar. */
.showcase-dots button {
  position: relative;
  width: 32px; height: 40px; flex: none;
  border: 0; margin: 0; padding: 0; cursor: pointer;
  background: transparent; -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}
.showcase-dots button::before {
  content: ""; position: absolute; left: 3px; right: 3px; top: 50%; transform: translateY(-50%);
  height: 3px; border-radius: 2px; background: #3a444d;
  transition: background-color .3s ease, height .2s ease;
}
.showcase-dots button:hover::before { background: #5a6771; }
.showcase-dots button[aria-current="true"]::before { background: var(--turmalin); height: 4px; }
.showcase-pause {
  border: 1px solid #3a444d; background: transparent; color: var(--silber);
  border-radius: 999px; width: 30px; height: 30px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color .2s ease, color .2s ease; flex: none;
}
.showcase-pause:hover { border-color: #7c878f; color: #fff; }
.showcase-pause .ico { width: .8em; height: .8em; }
.showcase-note {
  font-size: .8rem; color: var(--silber); margin: .9rem .35rem 0;
}

/* ---------- Sektionen allgemein ---------- */
.section { padding-block: clamp(4rem, 9vh, 7rem); position: relative; }
.section-paper { background: var(--paper); color: var(--ink); }
.section-paper-2 { background: var(--paper-2); color: var(--ink); }
.section-dark { background: var(--onyx); color: var(--paper); }
.section-dark-2 { background: var(--onyx-2); color: var(--paper); }
.section-head { margin-bottom: clamp(2.5rem, 5vh, 4rem); }
.section-head .hl { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
.section-paper .section-head .hl, .section-paper-2 .section-head .hl { color: var(--ink); }
.section-dark .section-head .hl, .section-dark-2 .section-head .hl { color: var(--white); }
.rule { border: 0; border-top: 1px solid var(--line-light); margin: 0; }
.section-dark .rule, .section-dark-2 .rule { border-color: var(--line-dark); }

/* ---------- Manifest ---------- */
.manifest-grid {
  display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
}
.giant-word {
  font-family: "Barlow Condensed", sans-serif; font-weight: 700;
  text-transform: uppercase; line-height: .82;
  font-size: clamp(4rem, 9vw, 8.2rem);
  color: var(--onyx);
  letter-spacing: .01em;
  margin: 0;
}
.giant-word span { display: block; }
.giant-word .thin { color: var(--turmalin-deep); }
.manifest-copy p { margin: 0 0 1.4rem; }
.manifest-copy p:last-child { margin-bottom: 0; }
.manifest-points {
  margin-top: 2.25rem; padding-top: 1.75rem; border-top: 1px solid var(--line-light);
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem 2rem;
  font-size: .95rem; color: var(--ink-soft);
}
.manifest-points li { list-style: none; display: flex; gap: .6rem; align-items: baseline; }
.manifest-points ul { margin: 0; padding: 0; }
.manifest-points .tick { color: var(--turmalin-deep); font-weight: 600; }

/* ---------- Leistungen ---------- */
.cards-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.card {
  border: 1px solid var(--line-light);
  background: var(--white);
  padding: 2rem 1.9rem 1.9rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--turmalin); box-shadow: 0 18px 40px rgba(15, 19, 23, .10); }
.card:hover .ico-big { color: var(--turmalin-deep); }
.card .ico-big { width: 44px; height: 44px; color: var(--onyx); }
.card .ico-big .acc-stroke { color: var(--turmalin-deep); }
.card h3 {
  font-family: "Barlow Condensed", sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: .03em;
  font-size: 1.5rem; margin: 0; line-height: 1.1;
}
.card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: .5rem; }
.card li {
  display: flex; gap: .6rem; align-items: baseline;
  font-size: .95rem; color: var(--ink-soft);
}
.card li .arrow { color: var(--turmalin-deep); flex: none; font-family: "Cormorant", serif; font-style: italic; }
.card .card-tag {
  margin-top: auto; padding-top: .9rem; border-top: 1px solid var(--line-light);
  font-size: .85rem; font-weight: 600; color: var(--turmalin-deep);
  font-variant-numeric: tabular-nums;
}

/* ---------- Partner ---------- */
.partner-grid {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(2.5rem, 6vw, 5rem); align-items: start;
}
.partner-copy p {
  font-family: "Cormorant", Georgia, serif; font-style: italic; font-weight: 300;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem); line-height: 1.5;
  color: #d5dade; margin: 0 0 1.5rem;
}
.partner-copy p strong { color: #fff; font-weight: 500; }
.portrait-facet { position: relative; max-width: 420px; margin-left: auto; }
.portrait-facet::before {
  content: ""; position: absolute; inset: -12% -8% 4%; z-index: 0; pointer-events: none;
  background: radial-gradient(58% 48% at 52% 40%, rgba(47, 166, 140, .18), transparent 70%);
}
.portrait-facet svg { position: relative; z-index: 1; width: 100%; height: auto; display: block; }
.portrait-note {
  margin: .9rem 0 0; font-size: .8rem; color: var(--silber); text-align: right;
}
.partner-facts {
  margin: 2rem 0 0; padding: 1.5rem 0 0; border-top: 1px solid var(--line-dark);
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem;
  list-style: none;
}
.partner-facts .num {
  font-family: "Cormorant", Georgia, serif; font-style: italic; font-weight: 500;
  font-size: 2.3rem; color: var(--turmalin); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.partner-facts .lbl { font-size: .85rem; color: var(--silber); margin-top: .35rem; }

/* ---------- Prozess ---------- */
.process-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line-light); background: var(--white);
}
.step {
  padding: 1.9rem 1.6rem 1.4rem;
  border-inline-start: 1px solid var(--line-light);
  display: flex; flex-direction: column; min-height: 260px;
}
.step:first-child { border-inline-start: 0; }
.step h3 {
  font-family: "Barlow Condensed", sans-serif; font-weight: 700;
  text-transform: uppercase; font-size: 1.35rem; letter-spacing: .04em;
  margin: 0 0 1rem; display: flex; align-items: center; gap: .8rem;
}
.step h3 .step-arrow { color: var(--turmalin-deep); font-weight: 400; }
.step ul { margin: 0; padding: 0; list-style: none; display: grid; gap: .45rem; }
.step li { font-size: .92rem; color: var(--ink-soft); }
.step .step-num {
  margin-top: auto; align-self: flex-end;
  font-family: "Cormorant", Georgia, serif; font-style: italic; font-weight: 300;
  font-size: 4.6rem; line-height: 1; color: var(--onyx);
}

/* ---------- Preise ----------
   Asymmetrie bewusst: Hauptprodukt (Website) als grosse Karte,
   Einmal-/Monats-Posten als kompakter Stack daneben. */
.price-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 1.25rem; align-items: stretch; }
.price-side { display: grid; gap: 1.25rem; align-content: stretch; }
.price-card-major {
  border-color: var(--turmalin);
  background: linear-gradient(160deg, #1d2830 0%, var(--onyx-3) 60%);
  padding: 2.6rem 2.4rem;
}
.price-card-major .price-num { font-size: 3.6rem; }
.price-cta { margin-top: auto; align-self: flex-start; }
.price-card {
  border: 1px solid var(--line-dark); background: var(--onyx-3);
  padding: 2.1rem 1.9rem; display: flex; flex-direction: column; gap: .9rem;
  transition: transform .25s ease, border-color .25s ease;
}
.price-card:hover { transform: translateY(-4px); border-color: var(--turmalin); }
.price-card h3 {
  font-family: "Barlow Condensed", sans-serif; font-weight: 700; text-transform: uppercase;
  font-size: 1.4rem; letter-spacing: .04em; margin: 0; color: var(--white);
}
.price-line { display: flex; align-items: baseline; gap: .5rem; }
.price-num {
  font-family: "Barlow Condensed", sans-serif; font-weight: 700;
  font-size: 2.9rem; line-height: 1; color: var(--turmalin);
  font-variant-numeric: tabular-nums;
}
.price-unit { font-family: "Cormorant", serif; font-style: italic; font-weight: 500; color: var(--silber); font-size: 1.1rem; }
.price-card p { margin: 0; font-size: .95rem; color: #b9c0c6; }
.price-card ul { margin: .25rem 0 0; padding: 0; list-style: none; display: grid; gap: .45rem; }
.price-card li { display: flex; gap: .6rem; align-items: baseline; font-size: .92rem; color: #b9c0c6; }
.price-card li .arrow { color: var(--turmalin); flex: none; }
.price-foot { margin: 2rem 0 0; font-size: .9rem; color: var(--silber); }
.price-foot strong { color: #d9dde1; }

/* ---------- FAQ (Akkordeon, nativ <details> – funktioniert auch ohne JS) ---------- */
.faq { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--line-light); }
.faq-item { border-bottom: 1px solid var(--line-light); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
  padding: 1.35rem 0;
  font-family: "Barlow Condensed", sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: .02em; font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.15; color: var(--ink);
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--turmalin-deep); }
.faq-mark { position: relative; width: 18px; height: 18px; flex: none; margin-top: .15rem; }
.faq-mark::before, .faq-mark::after {
  content: ""; position: absolute; background: var(--turmalin-deep);
  transition: transform .25s ease, opacity .25s ease;
}
.faq-mark::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-mark::after { top: 0; left: 8px; width: 2px; height: 18px; }
.faq-item[open] .faq-mark::after { transform: scaleY(0); opacity: 0; }
.faq-body { padding: 0 0 1.5rem; max-width: 64ch; }
.faq-body p { margin: 0; color: var(--ink-soft); }
.faq-item[open] .faq-body { animation: faq-open .32s ease; }
@keyframes faq-open { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ---------- Abschluss-CTA ---------- */
.final-cta { text-align: center; overflow: hidden; position: relative; }
.final-cta .facets { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .4; pointer-events: none; }
.final-cta-inner { position: relative; max-width: 620px; margin-inline: auto; }
.final-cta .with {
  font-family: "Cormorant", serif; font-style: italic; font-weight: 500;
  color: var(--silber); margin: 0 0 1rem;
}
.final-cta .hl { font-size: clamp(2.1rem, 4.5vw, 3.3rem); color: var(--white); }
.final-cta p.copy { color: #c4cacf; margin: 1.4rem auto 2.1rem; max-width: 33rem; }
.final-cta .hero-ctas { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--onyx); color: #aeb6bd; font-size: .92rem; }
.footer-grid {
  display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: 2.5rem; padding-block: 3.5rem 2.5rem;
}
.footer-brand .brand-name {
  font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 1.5rem;
  letter-spacing: .06em; text-transform: uppercase; color: var(--white);
}
.footer-brand .brand-sub { font-family: "Cormorant", serif; font-style: italic; font-weight: 500; color: var(--turmalin); }
.footer-brand p { margin: 1rem 0 0; max-width: 26rem; }
.site-footer h4 {
  font-family: "Barlow Condensed", sans-serif; text-transform: uppercase;
  letter-spacing: .1em; font-size: .95rem; color: var(--white); margin: 0 0 .9rem;
}
.site-footer ul { margin: 0; padding: 0; list-style: none; display: grid; gap: .5rem; }
.site-footer a { color: #aeb6bd; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-block: 1.4rem;
  display: flex; flex-wrap: wrap; gap: .75rem 2rem; justify-content: space-between;
  font-size: .82rem; color: #7d868e;
}

/* ---------- Mobile Kontakt-Leiste ---------- */
.mobile-contact {
  position: fixed; inset: auto 0 0 0; z-index: 60;
  display: none; gap: 1px; background: var(--line-dark);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-contact a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem .5rem; font-size: .92rem; font-weight: 600; text-decoration: none;
  touch-action: manipulation;
}
.mobile-contact .mc-call { background: var(--turmalin); color: #08211b; }
.mobile-contact .mc-wa { background: var(--onyx-2); color: #e8ebed; }
.mobile-contact .ico { width: 1.1em; height: 1.1em; flex: none; }

/* ---------- Reveal (JS setzt .js, sonst alles sichtbar) ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); filter: blur(3px); }
.js .reveal.shown {
  opacity: 1; transform: none; filter: blur(0);
  transition: opacity .55s ease, transform .6s cubic-bezier(.16, 1, .3, 1), filter .5s ease;
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; filter: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .showcase { max-width: 640px; }
  .manifest-grid { grid-template-columns: 1fr; }
  .giant-word { font-size: clamp(3.5rem, 14vw, 6rem); }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step { border-top: 1px solid var(--line-light); }
  .step:nth-child(-n+2) { border-top: 0; }
  .step:nth-child(odd) { border-inline-start: 0; }
  .partner-grid { grid-template-columns: 1fr; }
  .portrait-facet { margin-left: 0; }
  .price-grid { grid-template-columns: 1fr; }
  .price-side { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .mobile-contact { display: flex; }
  body { padding-bottom: 56px; }
  .cards-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .step { border-inline-start: 0; border-top: 1px solid var(--line-light); min-height: 0; }
  .step:first-child { border-top: 0; }
  .step .step-num { font-size: 3.4rem; }
  .manifest-points { grid-template-columns: 1fr; }
  .partner-facts { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; }
  .partner-facts .num { font-size: 1.7rem; }
  .price-card-major { padding: 2rem 1.6rem; }
  .price-card-major .price-num { font-size: 2.9rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .hero { padding-top: 5.5rem; }
}

/* ============================================================
   ANGEBOTSSEITE – Zusatzkomponenten
   (Google-Karte "das Google-Image", Website-Vorschau, Vorteile)
   ============================================================ */

/* ---------- Google-Auftritt-Karte (Nachbildung) ---------- */
.gcard-wrap { position: relative; max-width: 440px; margin-inline: auto; width: 100%; }
.gcard-lead {
  font-family: "Cormorant", Georgia, serif; font-style: italic; font-weight: 500;
  font-size: 1.05rem; color: #c9cfd4; margin: 0 0 .9rem; text-align: left;
}
.gcard {
  position: relative;
  background: #fff; color: #202124;
  border-radius: 14px; padding: 1.35rem 1.4rem 1.25rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .45);
  font-family: "Inter", system-ui, sans-serif;
}
.gcard-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.gc-name { font-size: 1.3rem; font-weight: 600; margin: 0; line-height: 1.15; color: #202124; }
.gc-cat { font-size: .82rem; color: #5f6368; margin: .2rem 0 0; }
.gc-rate { display: flex; align-items: center; flex-wrap: wrap; gap: .35rem; margin: .55rem 0 0; }
.gc-score { font-size: .92rem; font-weight: 600; color: #202124; }
.gc-stars { color: #fbbc04; letter-spacing: .04em; font-size: .95rem; }
.gc-count { font-size: .82rem; color: #1a73e8; }
.gc-map {
  flex: none; width: 104px; height: 84px; border-radius: 10px; overflow: hidden;
  border: 1px solid #e6e6e6;
}
.gc-map svg { width: 100%; height: 100%; display: block; }

/* Aktions-Reihe wie bei Google (Route / Speichern / Anrufen / Website) */
.gc-actions {
  position: relative;
  display: flex; gap: .35rem; margin: 1.15rem 0 2.9rem;
}
.gc-act {
  flex: 1 1 0; min-width: 0;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  font-size: .72rem; color: #1a73e8; text-align: center; line-height: 1.1;
}
.gc-act .gc-ico {
  width: 40px; height: 40px; border-radius: 999px; border: 1px solid #dadce0;
  display: grid; place-items: center; color: #1a73e8; background: #fff;
}
.gc-act .gc-ico svg { width: 18px; height: 18px; }
.gc-act--missing { color: #b0b4b8; }
.gc-act--missing .gc-ico {
  border: 1.5px dashed #ea4335; color: #ea4335; background: #fdf3f2;
}
.gc-callout {
  position: absolute; right: -2px; top: calc(100% + 8px);
  display: inline-flex; align-items: center; gap: .35rem;
  background: #fce8e6; color: #c5221f; border: 1px solid #f3c9c4;
  border-radius: 999px; padding: .32rem .8rem;
  font-size: .74rem; font-weight: 700; white-space: nowrap;
}
.gc-callarrow { width: 22px; height: 22px; color: #c5221f; flex: none; transform: rotate(-8deg); }

.gc-rows { display: grid; gap: .7rem; border-top: 1px solid #ededed; padding-top: 1rem; }
.gc-row { display: flex; align-items: center; gap: .7rem; margin: 0; font-size: .88rem; color: #3c4043; }
.gc-row .gc-ico { flex: none; color: #5f6368; display: grid; place-items: center; }
.gc-row .gc-ico svg { width: 18px; height: 18px; }
.gc-row--missing { color: #c5221f; }
.gc-row--missing .gc-ico { color: #ea4335; }
.gc-missing-label { font-weight: 600; }
.gcard-note {
  font-size: .78rem; color: #9ba3ab; margin: .9rem .1rem 0; line-height: 1.4;
}

/* ---------- Website-Vorschau (Browser + Handy) ---------- */
.preview {
  display: grid; grid-template-columns: minmax(0, 1fr) 240px;
  gap: clamp(1.5rem, 4vw, 3rem); align-items: end;
}
.browser {
  margin: 0; background: #fff; border: 1px solid var(--line-light);
  border-radius: 12px; overflow: hidden; box-shadow: 0 26px 55px rgba(15, 19, 23, .16);
}
.browser-bar {
  display: flex; align-items: center; gap: .7rem;
  padding: .55rem .9rem; background: var(--paper-2); border-bottom: 1px solid var(--line-light);
}
.browser-dots { display: inline-flex; gap: .4rem; flex: none; }
.browser-dots i { width: 11px; height: 11px; border-radius: 999px; background: #cfc9bd; display: block; }
.browser-url {
  flex: 1; text-align: center; max-width: 320px; margin-inline: auto;
  background: #fff; border: 1px solid var(--line-light); border-radius: 999px;
  padding: .28rem .9rem; font-size: .8rem; color: var(--ink-soft);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.browser img { display: block; width: 100%; height: auto; }
.phone { margin: 0; text-align: center; }
.phone-frame {
  max-width: 230px; margin-inline: auto;
  background: #14181c; border: 8px solid #14181c; border-radius: 28px;
  overflow: hidden; box-shadow: 0 22px 45px rgba(15, 19, 23, .28);
}
.phone-frame img { display: block; width: 100%; height: auto; border-radius: 20px; }
.phone figcaption { font-size: .82rem; color: var(--ink-soft); margin-top: .85rem; max-width: 230px; margin-inline: auto; }
.preview-cta { margin-top: 2.2rem; display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.preview-cta .ico { width: 1.05em; height: 1.05em; }
.preview-hint { margin: 0; font-size: .9rem; color: var(--ink-soft); }

/* ---------- Vorteils-Raster ---------- */
.benefits {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 2.5rem;
}
.benefits li { display: flex; gap: .75rem; align-items: baseline; font-size: 1rem; color: var(--ink); }
.benefits .tick {
  flex: none; color: var(--turmalin-deep); font-weight: 700;
  font-family: "Inter", sans-serif;
}

/* ---------- Responsive: Angebotsseite ---------- */
@media (max-width: 1000px) {
  .gcard-wrap { max-width: 440px; margin-top: .5rem; }
  .preview { grid-template-columns: 1fr; justify-items: center; }
  .browser { max-width: 640px; }
  .phone { display: none; }
}
@media (max-width: 760px) {
  .benefits { grid-template-columns: 1fr; }
  .gc-act { font-size: .68rem; }
  .gc-callout { font-size: .68rem; padding: .28rem .65rem; }
  .gc-name { font-size: 1.2rem; }
}

/* Ratenzahlungs-Hinweis in der Website-Preiskarte */
.price-rate {
  margin: .3rem 0 0; padding: .7rem .9rem;
  background: rgba(47, 166, 140, .12); border: 1px solid rgba(47, 166, 140, .38);
  border-radius: 8px; font-size: .9rem; color: #eaf7f2; line-height: 1.45;
}
.price-rate strong { color: #fff; }
.price-rate .rate-tick { color: var(--turmalin); font-weight: 700; margin-right: .4rem; }
