/* Sterblich leben — warmes Hell + Sternenhimmel + Gold als roter Faden */

:root {
  --ink: #2a241f;
  --ink-soft: #5a524a;
  --line: #e5ddd0;
  --bg: #f7f1e8;
  --bg-soft: #efe6d8;
  --bg-paper: #fbf7f1;
  --gold: #b8954a;
  --gold-deep: #8a6f4f;
  --gold-soft: #f3e8d4;
  --gold-shine: #d4b483;
  --gold-bright: #e8c96a;
  --gold-light: #f0d67e;
  --royal: #365b9e;
  --accent: var(--royal);
  --royal-deep: #243f72;
  --royal-soft: #e4ebf6;
  --night: #141c30;
  --night-mid: #243f72;
  --cream: #fbf7f1;
  --maxw: 1280px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Figtree", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 1.35rem;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}

img { max-width: 100%; display: block; }
a { color: var(--royal-deep); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 3.2vw, 3rem);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: var(--gold-bright);
  color: var(--night);
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 1rem;
  outline: 2px solid var(--night);
  outline-offset: 3px;
}

/* ---------- Stardust auf hellen Sektionen ---------- */
.has-stardust {
  position: relative;
  overflow: hidden;
}

.has-stardust::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    radial-gradient(1.2px 1.2px at 12% 18%, rgba(184, 149, 74, 0.55), transparent),
    radial-gradient(1px 1px at 28% 62%, rgba(54, 91, 158, 0.35), transparent),
    radial-gradient(1.4px 1.4px at 48% 28%, rgba(212, 180, 131, 0.5), transparent),
    radial-gradient(1px 1px at 67% 74%, rgba(184, 149, 74, 0.4), transparent),
    radial-gradient(1.2px 1.2px at 84% 22%, rgba(54, 91, 158, 0.3), transparent),
    radial-gradient(1px 1px at 91% 58%, rgba(212, 180, 131, 0.45), transparent),
    radial-gradient(1px 1px at 18% 88%, rgba(184, 149, 74, 0.35), transparent),
    radial-gradient(1.3px 1.3px at 55% 92%, rgba(54, 91, 158, 0.28), transparent);
  z-index: 0;
}

.has-stardust > .wrap { position: relative; z-index: 1; }

.gold-line {
  width: 3.2rem;
  height: 2px;
  margin: 0 0 1.35rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold-deep), transparent);
  box-shadow: 0 0 12px rgba(232, 201, 106, 0.45);
}

/* ---------- Header (Claude-Fassung) ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease,
    backdrop-filter 0.4s ease;
}

.site-header.on-hero {
  background: transparent;
}

.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 6.5rem;
  gap: 1rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  flex-shrink: 0;
}
.brand:hover { text-decoration: none; opacity: 0.92; }

.brand-logo {
  display: block;
  height: clamp(4.15rem, 8.5vw, 5.35rem);
  width: auto;
}

/* Hell: Creme-Header; Dunkel: Hero-Nacht */
.brand-logo--on-light { display: none; }
.brand-logo--on-dark { display: block; }
.brand-logo--on-light:only-child { display: block; }
.site-header.is-scrolled .brand-logo--on-light { display: block; }
.site-header.is-scrolled .brand-logo--on-dark { display: none; }

/* Auf Königsblau: Logo freistellen, kein schwarzes Rechteck */
.site-header.on-hero .brand-logo--on-dark {
  filter:
    drop-shadow(0 1px 0 rgba(251, 247, 241, 0.12))
    drop-shadow(0 8px 18px rgba(10, 14, 28, 0.45));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 237, 225, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover { color: #fff; }

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.55rem;
  cursor: pointer;
  color: #f4ede1;
  transition: color 0.3s ease;
}

.site-header.on-hero .nav-links a { color: rgba(244, 237, 225, 0.9); }
.site-header.on-hero .nav-links a:hover { color: #fff; }
.site-header.on-hero .nav-toggle { color: #f4ede1; }

.site-header.is-scrolled {
  background: rgba(251, 247, 241, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 #e4dcd0, 0 10px 30px -26px rgba(42, 36, 31, 0.4);
}

.site-header.is-scrolled .nav-links a { color: #5a524a; }
.site-header.is-scrolled .nav-links a:hover { color: #2a241f; }
.site-header.is-scrolled .nav-toggle { color: #2a241f; }

.nav-links a.nav-cta {
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  border: 1.5px solid rgba(232, 201, 106, 0.7);
  background: rgba(232, 201, 106, 0.16);
  color: #f8f1e7;
  letter-spacing: 0.1em;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.nav-links a.nav-cta:hover {
  background: rgba(232, 201, 106, 0.3);
  border-color: #e8c96a;
  color: #fff;
  text-decoration: none;
}

.site-header.on-hero .nav-links a.nav-cta {
  color: #f8f1e7;
}

.site-header.is-scrolled .nav-links a.nav-cta {
  background: linear-gradient(135deg, #e8c96a, #8a6f4f);
  border-color: transparent;
  color: #141c30;
  box-shadow: 0 10px 22px -16px rgba(138, 111, 79, 0.7);
}

.site-header.is-scrolled .nav-links a.nav-cta:hover {
  color: #141c30;
  filter: brightness(1.05);
}

.nav-user {
  position: relative;
  margin-left: 0.15rem;
  flex-shrink: 0;
}

.nav-avatar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 999px;
  line-height: 0;
}

.nav-avatar-btn:focus-visible {
  outline: 2px solid #365b9e;
  outline-offset: 3px;
}

.nav-avatar {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  object-fit: cover;
  display: block;
  border: 2.5px solid transparent;
  box-shadow: 0 8px 18px -14px rgba(42, 36, 31, 0.55);
  background:
    linear-gradient(#e8e0d4, #e8e0d4) padding-box,
    linear-gradient(135deg, #243f72 0%, #365b9e 48%, #e8c96a 100%) border-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.nav-avatar--placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Figtree, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #141c30;
  background:
    linear-gradient(135deg, #e8c96a, #8a6f4f) padding-box,
    linear-gradient(135deg, #243f72 0%, #365b9e 48%, #e8c96a 100%) border-box;
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.nav-user-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  min-width: 12.5rem;
  padding: 0.45rem;
  border-radius: 0.85rem;
  background: rgba(251, 247, 241, 0.98);
  border: 1px solid #e4dcd0;
  box-shadow: 0 18px 36px -24px rgba(42, 36, 31, 0.55);
  z-index: 50;
}

.nav-user-label {
  margin: 0.2rem 0.55rem 0.35rem;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #365b9e;
}

.nav-user-menu a {
  display: block;
  width: auto;
  padding: 0.55rem 0.7rem;
  border-radius: 0.55rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
  color: #2a241f;
  text-decoration: none;
}

.site-header .nav-user-menu a,
.site-header.on-hero .nav-user-menu a,
.site-header.is-scrolled .nav-user-menu a {
  color: #2a241f;
  text-transform: none;
  letter-spacing: 0.06em;
}

.nav-user-menu a:hover,
.site-header.on-hero .nav-user-menu a:hover,
.site-header.is-scrolled .nav-user-menu a:hover {
  background: rgba(54, 91, 158, 0.08);
  color: #243f72;
  text-decoration: none;
}

.nav-user-menu #site-logout,
.nav-user-menu #logout,
.site-header .nav-user-menu #site-logout,
.site-header .nav-user-menu #logout {
  margin-top: 0.2rem;
  border-top: 1px solid #e4dcd0;
  border-radius: 0 0 0.55rem 0.55rem;
  color: #5a524a;
}

/* Faden durch die Zeit — Scroll-Fortschritt */
.thread {
  position: fixed;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 1px;
  z-index: 35;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(138, 111, 79, 0.18), rgba(138, 111, 79, 0.06));
}

.thread-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 0;
  background: linear-gradient(180deg, #c4a574, #8a6f4f);
  box-shadow: 0 0 8px rgba(196, 165, 116, 0.6);
}

.thread-bead {
  position: absolute;
  left: -3px;
  top: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8a6f4f;
  box-shadow: 0 0 0 4px rgba(196, 165, 116, 0.2);
  transition: top 0.1s linear;
}

@media (min-width: 900px) {
  .thread { left: 38px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--night);
  font-family: var(--sans);
  font-weight: 650;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 12px 28px -16px rgba(138, 111, 79, 0.65);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn:hover {
  color: var(--night);
  text-decoration: none;
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 16px 32px -14px rgba(184, 149, 74, 0.75);
}

.btn.ghost {
  background: transparent;
  color: var(--gold-deep);
  border-color: rgba(184, 149, 74, 0.55);
  box-shadow: none;
  font-weight: 600;
}

.btn.ghost:hover {
  background: var(--gold-soft);
  color: var(--gold-deep);
  border-color: var(--gold);
  filter: none;
  box-shadow: none;
}

/* ---------- Hero Sternenhimmel ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 7.5rem 0 4.5rem;
  color: var(--cream);
}

.hero-sky {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(900px 560px at 82% 8%, rgba(196, 165, 116, 0.22), transparent 55%),
    radial-gradient(820px 520px at 4% 92%, rgba(54, 91, 158, 0.4), transparent 55%),
    linear-gradient(158deg, #1a2137 0%, #243f72 46%, #20304f 100%);
}

.hero-glow {
  position: absolute;
  width: 42vmax;
  height: 42vmax;
  border-radius: 50%;
  right: -16vmax;
  top: -22vmax;
  background:
    radial-gradient(circle at 34% 32%, rgba(255, 248, 235, 0.08), transparent 28%),
    radial-gradient(circle at 50% 50%, transparent 56%, rgba(232, 201, 106, 0.12) 62%, transparent 70%),
    radial-gradient(circle, rgba(196, 165, 116, 0.1), transparent 74%);
  filter: blur(12px);
  animation: drift 28s ease-in-out infinite alternate;
  z-index: 1;
  pointer-events: none;
  opacity: 0.75;
}

.hero-glow-2 {
  left: -22vmax;
  right: auto;
  top: auto;
  bottom: -24vmax;
  width: 38vmax;
  height: 38vmax;
  background:
    radial-gradient(circle at 36% 34%, rgba(255, 248, 235, 0.05), transparent 26%),
    radial-gradient(circle at 50% 50%, transparent 54%, rgba(255, 248, 235, 0.08) 60%, transparent 68%),
    radial-gradient(circle, rgba(54, 91, 158, 0.2), transparent 74%);
  animation-duration: 34s;
  animation-direction: alternate-reverse;
  opacity: 0.7;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-4%, 6%, 0) scale(1.08); }
}

.hero-orbs {
  z-index: 1;
  opacity: 0.55;
}

.hero-orbs .orb-a {
  right: -10%;
  top: 12%;
  width: min(40vw, 320px);
  animation-duration: 24s;
}

.hero-orbs .orb-b {
  left: 2%;
  bottom: 10%;
  width: min(28vw, 220px);
  animation-duration: 30s;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-main {
  min-width: 0;
  max-width: 46rem;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.9rem, 8.5vw, 5.8rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
  max-width: none;
}

.hero-line {
  display: block;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(0.9rem);
  animation: heroIn 1.1s var(--ease) forwards;
}

.hero-line:first-child { animation-delay: 0.2s; }

.hero-line-em {
  animation-delay: 0.55s;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: #c4a574;
  text-shadow: 0 0 36px rgba(196, 165, 116, 0.4);
}

.hero-lead {
  font-size: clamp(1.08rem, 2.1vw, 1.28rem);
  max-width: 36ch;
  color: rgba(244, 237, 225, 0.9);
  margin: 0 0 2.2rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(0.9rem);
  animation: heroIn 1.05s var(--ease) 0.9s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  transform: translateY(0.9rem);
  animation: heroIn 1.05s var(--ease) 1.15s forwards;
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero .btn:not(.ghost) {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--night);
  border-color: transparent;
}

.hero .btn.ghost {
  color: var(--cream);
  border-color: rgba(232, 201, 106, 0.55);
}

.hero .btn.ghost:hover {
  background: rgba(232, 201, 106, 0.14);
  color: #fff;
  border-color: var(--gold-bright);
}

@media (max-width: 900px) {
  .hero-main {
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 9vw, 3.4rem);
  }

  .hero-line {
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: clamp(1.85rem, 8.8vw, 2.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-line,
  .hero-lead,
  .hero-actions {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .hero-glow { animation: none; }
}

/* ---------- Sky layer (Fragen + Panels): Kreise statt Sterne ---------- */
.sky-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 560px at 82% 8%, rgba(196, 165, 116, 0.22), transparent 55%),
    radial-gradient(820px 520px at 4% 92%, rgba(54, 91, 158, 0.4), transparent 55%),
    linear-gradient(158deg, #1a2137 0%, #243f72 46%, #20304f 100%);
}

.sky-layer-soft {
  opacity: 1;
  border-radius: inherit;
}

/* Kacheln ohne Seifenblasen-Kreise */
.sky-plain {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(640px 340px at 88% 12%, rgba(232, 201, 106, 0.14), transparent 55%),
    radial-gradient(520px 300px at 8% 88%, rgba(54, 91, 158, 0.28), transparent 52%),
    linear-gradient(155deg, #101624 0%, #1c335f 50%, #243f72 100%);
}

/* ---------- Fragen = gleicher Nachthimmel wie Hero ---------- */
.question {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4.5rem, 10vw, 6.5rem) 0;
  color: var(--cream);
  background: var(--night);
}

.orb-field-night {
  z-index: 1;
}

.question .hero-glow {
  z-index: 1;
}

.question.orb-flip .hero-orbs .orb-a {
  right: auto;
  left: -8%;
  top: 18%;
}

.question.orb-flip .hero-orbs .orb-b {
  left: auto;
  right: 4%;
  bottom: 12%;
}

.question .wrap {
  position: relative;
  z-index: 3;
  max-width: 760px;
  /* Abstand zur festen Scroll-Zeitlinie links */
  margin-left: 3.25rem;
  margin-right: auto;
  width: calc(100% - 3.25rem);
  border-left: 2px solid transparent;
  border-image: linear-gradient(180deg, var(--gold-bright), var(--royal), var(--gold-deep)) 1;
  padding-left: 1.4rem;
}


.question blockquote {
  margin: 0;
  max-width: 28ch;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3.4vw, 2.35rem);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #fff;
}

.question blockquote em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-bright);
  text-shadow: 0 0 28px rgba(196, 165, 116, 0.35);
}

.question p {
  margin: 1.1rem 0 0;
  max-width: 42ch;
  color: rgba(251, 247, 241, 0.7);
  font-size: 1rem;
}

/* ---------- Content ---------- */
section.block {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  background: var(--bg);
}

section.block.tint { background: var(--bg-soft); }

/* Weiche Kreise wie beim Portrait, als roter Faden */
.orb-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb-field + .wrap,
.orb-field ~ .wrap {
  position: relative;
  z-index: 1;
}

.orb {
  position: absolute;
  border-radius: 50%;
  aspect-ratio: 1;
  filter: blur(2px);
  animation: sectionOrb 14s ease-in-out infinite alternate;
}

.orb-a {
  width: min(52vw, 420px);
  right: -8%;
  top: -12%;
  background:
    radial-gradient(circle at 42% 38%, rgba(232, 201, 106, 0.28), transparent 42%),
    radial-gradient(circle at 70% 70%, rgba(54, 91, 158, 0.22), transparent 58%),
    radial-gradient(circle at 50% 50%, rgba(20, 28, 48, 0.08), transparent 72%);
}

.orb-b {
  width: min(38vw, 300px);
  left: -6%;
  bottom: -10%;
  opacity: 0.85;
  background:
    radial-gradient(circle at 40% 40%, rgba(196, 165, 116, 0.22), transparent 55%),
    radial-gradient(circle at 60% 60%, rgba(54, 91, 158, 0.2), transparent 60%);
  animation-duration: 18s;
  animation-direction: alternate-reverse;
}

#geschichte .orb-a {
  right: -4%;
  top: 8%;
  width: min(48vw, 380px);
}

#geschichte .orb-b {
  left: auto;
  right: 18%;
  bottom: -8%;
  width: min(34vw, 260px);
}

#angebote .orb-a {
  right: auto;
  left: -10%;
  top: 18%;
  width: min(46vw, 360px);
}

#angebote .orb-b {
  left: auto;
  right: -8%;
  bottom: 5%;
  top: auto;
  width: min(40vw, 320px);
}

#miteinander .orb-a {
  right: 6%;
  top: -6%;
  width: min(50vw, 400px);
  opacity: 0.9;
}

#miteinander .orb-b {
  left: 8%;
  bottom: 12%;
  width: min(36vw, 280px);
}

#kontakt .orb-a {
  right: -10%;
  top: auto;
  bottom: -14%;
  width: min(54vw, 440px);
}

#kontakt .orb-b {
  left: -8%;
  bottom: auto;
  top: -8%;
  width: min(36vw, 280px);
}

@keyframes sectionOrb {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-2.5%, 3.5%, 0) scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  .orb { animation: none; }
}

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 0.9rem;
  line-height: 1.3;
  font-family: var(--sans);
}

/* Fragesektionen: helleres Gold, Schrift optisch an .eyebrow angeglichen
   (helle Schrift auf Dunkel wirkt sonst grösser) */
.question .eyebrow,
.question .question-label {
  font-size: 0.625rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.3;
  font-family: var(--sans);
  color: var(--gold-bright);
  margin: 0 0 0.9rem;
}

h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.55rem, 5.8vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 0.85rem;
  max-width: 18ch;
  color: var(--ink);
}

h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 1.2rem;
}

#kontakt .lead {
  max-width: none;
  margin: 0 0 0.25rem;
}

#miteinander .lead {
  max-width: none;
}

h2.title-wide {
  max-width: 22ch;
}

.prose { max-width: 58ch; }
.prose p {
  margin: 0 0 1.15em;
  color: var(--ink-soft);
}
.prose p:last-child { margin-bottom: 0; }

/* ---------- Einstiegsgeschichte ---------- */
.story {
  background:
    linear-gradient(180deg, rgba(20, 28, 48, 0.03), transparent 40%),
    var(--bg);
}

.story-layout {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.story-head {
  max-width: none;
}

.story-head h2 {
  max-width: none;
}

.story-body {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.35fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.story-quote-cluster {
  position: relative;
  justify-self: start;
  align-self: start;
  width: min(100%, 440px);
  margin-top: -0.75rem;
  margin-left: clamp(-2.5rem, -4vw, -0.75rem);
  padding: 16% 12% 12% 12%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Kleine Seifenblasen um die Zitatbubble (wie Referenz, Markenfarben) */
.story-sat {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.25) 6%, transparent 16%),
    radial-gradient(circle at 50% 50%, transparent 52%, rgba(54, 91, 158, 0.45) 64%, rgba(232, 201, 106, 0.4) 72%, rgba(54, 91, 158, 0.3) 78%, transparent 84%),
    radial-gradient(circle at 55% 78%, rgba(196, 165, 116, 0.35) 0%, transparent 42%),
    radial-gradient(circle at 40% 40%, rgba(54, 91, 158, 0.12) 0%, transparent 55%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.25),
    0 6px 16px rgba(54, 91, 158, 0.12);
  opacity: 0.85;
  animation: portraitOrb 16s ease-in-out infinite alternate;
}

.story-sat-a {
  width: 36%;
  top: 0%;
  left: -2%;
  animation-duration: 14s;
}

.story-sat-b {
  width: 24%;
  top: 6%;
  right: 0%;
  animation-duration: 18s;
  animation-direction: alternate-reverse;
}

.story-sat-c {
  width: 28%;
  bottom: 2%;
  left: 2%;
  animation-duration: 20s;
}

.story-sat-d {
  width: 16%;
  top: 28%;
  left: -4%;
  opacity: 0.75;
  animation-duration: 15s;
}

.story-sat-e {
  width: 20%;
  bottom: 18%;
  right: 4%;
  opacity: 0.8;
  animation-duration: 17s;
  animation-direction: alternate-reverse;
}

/* Beide Zitatbubbles: gleiche Kreisform und Optik */
.story-quote-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 300px);
  aspect-ratio: 1 / 1;
  flex: 0 0 auto;
  cursor: default;
  transition: transform 0.7s var(--ease);
}

.story-quote-cluster-sm {
  justify-self: end;
  align-self: start;
  width: min(100%, 340px);
  margin-top: -0.25rem;
  margin-left: 0;
  margin-right: clamp(-1.25rem, -2vw, 0);
  padding: 14% 10% 12%;
}

.story-quote-frame-sm {
  width: min(100%, 230px);
}

.story-quote {
  position: absolute;
  inset: 0;
  isolation: isolate;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.story-quote-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  overflow: hidden;
}

.story-quote-orb {
  position: absolute;
  border-radius: 50%;
  transition: filter 0.7s var(--ease), box-shadow 0.7s var(--ease), opacity 0.7s var(--ease);
}

/* Seifenblase wie Referenz: Mitte klar, Farbe am Rand, Blau + Gold */
.story-quote-orb-main {
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 50%, rgba(54, 91, 158, 0.18) 58%, rgba(54, 91, 158, 0.5) 66%, rgba(232, 201, 106, 0.45) 72%, rgba(54, 91, 158, 0.35) 76%, transparent 82%),
    radial-gradient(circle at 42% 70%, rgba(196, 165, 116, 0.32) 0%, transparent 38%),
    radial-gradient(circle at 60% 35%, rgba(54, 91, 158, 0.2) 0%, transparent 42%),
    radial-gradient(circle at 50% 50%, rgba(54, 91, 158, 0.06) 0%, transparent 55%);
  border: 0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.35),
    inset 0 -18px 28px rgba(54, 91, 158, 0.12),
    inset 0 12px 22px rgba(255, 255, 255, 0.2),
    0 10px 28px rgba(54, 91, 158, 0.14);
  animation: quoteOrbPulse 12s ease-in-out infinite alternate;
}

.story-quote-shine {
  position: absolute;
  top: 14%;
  left: 20%;
  width: 38%;
  height: 14%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.85), transparent 72%);
  transform: rotate(-32deg);
  filter: blur(0.4px);
  opacity: 0.95;
  z-index: 1;
}

.story-quote-glint {
  position: absolute;
  top: 22%;
  left: 28%;
  width: 9%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.35) 40%, transparent 70%);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.55);
  z-index: 1;
}

/*
  Stack mittig in der Bubble.
  Zeichen oben im Fluss + unsichtbares Gegenstück unten,
  damit Zitat+Quelle geometrisch in der Kreismitte landen.
*/
.story-quote-content {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  text-align: center;
  width: 78%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.story-quote-body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.story-quote-mark,
.story-quote-body::after {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(4rem, 9.5vw, 5.4rem);
  line-height: 0.85;
  margin: 0 0 0.28em;
}

.story-quote-mark {
  position: relative;
  z-index: 0;
  color: rgba(196, 165, 116, 0.95);
  text-shadow:
    0 0 10px rgba(232, 201, 106, 0.55),
    0 0 22px rgba(232, 201, 106, 0.35),
    0 1px 0 rgba(138, 111, 79, 0.35);
  user-select: none;
  transition: color 0.7s var(--ease), text-shadow 0.7s var(--ease);
}

/* gleiches Mass wie das Zeichen, hält den Textblock in der Mitte */
.story-quote-body::after {
  content: "„";
  margin: 0.28em 0 0;
  visibility: hidden;
  pointer-events: none;
}

.story-quote blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(251, 247, 241, 0.55);
}

.story-quote cite {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 0.65rem;
  padding-top: 0.4rem;
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(196, 165, 116, 0.95);
  border-top: 1px solid rgba(196, 165, 116, 0.55);
  transition: color 0.7s var(--ease), border-color 0.7s var(--ease);
}

.story-quote-frame:hover {
  transform: translateY(-3px) scale(1.015);
}

.story-quote-frame:hover .story-quote-orb-main {
  filter: brightness(1.05) saturate(1.08);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.45),
    inset 0 -18px 28px rgba(54, 91, 158, 0.16),
    inset 0 12px 22px rgba(255, 255, 255, 0.28),
    0 12px 30px rgba(54, 91, 158, 0.18),
    0 0 22px rgba(232, 201, 106, 0.18);
}

.story-quote-frame:hover .story-quote-shine {
  opacity: 1;
  filter: blur(0.2px) brightness(1.1);
}

.story-quote-frame:hover .story-quote-glint {
  transform: scale(1.08);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
}

.story-quote-frame:hover .story-quote-mark {
  color: rgba(232, 201, 106, 1);
  text-shadow:
    0 0 14px rgba(232, 201, 106, 0.7),
    0 0 28px rgba(232, 201, 106, 0.45),
    0 1px 0 rgba(138, 111, 79, 0.4);
}

.story-quote-frame:hover .story-quote cite {
  color: rgba(232, 201, 106, 1);
  border-top-color: rgba(232, 201, 106, 0.65);
}

@keyframes quoteOrbPulse {
  from {
    transform: scale(1);
    filter: brightness(1);
  }
  to {
    transform: scale(1.02);
    filter: brightness(1.04);
  }
}

/* Angebote: Intro + Buddha-Bubble rechts oben */
.angebote-top {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.75fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  margin-bottom: 0.5rem;
}

.angebote-intro {
  min-width: 0;
}

.angebote-top .story-quote-cluster-sm {
  margin-top: -0.5rem;
}

.angebote-top .story-quote-frame-sm .story-quote blockquote {
  font-size: clamp(0.95rem, 1.35vw, 1.08rem);
  line-height: 1.28;
}

.angebote-top .story-quote-frame-sm .story-quote-body {
  transform: translateY(-4%);
}

.story h2 {
  font-size: clamp(2.5rem, 5.6vw, 4rem);
}

@media (max-width: 900px) {
  .story-body {
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: start;
  }

  .story-quote-cluster {
    order: 2;
    justify-self: center;
    margin-left: 0;
    margin-top: 0;
    width: min(100%, 360px);
    max-width: 100%;
    padding: 14% 12% 12%;
    overflow: visible;
  }

  .story-quote-frame {
    width: min(100%, 280px);
  }

  .story-quote-cluster-sm {
    justify-self: center;
    margin-right: 0;
    width: min(100%, 300px);
    max-width: 100%;
    padding: 14% 12% 12%;
    overflow: visible;
  }

  .story-quote-frame-sm {
    width: min(100%, 220px);
  }

  /* Satelliten innerhalb der Bubble belassen (kein Abschneiden links) */
  .story-sat-a,
  .story-sat-d {
    left: 2%;
  }

  .story-sat-c {
    left: 6%;
  }

  .block.story,
  .block.story.has-stardust {
    overflow: visible;
  }

  .story-prose {
    order: 1;
  }

  .story-head h2 {
    max-width: none;
  }

  .angebote-top {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .angebote-intro {
    justify-self: stretch;
  }

  .angebote-top .story-quote-cluster-sm {
    margin-top: 0.5rem;
    justify-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-quote-orb-main,
  .story-sat { animation: none; }

  .story-quote-frame,
  .story-quote-frame:hover {
    transform: none;
    transition: none;
  }
}

.story-prose {
  min-width: 0;
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.story-prose p {
  margin: 0 0 1.25em;
  max-width: 58ch;
}

.story-prose p:last-child { margin-bottom: 0; }

.story-close {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-deep);
  padding-top: 0.35rem;
  border-top: 1px solid rgba(184, 149, 74, 0.28);
  margin-top: 0.5rem !important;
  padding-top: 1.25rem;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

#ueber.block,
#ueber.block.has-stardust {
  overflow: visible;
  padding: clamp(4.5rem, 9vw, 7rem) 0 0;
}

/* Glow-Rahmen (inset -2px) darf nicht vom Sektions-Overflow abgeschnitten werden */
#angebote.block,
#angebote.block.has-stardust,
#miteinander.block,
#miteinander.block.has-stardust,
#kontakt.block,
#kontakt.block.has-stardust {
  overflow: visible;
}

#ueber .split {
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
  align-items: stretch;
  gap: clamp(1rem, 3vw, 2.5rem);
  min-height: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

#ueber .split > .reveal:first-child {
  align-self: center;
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 0;
  max-width: 40rem;
}

.portrait {
  position: relative;
  margin: 0;
  padding: 0;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  align-self: end;
  width: 100%;
  min-height: 0;
  line-height: 0;
  font-size: 0;
  margin-right: calc(-1 * clamp(1.5rem, 6vw, 4.5rem));
}

.portrait-stage {
  position: absolute;
  inset: -8% -18% -4% -6%;
  z-index: 0;
  pointer-events: none;
}

.portrait-orb {
  position: absolute;
  right: 0%;
  top: 2%;
  width: min(96%, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 38%, rgba(232, 201, 106, 0.42), transparent 42%),
    radial-gradient(circle at 70% 70%, rgba(54, 91, 158, 0.55), transparent 58%),
    radial-gradient(circle at 50% 50%, rgba(20, 28, 48, 0.35), rgba(20, 28, 48, 0.05) 70%, transparent 72%);
  filter: blur(2px);
  animation: portraitOrb 12s ease-in-out infinite alternate;
}

.portrait-orb-2 {
  right: auto;
  left: -2%;
  top: auto;
  bottom: 4%;
  width: min(68%, 380px);
  opacity: 0.75;
  background:
    radial-gradient(circle at 40% 40%, rgba(196, 165, 116, 0.35), transparent 55%),
    radial-gradient(circle at 60% 60%, rgba(54, 91, 158, 0.28), transparent 60%);
  animation-duration: 16s;
  animation-direction: alternate-reverse;
}

.portrait-constellation {
  position: absolute;
  inset: 4% 0%;
  opacity: 0.85;
  background-image:
    radial-gradient(1.4px 1.4px at 12% 22%, rgba(255, 248, 235, 0.95), transparent),
    radial-gradient(1px 1px at 28% 58%, rgba(232, 201, 106, 0.85), transparent),
    radial-gradient(1.6px 1.6px at 48% 18%, rgba(255, 248, 235, 0.9), transparent),
    radial-gradient(1px 1px at 66% 72%, rgba(232, 201, 106, 0.7), transparent),
    radial-gradient(1.3px 1.3px at 82% 34%, rgba(255, 248, 235, 0.85), transparent),
    radial-gradient(1px 1px at 18% 78%, rgba(232, 201, 106, 0.65), transparent),
    radial-gradient(1.2px 1.2px at 90% 62%, rgba(255, 248, 235, 0.75), transparent);
  mask-image: radial-gradient(circle at 55% 45%, #000 20%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 55% 45%, #000 20%, transparent 72%);
}

.portrait-constellation::before {
  content: "";
  position: absolute;
  inset: 18% 20% 28% 22%;
  border: 1px solid rgba(196, 165, 116, 0.22);
  border-radius: 50%;
  transform: rotate(-12deg);
  box-shadow: inset 0 0 40px rgba(196, 165, 116, 0.08);
}

.portrait-photo {
  position: relative;
  z-index: 1;
  display: block;
  width: min(135%, 720px);
  max-width: none;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: bottom;
  object-fit: contain;
  object-position: bottom right;
  background: transparent;
  filter:
    drop-shadow(0 18px 34px rgba(20, 28, 48, 0.22))
    drop-shadow(0 0 28px rgba(196, 165, 116, 0.16));
  transform: none;
  transition: filter 0.7s var(--ease);
}

.portrait:hover .portrait-photo,
.portrait:focus-within .portrait-photo {
  filter:
    drop-shadow(0 22px 40px rgba(20, 28, 48, 0.28))
    drop-shadow(0 0 34px rgba(196, 165, 116, 0.26));
}

.portrait:hover .portrait-orb {
  filter: blur(1px) brightness(1.08);
}

@keyframes portraitOrb {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-3%, 4%, 0) scale(1.04); }
}

@media (prefers-reduced-motion: reduce) {
  .portrait-orb,
  .portrait-orb-2 { animation: none; }
  .portrait-photo { transition: none; }
}

/* ---------- Cards ---------- */
.grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.4rem;
}

.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Card-Hover: Gold/Blau-Rahmen (border-box, ohne Maske) + Spotlight */
.card {
  --mx: 50%;
  --my: 50%;
  --card-fill: linear-gradient(var(--bg-paper), var(--bg-paper));
  --card-edge: linear-gradient(var(--line), var(--line));
  --card-edge-hover: linear-gradient(
    135deg,
    #f0d67e 0%,
    #e8c96a 28%,
    #c4a574 58%,
    #8a6f4f 100%
  );
  position: relative;
  isolation: isolate;
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  border: 3px solid transparent;
  background:
    var(--card-fill) padding-box,
    var(--card-edge) border-box;
  box-shadow: 0 16px 40px -28px rgba(42, 36, 31, 0.35);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), background 0.5s var(--ease);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    520px circle at var(--mx) var(--my),
    rgba(232, 201, 106, 0.22),
    rgba(54, 91, 158, 0.1) 36%,
    transparent 48%
  );
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
  z-index: 0;
}

.card:hover,
.card.reveal.is-in:hover {
  transform: translateY(-6px);
  background:
    var(--card-fill) padding-box,
    var(--card-edge-hover) border-box;
  box-shadow:
    0 0 0 1px rgba(232, 201, 106, 0.35),
    0 22px 52px -22px rgba(184, 149, 74, 0.4),
    0 14px 36px -18px rgba(54, 91, 158, 0.25);
}

.card:hover::after,
.card.reveal.is-in:hover::after {
  opacity: 1;
}

.card > * {
  position: relative;
  z-index: 3;
}

.card-star {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow:
    0 0 0 3px rgba(232, 201, 106, 0.15),
    0 0 16px rgba(232, 201, 106, 0.55);
  z-index: 3;
}

.offer-pair > .card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.offer-pair > .card > .btn,
.offer-pair > .card .offer-body > .btn {
  margin-top: auto;
  align-self: flex-start;
}

.offer-trio {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.offer-trio > .offer-card {
  padding: clamp(1.2rem, 2.4vw, 1.65rem);
}

.offer-trio > .offer-card > h3 {
  margin-bottom: 0.2rem;
}

.offer-trio > .offer-card > .card-sub {
  margin-bottom: 0.55rem !important;
}

.offer-trio > .offer-card > .price-stack {
  margin-bottom: 0.15rem;
  min-height: 1.85em;
}

.offer-trio > .offer-card > .offer-price-note {
  margin-bottom: 0.7rem !important;
}

.offer-trio > .offer-card > .offer-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}

.offer-trio > .offer-card > .offer-body > .offer-copy {
  margin-bottom: 1rem;
}

/* Titel bis Preiszeile ausrichten; Text+Button als gemeinsamer Block (keine Riesenlücken) */
@supports (grid-template-rows: subgrid) {
  .offer-trio > .offer-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 5;
    align-content: start;
  }

  .offer-trio > .offer-card > .offer-body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }

  .offer-trio > .offer-card > .offer-body > .btn {
    margin-top: auto;
  }
}

/* Diagonal-Banner rechts oben (wie Connexa privat) */
.card-promo {
  overflow: hidden;
}

.card.card-promo > .promo-corner {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  z-index: 5;
  width: 9.5rem;
  height: 9.5rem;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
  /* Nur die rechte obere Dreiecksfläche: kein abgeschnittener Band-Rand */
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

/* Banner nicht als Grid-Zelle mitziehen */
.offer-trio > .offer-card > .promo-corner {
  inset: 0 0 auto auto;
}

.card-promo .promo-corner span {
  position: absolute;
  top: 2.05rem;
  right: -4.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15.5rem;
  min-height: 2.9rem;
  padding: 0.55rem 0;
  box-sizing: border-box;
  transform: rotate(45deg);
  text-align: center;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.28;
  text-transform: uppercase;
  color: var(--night);
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold) 45%, var(--gold-bright) 100%);
  box-shadow: none;
}

.price-stack {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.45rem 0.7rem;
  margin: 0 0 0.35rem;
}

.price-now {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--gold-bright);
  margin: 0;
}

.price-soon-label {
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  color: rgba(232, 201, 106, 0.75);
}

.price-old {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(251, 247, 241, 0.45);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.offer-price-note {
  margin: 0 0 1rem !important;
  font-size: 0.82rem !important;
  color: rgba(232, 201, 106, 0.85) !important;
}

/* Angebotskacheln: Nachthimmel wie Online-Kreis / Connect */
.offer-card {
  --card-edge: linear-gradient(rgba(232, 201, 106, 0.35), rgba(232, 201, 106, 0.35));
  box-shadow: 0 24px 50px -30px rgba(28, 51, 95, 0.45);
  background:
    radial-gradient(640px 340px at 88% 12%, rgba(232, 201, 106, 0.14), transparent 55%) padding-box,
    radial-gradient(520px 300px at 8% 88%, rgba(54, 91, 158, 0.28), transparent 52%) padding-box,
    linear-gradient(155deg, #101624 0%, #1c335f 50%, #243f72 100%) padding-box,
    var(--card-edge) border-box;
  color: var(--cream);
}

.offer-card:hover,
.offer-card.reveal.is-in:hover {
  background:
    radial-gradient(640px 340px at 88% 12%, rgba(232, 201, 106, 0.14), transparent 55%) padding-box,
    radial-gradient(520px 300px at 8% 88%, rgba(54, 91, 158, 0.28), transparent 52%) padding-box,
    linear-gradient(155deg, #101624 0%, #1c335f 50%, #243f72 100%) padding-box,
    var(--card-edge-hover) border-box;
}

/* Sterbebegleitung: gedämpftes Grau-Blau statt kräftigem Nachtblau */
.offer-card.offer-card--soon {
  --card-edge: linear-gradient(rgba(148, 162, 178, 0.4), rgba(148, 162, 178, 0.4));
  box-shadow: 0 24px 50px -30px rgba(40, 48, 60, 0.5);
  background:
    radial-gradient(640px 340px at 88% 12%, rgba(170, 180, 195, 0.16), transparent 55%) padding-box,
    radial-gradient(520px 300px at 8% 88%, rgba(90, 110, 130, 0.22), transparent 52%) padding-box,
    linear-gradient(155deg, #2c343e 0%, #3d4a58 48%, #4e5d6c 100%) padding-box,
    var(--card-edge) border-box;
  color: rgba(236, 240, 244, 0.88);
}

.offer-card.offer-card--soon:hover,
.offer-card.offer-card--soon.reveal.is-in:hover {
  background:
    radial-gradient(640px 340px at 88% 12%, rgba(170, 180, 195, 0.16), transparent 55%) padding-box,
    radial-gradient(520px 300px at 8% 88%, rgba(90, 110, 130, 0.22), transparent 52%) padding-box,
    linear-gradient(155deg, #2c343e 0%, #3d4a58 48%, #4e5d6c 100%) padding-box,
    linear-gradient(rgba(232, 201, 106, 0.45), rgba(232, 201, 106, 0.45)) border-box;
}

.offer-card.offer-card--soon h3,
.offer-card.offer-card--soon .card-sub,
.offer-card.offer-card--soon p {
  color: rgba(228, 232, 238, 0.8);
}

.offer-card.offer-card--soon .card-sub,
.offer-card.offer-card--soon .offer-price-note {
  color: rgba(186, 196, 208, 0.75) !important;
}

.offer-card.offer-card--soon .offer-soon-note {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.card-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-bright);
  margin: 0 0 0.7rem;
}

.offer-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 0.3rem;
  color: #fff;
  padding-right: 3.25rem;
  max-width: 11ch;
}

.offer-card h3 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-bright);
}

.offer-card .card-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: rgba(232, 201, 106, 0.9);
  margin: 0 0 1rem !important;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
}

.offer-card p {
  margin: 0 0 0.9em;
  color: rgba(251, 247, 241, 0.75);
  font-size: 0.98rem;
}

.offer-card p:last-of-type { margin-bottom: 1.3rem; }

.offer-card .offer-copy {
  margin: 0 0 1.15rem;
}

.offer-card .offer-lead {
  margin: 0;
}

.offer-more-toggle {
  appearance: none;
  display: inline;
  margin: 0 0 0 0.35rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--gold-bright);
  font: inherit;
  font-size: inherit;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.16em;
  white-space: nowrap;
}

.offer-more-toggle:hover,
.offer-more-toggle:focus-visible {
  color: #ffe7a0;
}

.offer-more-toggle:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.offer-card .offer-more {
  margin: 0.75rem 0 0;
}

.offer-card .offer-more > p:last-child {
  margin-bottom: 0;
}

.offer-card .offer-more[hidden] {
  display: none !important;
}

.offer-card .btn {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--night);
  border: 0;
  box-shadow: 0 12px 28px -14px rgba(232, 201, 106, 0.7);
}

/* ---------- Kreise: Nachthimmel-Karten ---------- */
.kreis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
  align-items: start;
}

/* Online-Kreis / Connect: gleicher Hover, blauer Fill */
.kreis-panel {
  --card-fill:
    radial-gradient(640px 340px at 88% 12%, rgba(232, 201, 106, 0.14), transparent 55%),
    radial-gradient(520px 300px at 8% 88%, rgba(54, 91, 158, 0.28), transparent 52%),
    linear-gradient(155deg, #101624 0%, #1c335f 50%, #243f72 100%);
  --card-edge: linear-gradient(rgba(232, 201, 106, 0.35), rgba(232, 201, 106, 0.35));
  display: flex;
  flex-direction: column;
  margin-top: 0;
  height: auto;
  min-height: 0;
  padding: 0;
  box-shadow: 0 24px 50px -30px rgba(28, 51, 95, 0.45);
  background:
    radial-gradient(640px 340px at 88% 12%, rgba(232, 201, 106, 0.14), transparent 55%) padding-box,
    radial-gradient(520px 300px at 8% 88%, rgba(54, 91, 158, 0.28), transparent 52%) padding-box,
    linear-gradient(155deg, #101624 0%, #1c335f 50%, #243f72 100%) padding-box,
    var(--card-edge) border-box;
  color: var(--cream);
}

.kreis-panel:hover,
.kreis-panel.reveal.is-in:hover {
  background:
    radial-gradient(640px 340px at 88% 12%, rgba(232, 201, 106, 0.14), transparent 55%) padding-box,
    radial-gradient(520px 300px at 8% 88%, rgba(54, 91, 158, 0.28), transparent 52%) padding-box,
    linear-gradient(155deg, #101624 0%, #1c335f 50%, #243f72 100%) padding-box,
    var(--card-edge-hover) border-box;
}

.kreis-inner {
  display: flex;
  flex-direction: column;
  flex: 0 1 auto;
  min-height: 0;
  padding: clamp(1.7rem, 3.2vw, 2.4rem);
  color: var(--cream);
}

.kreis-inner h3 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 0.75rem;
  color: #fff;
}

.kreis-inner h3 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-bright);
}

.kreis-inner p {
  color: rgba(251, 247, 241, 0.75);
  max-width: 58ch;
  margin: 0;
}

.meta-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: baseline;
  gap: 0.45rem;
  margin: 1.25rem 0 0;
  white-space: nowrap;
}

.meta-pill {
  display: inline;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: rgba(232, 201, 106, 0.72);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.35;
  cursor: default;
  pointer-events: none;
  user-select: none;
}

.meta-pill + .meta-pill::before {
  content: "·";
  margin-right: 0.45rem;
  color: rgba(251, 247, 241, 0.35);
  font-weight: 400;
}

.meta-pill:nth-child(2),
.meta-pill:nth-child(3) {
  background: none;
  color: rgba(251, 247, 241, 0.58);
  border: 0;
}

.kreis-cta {
  margin-top: 1.5rem;
  padding-top: 0;
}

.kreis-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: stretch;
}

.kreis-inner .btn {
  box-sizing: border-box;
  min-height: 2.85rem;
  padding: 0.7rem 1.35rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--night);
  border: 1.5px solid transparent;
  box-shadow: 0 12px 28px -14px rgba(232, 201, 106, 0.7);
}

.kreis-inner .btn:hover {
  text-decoration: none;
  filter: brightness(1.05);
}

.kreis-inner .btn.ghost {
  background: transparent;
  color: var(--gold-bright);
  border-color: rgba(232, 201, 106, 0.55);
  box-shadow: none;
}

.kreis-inner .btn.ghost:hover {
  filter: none;
  background: rgba(232, 201, 106, 0.12);
  color: #fbf7f1;
}

.kreis-cta-row .btn {
  flex: 0 0 auto;
}

.card-sub-inline {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 201, 106, 0.9);
  margin-left: 0.35rem;
}

.interest-panel {
  margin-top: 1.25rem;
  padding: 1.15rem 1.2rem 1.25rem;
  border-radius: calc(var(--radius) - 0.35rem);
  background: rgba(20, 28, 48, 0.45);
  border: 1px solid rgba(232, 201, 106, 0.22);
}

.interest-intro {
  margin: 0 0 1rem !important;
  font-size: 0.95rem;
  max-width: 48ch !important;
}

.interest-form {
  display: grid;
  gap: 0.85rem;
  max-width: 28rem;
}

.interest-form .hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.interest-form .field {
  display: grid;
  gap: 0.35rem;
}

.interest-form label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-bright);
}

.interest-form input[type="text"],
.interest-form input[type="email"] {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(251, 247, 241, 0.22);
  background: rgba(251, 247, 241, 0.08);
  color: #fff;
  font: inherit;
}

.interest-form input::placeholder {
  color: rgba(251, 247, 241, 0.45);
}

.interest-form input:focus {
  outline: 2px solid rgba(232, 201, 106, 0.55);
  outline-offset: 1px;
  border-color: rgba(232, 201, 106, 0.55);
}

.interest-form .field-check label {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(251, 247, 241, 0.78);
  line-height: 1.45;
  cursor: pointer;
}

.interest-form .field-check input {
  margin-top: 0.25rem;
  flex: 0 0 auto;
}

.interest-form .field-check a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.interest-form .btn[disabled] {
  opacity: 0.65;
  cursor: wait;
}

.interest-status {
  margin: 0.15rem 0 0;
  font-size: 0.92rem;
  color: rgba(251, 247, 241, 0.85);
  min-height: 1.3em;
}

.interest-status.is-ok {
  color: #c8e6c0;
}

.interest-status.is-err {
  color: #f0b4a8;
}

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 3rem);
  margin-top: 2rem;
  align-items: start;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  display: grid;
  gap: 0.1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-list .k {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}

.contact-list .v {
  font-size: 0.98rem;
  color: var(--royal);
}

.contact-list .v a {
  color: var(--royal);
}

.contact-list .v a:hover {
  color: var(--royal-deep);
}

.contact-card {
  --card-edge: linear-gradient(rgba(232, 201, 106, 0.35), rgba(232, 201, 106, 0.35));
  align-self: start;
  height: fit-content;
  padding: 0;
  box-shadow: 0 24px 50px -30px rgba(28, 51, 95, 0.4);
  background:
    radial-gradient(640px 340px at 88% 12%, rgba(232, 201, 106, 0.14), transparent 55%) padding-box,
    radial-gradient(520px 300px at 8% 88%, rgba(54, 91, 158, 0.28), transparent 52%) padding-box,
    linear-gradient(155deg, #101624 0%, #1c335f 50%, #243f72 100%) padding-box,
    var(--card-edge) border-box;
  color: var(--cream);
}

.contact-card:hover,
.contact-card.reveal.is-in:hover {
  background:
    radial-gradient(640px 340px at 88% 12%, rgba(232, 201, 106, 0.14), transparent 55%) padding-box,
    radial-gradient(520px 300px at 8% 88%, rgba(54, 91, 158, 0.28), transparent 52%) padding-box,
    linear-gradient(155deg, #101624 0%, #1c335f 50%, #243f72 100%) padding-box,
    var(--card-edge-hover) border-box;
}

.contact-card-inner {
  padding: clamp(1.4rem, 2.6vw, 1.85rem);
  color: var(--cream);
}

.contact-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 0.7rem;
  color: #fff;
}

.contact-card h3 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-bright);
}

.contact-card p {
  color: rgba(251, 247, 241, 0.72);
  margin: 0 0 1.25rem;
  font-size: 0.98rem;
  line-height: 1.5;
  max-width: none;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.contact-form .hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.contact-form .field {
  display: grid;
  gap: 0.35rem;
}

.contact-form label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-bright);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(251, 247, 241, 0.22);
  background: rgba(251, 247, 241, 0.08);
  color: #fff;
  font: inherit;
}

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(232, 201, 106, 0.9) 50%),
    linear-gradient(135deg, rgba(232, 201, 106, 0.9) 50%, transparent 50%);
  background-position: calc(100% - 1.15rem) calc(50% - 0.15rem), calc(100% - 0.85rem) calc(50% - 0.15rem);
  background-size: 0.35rem 0.35rem, 0.35rem 0.35rem;
  background-repeat: no-repeat;
  padding-right: 2.2rem;
}

.contact-form select option {
  color: #2a241f;
  background: #fbf7f1;
}

.contact-form textarea {
  resize: vertical;
  min-height: 7.5rem;
  line-height: 1.5;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(251, 247, 241, 0.45);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(232, 201, 106, 0.55);
  outline-offset: 1px;
  border-color: rgba(232, 201, 106, 0.55);
}

.contact-form .field-check label {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(251, 247, 241, 0.78);
  line-height: 1.45;
  cursor: pointer;
}

.contact-form .field-check input {
  margin-top: 0.25rem;
  flex: 0 0 auto;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--gold-bright);
}

.contact-form .field-check a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.15rem;
  margin-top: 0.25rem;
}

.contact-form-hint {
  margin: 0 !important;
  font-size: 0.82rem !important;
  color: rgba(251, 247, 241, 0.55) !important;
  max-width: none !important;
}

.contact-form .btn[disabled] {
  opacity: 0.65;
  cursor: wait;
}

.contact-form .status {
  margin: 0.15rem 0 0;
  min-height: 1.25em;
  font-size: 0.92rem;
}

.contact-form .status.is-ok {
  color: var(--gold-bright);
}

.contact-form .status.is-err {
  color: #f0b4b4;
}

.contact-card .btn {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: var(--night);
  margin-top: 0;
}

@media (max-width: 560px) {
  .contact-form .field-row {
    grid-template-columns: 1fr;
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form select,
  .contact-form textarea,
  .interest-form input[type="text"],
  .interest-form input[type="email"] {
    font-size: 1rem; /* verhindert iOS-Zoom beim Fokus */
  }
}

.contact-note {
  margin-top: 1.3rem !important;
  font-size: 0.88rem !important;
  color: rgba(251, 247, 241, 0.45) !important;
}

/* ---------- Footer: gleiche Creme-Farbe wie gescrollte Menüzeile ---------- */
.footer {
  background: rgba(251, 247, 241, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid #e4dcd0;
}

.footer-min { padding: 1.35rem 0 1.25rem; }

.footer-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.footer-brand img {
  height: clamp(3.85rem, 7.5vw, 4.85rem);
  width: auto;
  opacity: 0.95;
}

.footer-min .footer-bottom {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 6px 22px;
  font-size: 0.78rem;
  color: #5a524a;
}

.footer-legal {
  margin-top: 0.65rem;
  display: flex;
  justify-content: center;
  gap: 22px;
}

.footer-legal a {
  font-size: 0.74rem;
  color: #5a524a;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover { color: #2a241f; }

/* ---------- Legal pages ---------- */
.legal-page { padding: 8rem 0 5rem; }
.legal-page h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.7rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1.4rem;
}
.legal-page h2 {
  font-size: clamp(1.45rem, 2.4vw, 1.75rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  max-width: none;
  margin: 2rem 0 0.7rem;
}
.legal-page p,
.legal-page li {
  color: var(--ink-soft);
  max-width: 65ch;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .wrap {
    padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
  }

  /* Header: Logo + Menü grösser und besser tippbar */
  .site-header .bar {
    min-height: 5.75rem;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
    gap: 0.75rem;
  }

  .brand-logo {
    height: clamp(4.85rem, 22vw, 5.75rem);
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.85rem;
    height: 2.85rem;
    margin-right: -0.35rem;
    font-size: 1.85rem;
    line-height: 1;
    border-radius: 0.65rem;
  }

  .nav-toggle:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 2px;
  }

  /* Faden links; Fragen-Goldlinie klar davon getrennt */
  .thread {
    left: 8px;
  }

  .question {
    padding: clamp(3.5rem, 9vw, 5rem) 0;
  }

  .question .wrap {
    margin-left: 1.85rem;
    width: calc(100% - 1.85rem);
    padding-left: 1.15rem;
  }

  .question blockquote {
    font-size: clamp(1.45rem, 5.6vw, 1.85rem);
    max-width: none;
    line-height: 1.22;
  }

  /* Orbs/Portrait dürfen auf Mobile keinen Horizontal-Scroll erzeugen */
  #ueber.block,
  #ueber.block.has-stardust,
  #angebote.block,
  #angebote.block.has-stardust,
  #miteinander.block,
  #miteinander.block.has-stardust,
  #kontakt.block,
  #kontakt.block.has-stardust {
    overflow: hidden;
  }

  .portrait-stage {
    inset: -4% -6% -2% -4%;
  }

  .hero {
    padding: 7.25rem 0 3.75rem;
    align-items: flex-end;
    min-height: 100svh;
  }

  .hero-content {
    padding-bottom: 1.25rem;
  }

  .hero-lead {
    font-size: clamp(1.05rem, 4.1vw, 1.18rem);
    max-width: 36ch;
  }

  .hero-actions {
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    padding: 0.95rem 1.25rem;
    font-size: 0.95rem;
  }

  section.block {
    padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  }

  h2,
  .block h2 {
    font-size: clamp(2rem, 8vw, 2.85rem);
  }

  .lead {
    font-size: 1.05rem;
  }

  .btn {
    padding: 0.95rem 1.35rem;
    font-size: 0.95rem;
    min-height: 2.85rem;
  }

  .card {
    padding: 1.35rem 1.25rem;
  }

  .meta-row {
    gap: 0.4rem;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .meta-pill {
    font-size: 0.72rem;
    padding: 0;
  }

  .kreis-cta,
  .kreis-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
  }

  .kreis-cta .btn {
    flex: 0 0 auto;
    width: auto;
  }

  .kreis-cta-row .btn {
    flex: 0 1 auto;
    width: auto;
    min-width: 0;
  }

  .footer-brand img {
    height: clamp(3.4rem, 18vw, 4.4rem);
  }

  .footer-min {
    padding: 1.5rem 0 1.6rem;
  }

  .footer-min .footer-bottom,
  .footer-legal {
    gap: 0.55rem 1.1rem;
    font-size: 0.8rem;
  }

  .legal-page {
    padding: 7.5rem 0 4rem;
  }

  .split,
  .contact-grid,
  .cols-2,
  .offer-trio,
  .kreis-grid { grid-template-columns: 1fr; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% - 0.15rem);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.75rem max(1.25rem, env(safe-area-inset-left, 0px)) 1.35rem max(1.25rem, env(safe-area-inset-right, 0px));
    background: rgba(251, 247, 241, 0.98);
    border-bottom: 1px solid #e4dcd0;
    box-shadow: 0 14px 32px -20px rgba(42, 36, 31, 0.4);
  }

  .site-header.on-hero .nav-links a,
  .site-header.is-scrolled .nav-links a {
    color: #5a524a;
  }

  .site-header.on-hero .nav-links a:hover,
  .site-header.is-scrolled .nav-links a:hover {
    color: #2a241f;
  }

  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 0.9rem 0;
    width: 100%;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }

  .nav-links a.nav-cta,
  .site-header.on-hero .nav-links a.nav-cta,
  .site-header.is-scrolled .nav-links a.nav-cta {
    width: auto;
    margin-top: 0.45rem;
    padding: 0.7rem 1.2rem;
    color: #141c30;
    background: linear-gradient(135deg, #e8c96a, #8a6f4f);
    border-color: transparent;
    font-size: 0.88rem;
  }

  .nav-links a.nav-cta:hover,
  .site-header.on-hero .nav-links a.nav-cta:hover,
  .site-header.is-scrolled .nav-links a.nav-cta:hover {
    color: #141c30;
  }

  .nav-user {
    margin: 0.65rem 0 0.2rem;
    width: 100%;
  }

  .nav-user-menu {
    position: static;
    margin-top: 0.55rem;
    box-shadow: none;
    min-width: 0;
    width: 100%;
  }

  #ueber .split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  #ueber .split > .reveal:first-child {
    max-width: none;
    padding-bottom: 0.5rem;
  }
  .portrait {
    justify-content: center;
    margin-right: 0;
  }
  .portrait-photo {
    width: min(100%, 440px);
    object-position: bottom center;
  }
  .question blockquote { max-width: 100%; }
}

@media (max-width: 520px) {
  .site-header .bar {
    min-height: 5.35rem;
  }

  .brand-logo {
    height: clamp(4.55rem, 24vw, 5.25rem);
  }

  .hero {
    padding-top: 6.75rem;
    align-items: center;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .hero-actions .btn {
    width: auto;
  }

  .kreis-cta-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .kreis-cta-row .btn {
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-glow { animation: none; }
  .card:hover { transform: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
