/* ============================================
   Rahmengeben · Main Stylesheet
   Konsolidiert aus index.html, blog.html, webdesign-entwicklung.html
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-dark: oklch(12% 0.01 250);
  --bg-mid: oklch(16% 0.012 250);
  --bg-light: oklch(97% 0.005 90);
  --bg-section: oklch(94% 0.006 90);
  --text-light: oklch(96% 0.005 250);
  --text-muted: oklch(88% 0.01 250);
  --text-dark: oklch(14% 0.01 250);
  --accent: oklch(60% 0.22 250);
  --accent-hover: oklch(65% 0.22 250);
  --accent-subtle: oklch(60% 0.22 250 / 0.1);
  --border-dark: oklch(100% 0 0 / 0.08);
  --border-light: oklch(0% 0 0 / 0.08);
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
}

.container { max-width: 1280px; margin: 0 auto; width: 100%; }

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 clamp(24px, 5vw, 40px);
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: oklch(12% 0.01 250 / 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border-dark);
}
.nav-inner {
  max-width: 1280px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text-light);
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links .current-menu-item > a { color: var(--text-light); }

/* ── Desktop-Dropdown (2. Ebene) ── */
.nav-links li { position: relative; }

/* Transparente Brücke überbrückt den Gap zwischen li und sub-menu */
.nav-links li:has(.sub-menu)::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  height: 20px;
}

/* Pfeil-Indikator am Elternelement */
.nav-links li:has(.sub-menu) > a::after {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  vertical-align: middle;
  position: relative; top: -2px;
  transition: transform 0.2s;
}
.nav-links li:has(.sub-menu):hover > a::after {
  transform: rotate(-135deg); top: 1px;
}

.nav-links .sub-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 200px;
  list-style: none;
  margin: 0; padding: 6px;
  background: oklch(14% 0.015 250 / 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  box-shadow: 0 16px 48px oklch(0% 0 0 / 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
/* kleines Dreieck oben */
.nav-links .sub-menu::before {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px; height: 8px;
  background: oklch(14% 0.015 250 / 0.97);
  border-left: 1px solid var(--border-dark);
  border-top: 1px solid var(--border-dark);
}
.nav-links li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-links .sub-menu li { position: static; }
.nav-links .sub-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
}
.nav-links .sub-menu a:hover { background: var(--border-dark); color: var(--text-light); }

.nav-cta {
  background: var(--accent);
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 8px;
  display: inline-flex !important;
  align-items: center;
  overflow: hidden;
  transition: background 0.2s, padding-right 0.3s ease !important;
}
.nav-cta .btn-arrow {
  display: inline-flex;
  align-items: center;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.4);
  transition: width 0.3s ease, opacity 0.25s ease, transform 0.3s ease;
}
.nav-cta:hover {
  background: var(--accent-hover) !important;
  color: white !important;
  padding-right: 14px !important;
}
.nav-cta:hover .btn-arrow {
  width: 18px;
  opacity: 1;
  transform: scale(1);
  margin-left: 6px;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s;
}

#mobile-menu {
  display: none;
  position: fixed;
  top: 88px; left: 0; right: 0;
  background: oklch(12% 0.01 250 / 0.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: 24px clamp(24px, 5vw, 80px) 32px;
  border-bottom: 1px solid var(--border-dark);
}
#mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
}
#mobile-menu a {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
}
#mobile-menu .sub-menu {
  list-style: none;
  padding: 12px 0 4px 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
#mobile-menu .sub-menu a {
  font-size: 15px;
  font-weight: 500;
  color: oklch(55% 0.01 250);
}
#mobile-menu .sub-menu a:hover { color: var(--text-light); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--accent);
  color: white;
  padding: 15px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-head);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, padding-right 0.3s ease;
  box-shadow: 0 4px 24px oklch(60% 0.22 250 / 0.3);
  overflow: hidden;
}
.btn-primary .btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.4);
  transition: width 0.3s ease, opacity 0.25s ease, transform 0.3s ease;
  margin-left: 0;
}
.btn-primary:hover {
  background: var(--accent-hover);
  padding-right: 20px;
  color: white;
}
.btn-primary:hover .btn-arrow {
  width: 20px;
  opacity: 1;
  transform: scale(1);
  margin-left: 8px;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  padding: 15px 4px;
}
.btn-secondary:hover { color: var(--text-light); }
.btn-secondary svg { transition: transform 0.2s; }
.btn-secondary:hover svg { transform: translateX(4px); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  padding: 140px clamp(24px, 5vw, 40px) 100px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible;
}
#hero .container {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  overflow: visible;
}
.hero-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  overflow: visible;
}
.hero-content { max-width: 580px; min-width: 0; position: relative; }
.hero-cards-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 0;
  margin-right: -120px;
  overflow: visible;
}
.hero-cards-stage { display: flex; align-items: center; }
.hero-card {
  width: 420px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 2px 0 oklch(100% 0 0 / 0.06),
    0 20px 60px oklch(0% 0 0 / 0.55),
    0 60px 120px oklch(0% 0 0 / 0.3);
  flex-shrink: 0;
  transform: perspective(700px) rotateY(-22deg);
  margin-right: -190px;
}
.hero-card:nth-child(1) { z-index: 3; }
.hero-card:nth-child(2) { z-index: 2; }
.hero-card:nth-child(3) { z-index: 1; margin-right: 0; }
.hero-card-bar {
  background: oklch(26% 0.015 250);
  padding: 9px 12px;
  display: flex;
  gap: 5px;
  align-items: center;
  border-bottom: 1px solid oklch(100% 0 0 / 0.06);
}
.hc-dot { width: 7px; height: 7px; border-radius: 50%; }
.hero-card-body {
  width: 100%;
  height: 260px;
  background: var(--bg-mid);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent, transparent 7px,
    oklch(100% 0 0 / 0.025) 7px,
    oklch(100% 0 0 / 0.025) 8px
  );
}
.hero-card-body img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero-card-body.has-image::before { display: none; }
.hero-card-label {
  position: relative;
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  color: oklch(38% 0.01 250);
  text-align: center;
  line-height: 1.6;
}
.hero-ground {
  position: absolute;
  bottom: -10px;
  left: 50%; transform: translateX(-50%);
  width: 340px; height: 60px;
  background: radial-gradient(ellipse, oklch(60% 0.22 250 / 0.18) 0%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-dark) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 80%);
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(160px);
  opacity: 0.12;
  top: 10%;
  right: -100px;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-subtle);
  border: 1px solid oklch(60% 0.22 250 / 0.25);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

h1 {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--text-light);
  text-wrap: balance;
  margin-bottom: 24px;
}
h1 .accent { color: var(--accent); }
h1 .outline {
  -webkit-text-stroke: 2px var(--text-light);
  color: transparent;
}
.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 48px;
  font-weight: 500;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 88px;
  padding-top: 48px;
  border-top: 1px solid var(--border-dark);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-light);
}
.hero-stat-num span { color: var(--accent); }
.hero-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 400;
}

/* ── MARQUEE ── */
.marquee-section {
  padding: 20px 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  overflow: hidden;
  background: var(--bg-mid);
  opacity: 0.45;
  mask-image: linear-gradient(to right, transparent 0%, black 18%, black 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 18%, black 82%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}
.marquee-item {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 20px;
}
.marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── SECTIONS BASE ── */
section {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 40px);
}
section > .container {
  max-width: 1280px;
  margin: 0 auto;
}
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--text-light);
  text-wrap: balance;
}
h2.dark { color: var(--text-dark); }

/* ── SERVICES ── */
#leistungen { background: var(--bg-section); }
#leistungen h2 { color: var(--text-dark); }
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.services-header p {
  max-width: 400px;
  font-size: 16px;
  line-height: 1.7;
  color: oklch(45% 0.01 250);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
}
.service-card {
  background: white;
  padding: 40px 36px;
  transition: background 0.3s;
  cursor: default;
  text-decoration: none;
  display: block;
}
.service-card:hover { background: var(--bg-section); }
.service-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent-subtle);
  border: 1px solid oklch(60% 0.22 250 / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
}
.service-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.service-desc {
  font-size: 14px;
  line-height: 1.7;
  color: oklch(40% 0.01 250);
  font-weight: 500;
}
.service-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.service-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--accent-subtle);
  color: var(--accent);
  border-radius: 100px;
}

/* ── PORTFOLIO ── */
#arbeiten { background: var(--bg-dark); }
#arbeiten h2 { color: var(--text-light); }
#arbeiten p { color: var(--text-muted); }
.portfolio-header { margin-bottom: 56px; }
.portfolio-header p {
  font-size: 17px;
  line-height: 1.7;
  max-width: 520px;
  margin-top: 16px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.proj-card {
  border-radius: 14px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--border-light);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-decoration: none;
}
.proj-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px oklch(0% 0 0 / 0.1);
}
.proj-card:nth-child(4n+1) { grid-column: span 7; }
.proj-card:nth-child(4n+2) { grid-column: span 5; }
.proj-card:nth-child(4n+3) { grid-column: span 5; }
.proj-card:nth-child(4n)   { grid-column: span 7; }
.proj-img {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.proj-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.proj-img-inner {
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 6px, oklch(100% 0 0 / 0.04) 6px, oklch(100% 0 0 / 0.04) 7px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: oklch(22% 0.04 250);
  color: oklch(50% 0.1 250);
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 16px;
}
.proj-meta { padding: 24px 28px; }
.proj-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.proj-meta-top .proj-cat { margin-bottom: 0; }
.proj-year {
  font-size: 11px;
  font-weight: 600;
  color: oklch(55% 0.01 250);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.proj-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.proj-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}
.proj-sub {
  font-size: 13px;
  color: oklch(55% 0.01 250);
  margin-top: 4px;
}
.proj-desc {
  font-size: 13px;
  color: oklch(45% 0.01 250);
  margin-top: 10px;
  line-height: 1.55;
}

/* ── PROZESS ── */
#prozess { background: var(--bg-dark); }
#prozess h2 { color: var(--text-light); }
.prozess-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.prozess-left p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-top: 20px;
}
.prozess-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.prozess-step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-dark);
}
.prozess-step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  padding-top: 2px;
  width: 32px;
}
.step-content h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.step-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── ABOUT ── */
#about { background: var(--bg-section); }
#about h2 { color: var(--text-dark); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.about-img {
  border-radius: 16px;
  overflow: hidden;
  background: oklch(88% 0.01 90);
  position: relative;
  min-height: 0;
}
.about-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-img-inner {
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 8px, oklch(0% 0 0 / 0.04) 8px, oklch(0% 0 0 / 0.04) 9px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-label {
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: oklch(55% 0.01 250);
  text-align: center;
}
.about-right p {
  font-size: 16px;
  line-height: 1.8;
  color: oklch(40% 0.01 250);
  margin-bottom: 20px;
}
.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.skill-pill {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  background: white;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
}

/* ── TESTIMONIALS ── */
#referenzen { background: var(--bg-section); }
#referenzen h2 { color: var(--text-dark); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.testi-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 36px;
}
.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: oklch(72% 0.18 80);
  font-size: 16px;
}
.testi-text {
  font-size: 15px;
  line-height: 1.75;
  color: oklch(40% 0.01 250);
  margin-bottom: 28px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-subtle);
  border: 1px solid oklch(60% 0.22 250 / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  flex-shrink: 0;
}
.testi-avatar--photo { background: none; border: none; overflow: hidden; }
.testi-avatar--photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testi-name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}
.testi-role { font-size: 12px; color: oklch(55% 0.01 250); }

/* ── CONTACT ── */
#kontakt { background: var(--bg-dark); }
#kontakt h2 { color: var(--text-light); }
.contact-wrap {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.contact-wrap h2 { font-size: clamp(36px, 5vw, 64px); }
.contact-wrap p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 500px;
  margin: 20px auto 48px;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full { grid-column: span 2; }
label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
input, textarea, select {
  background: var(--bg-mid);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 15px;
  color: var(--text-light);
  font-family: var(--font-body);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
textarea { min-height: 120px; resize: vertical; }
input::placeholder, textarea::placeholder { color: oklch(45% 0.01 250); }
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px oklch(60% 0.22 250 / 0.15);
}
select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-submit { grid-column: span 2; margin-top: 8px; }
.form-submit .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 17px;
  box-shadow: none;
  border: none;
  outline: none;
}
.contact-alt {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: oklch(60% 0.01 250);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-item:hover { color: var(--text-light); }
.contact-item svg { color: var(--accent); }
.form-notice {
  margin: 16px 0;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  text-align: center;
}
.form-notice.success { background: oklch(50% 0.18 150 / 0.15); color: oklch(75% 0.18 150); border: 1px solid oklch(50% 0.18 150 / 0.3); }
.form-notice.error { background: oklch(50% 0.22 30 / 0.15); color: oklch(75% 0.18 30); border: 1px solid oklch(50% 0.22 30 / 0.3); }

/* ── FOOTER ── */
.site-footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--border-dark);
  padding: 48px clamp(24px, 5vw, 40px);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-light); }

/* ── PREISPAKETE ── */
#preise { background: var(--bg-dark); }
.preise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.preis-card {
  background: var(--bg-mid);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.preis-card.preis-featured {
  border-color: var(--accent);
  background: oklch(16% 0.015 250);
}
.preis-badge {
  display: inline-flex;
  align-self: flex-start;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.preis-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.preis-price {
  font-family: var(--font-head);
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.preis-price span {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -0.04em;
}
.preis-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.preis-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 32px;
  padding: 0;
  flex: 1;
}
.preis-list li {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  padding-left: 20px;
  position: relative;
}
.preis-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.preis-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 13px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-head);
  text-decoration: none;
  border: 1px solid var(--border-dark);
  color: var(--text-light);
  transition: background 0.2s, border-color 0.2s, padding-right 0.3s ease;
  margin-bottom: 16px;
  overflow: hidden;
}
.preis-btn .btn-arrow {
  display: inline-flex;
  align-items: center;
  width: 0;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.4);
  transition: width 0.3s ease, opacity 0.25s ease, transform 0.3s ease;
}
.preis-btn:hover { background: var(--bg-dark); padding-right: 6px; }
.preis-btn:hover .btn-arrow { width: 18px; opacity: 1; transform: scale(1); margin-left: 6px; }
.preis-btn-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.preis-btn-accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.preis-ideal {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* ── FAQ ── */
#faq { background: var(--bg-section); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-q.dark { color: var(--text-light); }
.faq-icon {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.3s;
}
.faq-q.open .faq-icon { transform: rotate(180deg); }
.faq-a {
  font-size: 15px;
  line-height: 1.75;
  color: oklch(40% 0.01 250);
  font-weight: 500;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0;
}
.faq-a.dark { color: var(--text-muted); }
.faq-a.open {
  max-height: 500px;
  padding-bottom: 24px;
}

/* ── FADE-UP ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ── BLOG (home.php + archive.php) ── */
.blog-hero {
  background: var(--bg-dark);
  padding: 140px clamp(24px, 5vw, 40px) 80px;
  border-bottom: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}
.blog-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(oklch(100% 0 0 / 0.12) 1px, transparent 1px), linear-gradient(90deg, oklch(100% 0 0 / 0.12) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 80%);
}
.blog-hero-content { position: relative; max-width: 680px; }
.blog-hero h1 {
  font-family: var(--font-head); font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.08;
  color: var(--text-light); margin-bottom: 20px; text-wrap: balance;
}
.blog-hero p { font-size: 17px; line-height: 1.7; color: var(--text-muted); font-weight: 500; max-width: 480px; }

.blog-filter {
  background: var(--bg-section);
  padding: 24px clamp(24px, 5vw, 40px);
  border-bottom: 1px solid var(--border-light);
  position: sticky; top: 88px; z-index: 50;
}
.filter-inner { max-width: 1280px; margin: 0 auto; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.filter-label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: oklch(55% 0.01 250); margin-right: 6px; }
.filter-btn {
  font-size: 13px; font-weight: 600; padding: 7px 16px; border-radius: 100px;
  border: 1px solid var(--border-light); background: white; color: oklch(45% 0.01 250);
  cursor: pointer; transition: all 0.2s; font-family: var(--font-body); text-decoration: none;
  display: inline-block;
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: white; }

.blog-main {
  background: var(--bg-light);
  padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 40px);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
#main-content p a{
  text-decoration: none;
  font-weight:500;
  color: var(--accent);
}

.post-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px oklch(0% 0 0 / 0.1); }
.post-card.featured { grid-column: span 8; flex-direction: row; }
.post-card.medium { grid-column: span 4; }
.post-card.small { grid-column: span 4; }
.post-img {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.post-card.featured .post-img { width: 50%; }
.post-card:not(.featured) .post-img { width: 100%; aspect-ratio: 16/9; }
.post-img img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 220px; }
.post-img-inner {
  width: 100%; height: 100%; min-height: 220px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  background: oklch(22% 0.04 250);
}
.post-img-inner::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 8px, oklch(100% 0 0 / 0.06) 8px, oklch(100% 0 0 / 0.06) 9px);
}
.post-img-label { position: relative; font-family: monospace; font-size: 10px; letter-spacing: 0.05em; color: oklch(45% 0 0); text-align: center; }
.post-body { padding: 28px 32px; display: flex; flex-direction: column; flex: 1; }
.post-card.featured .post-body { padding: 36px; }
.post-cat {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.post-title {
  font-family: var(--font-head); font-weight: 700; color: var(--text-dark);
  letter-spacing: -0.02em; line-height: 1.25; margin-bottom: 12px; text-wrap: balance;
}
.post-card.featured .post-title { font-size: 26px; }
.post-card:not(.featured) .post-title { font-size: 18px; }
.post-excerpt {
  font-size: 14px; line-height: 1.75; color: oklch(45% 0.01 250);
  font-weight: 500; margin-bottom: 20px; flex: 1;
}
.post-card.featured .post-excerpt { font-size: 15px; }
.post-meta {
  display: flex; align-items: center; gap: 16px;
  padding-top: 16px; border-top: 1px solid var(--border-light);
  margin-top: auto;
}
.post-date { font-size: 12px; color: oklch(60% 0.01 250); font-weight: 500; }
.post-read { font-size: 12px; color: oklch(60% 0.01 250); }
.post-read::before { content: '·'; margin-right: 8px; }
.post-link {
  margin-left: auto; font-size: 13px; font-weight: 600; color: var(--accent);
  text-decoration: none; display: flex; align-items: center; gap: 4px;
  transition: gap 0.2s;
}
.post-link:hover { gap: 8px; }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.pagination a,
.pagination span {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background: white;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.2s;
}
.pagination a:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.pagination .current {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* ══════════════════════════════════════════════
   SINGLE POST – ARTIKEL
══════════════════════════════════════════════ */

/* ── Hero ── */
.article-hero {
  background: var(--bg-dark);
  padding: 108px clamp(24px, 5vw, 40px) 0;
  position: relative; overflow: hidden;
}
.article-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(oklch(100% 0 0 / 0.05) 1px, transparent 1px),
    linear-gradient(90deg, oklch(100% 0 0 / 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 100%, transparent 0%, black 60%);
}
.article-hero-inner {
  max-width: 800px; margin: 0 auto;
  position: relative; padding-bottom: 48px;
}
.article-breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 12px; color: var(--text-muted); margin-bottom: 24px; font-weight: 500;
}
.article-breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.article-breadcrumb a:hover { color: var(--accent); }
.article-breadcrumb svg { opacity: 0.4; flex-shrink: 0; }
.article-cat {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-subtle);
  border: 1px solid oklch(60% 0.22 250 / 0.25);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 20px;
}
.article-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.1;
  color: var(--text-light); text-wrap: balance; margin-bottom: 20px;
}
.article-lead {
  font-size: 18px; line-height: 1.75; color: var(--text-muted);
  font-weight: 400; max-width: 680px; margin-bottom: 32px;
}
.article-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.article-author { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent-subtle); border: 1px solid oklch(60% 0.22 250 / 0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  color: var(--accent); flex-shrink: 0;
}
.author-name { font-size: 13px; font-weight: 600; color: var(--text-light); }
.author-role { font-size: 12px; color: var(--text-muted); }
.meta-divider { width: 1px; height: 24px; background: var(--border-dark); }
.meta-item { font-size: 12px; color: var(--text-muted); }

/* ── Cover-Bild ── */
.article-cover { max-width: 800px; margin: 0 auto; position: relative; }
.cover-img {
  width: 100%; aspect-ratio: 16 / 7; min-height: 200px;
  border-radius: 16px 16px 0 0; overflow: hidden;
}
.cover-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Artikel-Body ── */
.article-wrap { background: white; }
.article-layout {
  max-width: 1080px; margin: 0 auto;
  padding: 56px clamp(24px, 5vw, 40px) 80px;
  display: grid; grid-template-columns: 1fr 200px; gap: 64px; align-items: start;
}

/* ── Fließtext ── */
.article-content { min-width: 0; color: oklch(28% 0.01 250); }
.article-content p { font-size: 17px; line-height: 1.85; margin-bottom: 24px; text-wrap: pretty; }
.article-content h2 {
  font-family: var(--font-head); font-size: 26px; font-weight: 800;
  letter-spacing: -0.03em; color: var(--text-dark);
  margin-top: 56px; margin-bottom: 16px; line-height: 1.2;
}
.article-content h3 {
  font-family: var(--font-head); font-size: 20px; font-weight: 700;
  letter-spacing: -0.02em; color: var(--text-dark);
  margin-top: 40px; margin-bottom: 12px;
}
.article-content a {
  color: var(--accent); text-decoration: underline;
  text-decoration-color: oklch(60% 0.22 250 / 0.3);
  text-underline-offset: 3px; transition: text-decoration-color 0.2s;
}
.article-content a.btn-primary{color:white}
.article-content a:hover { text-decoration-color: var(--accent); }
.article-content strong { font-weight: 600; color: var(--text-dark); }
.article-content ul, .article-content ol {
  margin-bottom: 24px; padding-left: 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.article-content li { font-size: 17px; line-height: 1.75; }
.article-content ul li::marker { color: var(--accent); }
.article-content img {
  max-width: 100%; height: auto; border-radius: 10px;
  margin: 32px 0; border: 1px solid var(--border-light);
}
/* Blockquote = Pullquote */
.article-content blockquote {
  margin: 48px 0; padding: 28px 32px;
  border-left: 3px solid var(--accent);
  background: oklch(60% 0.22 250 / 0.05);
  border-radius: 0 12px 12px 0;
}
.article-content blockquote p {
  font-family: var(--font-head); font-size: 20px !important;
  font-weight: 700; color: var(--text-dark) !important;
  line-height: 1.45; letter-spacing: -0.02em; margin-bottom: 0 !important;
}
/* Code */
.article-content code {
  font-family: var(--font-mono, monospace); font-size: 14px;
  background: oklch(92% 0.005 250); border: 1px solid oklch(85% 0.005 250);
  color: oklch(45% 0.15 250); padding: 2px 6px; border-radius: 5px;
}
.article-content pre {
  background: var(--bg-dark); border-radius: 12px; overflow-x: auto;
  margin: 32px 0; padding: 24px; border: 1px solid var(--border-dark);
}
.article-content pre code {
  background: none; border: none; padding: 0; color: var(--text-muted);
  font-size: 13.5px; line-height: 1.75; display: block; white-space: pre;
}

/* ── Sidebar ── */
.article-sidebar { position: sticky; top: 108px; }
.toc-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: oklch(55% 0.01 250); margin-bottom: 14px;
}
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.toc-list a {
  display: block; font-size: 13px; font-weight: 500; color: oklch(55% 0.01 250);
  text-decoration: none; padding: 7px 0 7px 14px;
  border-left: 2px solid var(--border-light);
  transition: color 0.2s, border-color 0.2s;
}
.toc-list a:hover, .toc-list a.active { color: var(--accent); border-left-color: var(--accent); }
.sidebar-share { margin-top: 32px; }
.share-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: oklch(55% 0.01 250); margin-bottom: 12px;
}
.share-btns { display: flex; flex-direction: column; gap: 8px; }
.share-btn {
  display: flex; align-items: center; gap: 8px; width: 100%;
  font-size: 12px; font-weight: 600; padding: 8px 12px; border-radius: 8px;
  border: 1px solid var(--border-light); color: oklch(45% 0.01 250);
  background: white; text-decoration: none; cursor: pointer;
  font-family: var(--font-body); transition: border-color 0.2s, color 0.2s;
}
.share-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ── Artikel-Footer (Tags + Zurück) ── */
.article-footer {
  background: var(--bg-section); padding: 40px clamp(24px, 5vw, 40px);
  border-top: 1px solid var(--border-light);
}
.article-footer-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.article-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.article-tag {
  font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 100px;
  background: white; border: 1px solid var(--border-light);
  color: oklch(45% 0.01 250); letter-spacing: 0.02em;
  text-decoration: none; transition: border-color 0.2s, color 0.2s;
}
.article-tag:hover { border-color: var(--accent); color: var(--accent); }
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--accent);
  text-decoration: none; font-family: var(--font-head); transition: gap 0.2s;
}
.back-link:hover { gap: 12px; }

/* ── Autor-Box ── */
.author-box {
  max-width: 1080px; margin: 0 auto;
  padding: 40px clamp(24px, 5vw, 40px) 56px;
}
.author-card {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 32px; border: 1px solid var(--border-light);
  border-radius: 16px; background: var(--bg-light);
}
.author-card-avatar {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent-subtle); border: 1px solid oklch(60% 0.22 250 / 0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 22px; color: var(--accent);
}
.author-card-name { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.author-card-role { font-size: 13px; color: oklch(55% 0.01 250); margin-bottom: 10px; }
.author-card-bio { font-size: 14px; line-height: 1.7; color: oklch(42% 0.01 250); }

/* ── Verwandte Artikel ── */
.related-section {
  background: var(--bg-dark);
  padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 40px);
}
.related-head { max-width: 800px; margin: 0 auto 40px; }
.related-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.related-title {
  font-family: var(--font-head); font-size: 26px; font-weight: 800;
  letter-spacing: -0.03em; color: var(--text-light);
}
.related-grid {
  max-width: 800px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.rel-card {
  background: var(--bg-mid); border: 1px solid var(--border-dark);
  border-radius: 14px; overflow: hidden; text-decoration: none;
  display: flex; flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.rel-card:hover { border-color: oklch(60% 0.22 250 / 0.4); transform: translateY(-2px); }
.rel-img { aspect-ratio: 16/9; overflow: hidden; }
.rel-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rel-img-inner {
  width: 100%; height: 100%; min-height: 140px;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.rel-img-inner::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 8px, oklch(100% 0 0 / 0.04) 8px, oklch(100% 0 0 / 0.04) 9px);
}
.rel-img-label { position: relative; font-size: 10px; color: oklch(40% 0 0); }
.rel-body { padding: 20px 24px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.rel-cat { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.rel-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--text-light); letter-spacing: -0.02em; line-height: 1.3; }
.rel-date { font-size: 12px; color: var(--text-muted); margin-top: auto; }

/* ── CTA am Artikelende ── */
.single-cta-section {
  background: var(--bg-section); padding: clamp(60px, 8vw, 80px) clamp(24px, 5vw, 40px);
  text-align: center;
}
.single-cta-inner { max-width: 560px; margin: 0 auto; }
.single-cta-title {
  font-family: var(--font-head); font-size: clamp(24px, 3vw, 36px);
  font-weight: 800; letter-spacing: -0.03em; color: var(--text-dark);
  margin-bottom: 16px;
}
.single-cta-sub {
  font-size: 16px; color: oklch(42% 0.01 250); line-height: 1.7; margin-bottom: 32px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .author-card { flex-direction: column; }
  .article-meta { gap: 12px; }
  .meta-divider { display: none; }
}



/* ── NEWSLETTER ── */
.newsletter-section {
  background: var(--bg-dark);
  padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 40px);
}
.newsletter-wrap {
  max-width: 600px; margin: 0 auto; text-align: center;
}
.newsletter-wrap h2 {
  font-family: var(--font-head); font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; letter-spacing: -0.035em; color: var(--text-light);
  margin-bottom: 16px; text-wrap: balance;
}
.newsletter-wrap p { font-size: 16px; color: var(--text-muted); font-weight: 500; line-height: 1.7; margin-bottom: 32px; }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.newsletter-input {
  flex: 1; min-width: 240px; background: var(--bg-mid); border: 1px solid var(--border-dark);
  border-radius: 10px; padding: 13px 16px; font-size: 15px; color: var(--text-light);
  font-family: var(--font-body); outline: none; transition: border-color 0.2s;
}
.newsletter-input::placeholder { color: oklch(45% 0.01 250); }
.newsletter-input:focus { border-color: var(--accent); }

/* ── LEISTUNGS-LANDINGPAGE ── */
.page-hero {
  background: var(--bg-dark);
  padding: 140px clamp(24px, 5vw, 40px) 100px;
  position: relative; overflow: hidden;
}
.page-hero .container { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 12px; color: var(--text-muted); margin-bottom: 24px; font-weight: 500; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }
.hero-right { display: flex; flex-direction: column; gap: 16px; }
.hero-feature {
  background: var(--bg-mid); border: 1px solid var(--border-dark);
  border-radius: 14px; padding: 24px 28px;
  display: flex; align-items: flex-start; gap: 16px;
}
.feature-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--accent-subtle); border: 1px solid oklch(60% 0.22 250 / 0.2); display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.feature-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--text-light); margin-bottom: 4px; }
.feature-desc { font-size: 13px; line-height: 1.6; color: var(--text-muted); font-weight: 500; }

.leistungen-detail-section { background: var(--bg-section); padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 40px); }
.leistungen-detail-section h2 { color: var(--text-dark); }
.leistungen-detail-section p{color:black}
.leistungen-grid-detail { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2px; background: var(--border-light); border: 1px solid var(--border-light); border-radius: 16px; overflow: hidden; margin-top: 48px; }
.l-card { background: white; padding: 36px; transition: background 0.3s; }
.l-card:hover { background: var(--bg-section); }
.l-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--accent-subtle); border: 1px solid oklch(60% 0.22 250 / 0.15); display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 20px; }
.l-title { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--text-dark); letter-spacing: -0.02em; margin-bottom: 10px; }
.l-desc { font-size: 14px; line-height: 1.75; color: oklch(42% 0.01 250); font-weight: 500; }

/* Leistungskarten: dunkle Variante */
.leistungen-detail-section--dark { background: var(--bg-dark); }
.leistungen-detail-section--dark h2 { color: var(--text-light); }
.leistungen-detail-section--dark .leistungen-grid-detail { background: var(--border-dark); border-color: var(--border-dark); }
.leistungen-detail-section--dark .l-card { background: var(--bg-mid); }
.leistungen-detail-section--dark .l-card:hover { background: oklch(20% 0.012 250); }
.leistungen-detail-section--dark .l-title { color: var(--text-light); }
.leistungen-detail-section--dark .l-desc  { color: var(--text-muted); }

.steps-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  margin-top: 64px; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 24px; left: 10%; right: 10%;
  height: 1px; background: linear-gradient(to right, transparent, var(--border-dark) 20%, var(--border-dark) 80%, transparent);
}
.step-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; }
.step-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--bg-mid); border: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 14px; font-weight: 800;
  color: var(--accent); margin-bottom: 20px; position: relative; z-index: 1; flex-shrink: 0;
}
.step-item.active .step-circle {
  background: var(--accent); color: white; border-color: var(--accent);
  box-shadow: 0 0 0 4px oklch(60% 0.22 250 / 0.2);
}
.step-title { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--text-light); margin-bottom: 8px; letter-spacing: -0.01em; }
.step-desc { font-size: 13px; line-height: 1.65; color: var(--text-muted); font-weight: 500; }

.warum-section { background: var(--bg-section); padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 40px); }
.warum-section h2 { color: var(--text-dark); }
.warum-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 56px; }
.warum-list { display: flex; flex-direction: column; gap: 24px; }
.warum-item { display: flex; gap: 20px; align-items: flex-start; }
.warum-check { width: 28px; height: 28px; border-radius: 50%; background: var(--accent-subtle); border: 1px solid oklch(60% 0.22 250 / 0.2); display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.warum-text h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.warum-text p { font-size: 14px; line-height: 1.7; color: oklch(42% 0.01 250); font-weight: 500; }
.warum-right { background: white; border: 1px solid var(--border-light); border-radius: 20px; padding: 40px; }
.warum-quote { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--text-dark); line-height: 1.4; letter-spacing: -0.02em; margin-bottom: 24px; text-wrap: balance; }
.warum-quote span { color: var(--accent); }
.warum-author { display: flex; gap: 14px; align-items: center; padding-top: 24px; border-top: 1px solid var(--border-light); }
.warum-name { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--text-dark); }
.warum-role { font-size: 13px; color: oklch(55% 0.01 250); }

.cta-section { background: var(--bg-section); padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 40px); text-align: center; }
.cta-section h2 { color: var(--text-dark); max-width: 600px; margin: 16px auto 20px; }
.cta-section p { font-size: 17px; color: oklch(42% 0.01 250); font-weight: 500; max-width: 480px; margin: 0 auto 40px; line-height: 1.7; }
.cta-contacts { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-top: 32px; }
.cta-contact { display: flex; align-items: center; gap: 10px; font-size: 15px; color: oklch(42% 0.01 250); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.cta-contact:hover { color: var(--accent); }
.cta-contact svg { color: var(--accent); }

/* ── PAKETE ── */
.pakete-section { background: var(--bg-dark); padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 40px); }
.pakete-section h2 { color: var(--text-light); }
.pakete-grid {
  display: grid; gap: 24px; margin-top: 48px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.pakete-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin-left: auto; margin-right: auto; }
.pakete-grid--3 { grid-template-columns: repeat(3, 1fr); }
.pakete-grid--4 { grid-template-columns: repeat(4, 1fr); }
.paket-card {
  background: var(--bg-mid); border: 1px solid var(--border-dark);
  border-radius: 20px; padding: 36px 32px; display: flex; flex-direction: column; gap: 0;
  position: relative; transition: border-color 0.3s, transform 0.3s;
}
.paket-card:hover { border-color: oklch(55% 0.22 250 / 0.5); transform: translateY(-4px); }
.paket-card--highlighted {
  border-color: var(--accent); background: oklch(14% 0.02 250);
  box-shadow: 0 0 0 1px var(--accent), 0 24px 48px oklch(60% 0.22 250 / 0.15);
}
.paket-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: white; font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: 4px 14px; border-radius: 20px;
}
.paket-name { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--text-light); letter-spacing: -0.025em; margin-bottom: 16px; }
.paket-price { font-family: var(--font-head); font-size: 40px; font-weight: 800; color: var(--text-light); letter-spacing: -0.04em; line-height: 1; margin-bottom: 0; display: flex; align-items: flex-end; gap: 3px; }
.paket-price-affix { font-size: 18px; font-weight: 600; opacity: 0.65; line-height: 1; padding-bottom: 3px; }
.paket-price-note { display: block; font-size: 13px; font-weight: 500; color: var(--text-muted); margin-top: 6px; margin-bottom: 4px; }
.paket-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; margin-top: 8px; font-weight: 500; }
.paket-features { list-style: none; padding: 0; margin: 28px 0 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.paket-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: oklch(75% 0.01 250); font-weight: 500; line-height: 1.5; }
.paket-features li svg { color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.paket-card .btn-primary, .paket-card .btn-secondary { display: block; text-align: center; margin-top: auto; }
.pakete-note { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 24px; }

/* Prozess-Modul: helles Hintergrund-Variant */
.prozess-section--light .step-title { color: var(--text-dark); }
.prozess-section--light .step-desc  { color: oklch(42% 0.01 250); }
.prozess-section--light .steps-grid::before { background: linear-gradient(to right, transparent, var(--border-light) 20%, var(--border-light) 80%, transparent); }
.prozess-section--light .step-circle { background: white; border-color: var(--border-light); }

/* Pakete-Modul: helles Hintergrund-Variant (Karten bleiben dunkel) */
.pakete-section--light { background: #fff; }
.pakete-section--light h2 { color: var(--text-dark); }
.pakete-section--light .section-label { color: var(--accent); }
.pakete-section--light .pakete-note { color: oklch(42% 0.01 250); }

/* Warum-right leerer Zustand */
.warum-right--empty { background: transparent; border: none; padding: 0; }

/* ── 404 ── */
.error-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 40px 80px;
  text-align: center;
}
.error-404 .big {
  font-family: var(--font-head);
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.06em;
  margin-bottom: 16px;
}

/* ── COLOR SWITCHER ── */
.color-switcher {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.color-swatch {
  border-radius: 50%;
  cursor: pointer;
  width: 8px;
  height: 8px;
  transition: width 0.25s ease, height 0.25s ease, outline-color 0.25s;
  outline: 2px solid transparent;
  outline-offset: 2px;
  flex-shrink: 0;
  border: none;
}
.color-swatch.active {
  width: 18px;
  height: 18px;
  outline-color: oklch(60% 0.01 250 / 0.5);
}
.color-swatch:hover { opacity: 0.8; }
@media (max-width: 1000px) { .color-switcher { display: none; } }

/* ── LEISTUNGSÜBERSICHT-KACHELN ── */
.lu-section {
  padding: clamp(64px, 8vw, 120px) clamp(24px, 5vw, 40px);
  background: var(--bg-dark);
}
.lu-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.lu-subtitle {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-top: 12px;
}
.lu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lu-card {
  background: var(--bg-mid);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: var(--text-light);
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
  position: relative;
  overflow: hidden;
}
.lu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, var(--accent-subtle), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.lu-card:hover { border-color: var(--accent); transform: translateY(-4px); background: oklch(18% 0.015 250); }
.lu-card:hover::before { opacity: 1; }
.lu-icon {
  width: 48px; height: 48px;
  background: var(--accent-subtle);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  margin-bottom: 4px;
}
.lu-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-light);
}
.lu-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  flex: 1;
}
.lu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.lu-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--accent-subtle);
  color: var(--accent);
}
.lu-arrow {
  margin-top: auto;
  padding-top: 8px;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s, transform 0.25s;
}
.lu-card:hover .lu-arrow { opacity: 1; transform: translateX(0); }

/* ── KENNZAHLEN ── */
.kz-section {
  padding: clamp(64px, 8vw, 120px) clamp(24px, 5vw, 40px);
  background: var(--bg-section);
}
.kz-section--dark {
  background: var(--bg-dark);
}
.kz-section--dark .section-label { color: var(--accent); }
.kz-section--dark h2 { color: var(--text-light); }
.kz-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.kz-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.kz-item {
  padding: 40px 32px;
  background: var(--bg-mid);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.kz-section:not(.kz-section--dark) .kz-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  gap: 2px;
}
.kz-number {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  line-height: 1;
  margin-bottom: 4px;
}
.kz-value {
  font-family: var(--font-head);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.kz-suffix {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  padding-bottom: 6px;
}
.kz-label {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-light);
}
.kz-section:not(.kz-section--dark) .kz-label { color: var(--text-dark); }
.kz-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}
.kz-section:not(.kz-section--dark) .kz-desc { color: oklch(40% 0.01 250); }

/* ── EINFACHE SEITE (Impressum, Datenschutz …) ── */
.single-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  padding: clamp(80px, 12vw, 140px) clamp(24px, 5vw, 40px) clamp(56px, 8vw, 96px);
  text-align: center;
}
.single-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.single-hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-light);
  margin: 0;
}
.single-content {
  background: var(--bg-light);
  padding: clamp(48px, 7vw, 96px) clamp(24px, 5vw, 40px) clamp(64px, 9vw, 120px);
}
.single-content-inner {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.75;
}
.single-content-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--text-dark);
  margin: 48px 0 12px;
  line-height: 1.3;
}
.single-content-inner h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 32px 0 8px;
}
.single-content-inner p { margin-bottom: 16px; }
.single-content-inner ul,
.single-content-inner ol {
  margin: 0 0 16px 20px;
}
.single-content-inner li { margin-bottom: 6px; }
.single-content-inner a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.single-content-inner a:hover { color: var(--accent-hover); }
.single-content-inner strong { font-weight: 600; color: var(--text-dark); }
.single-content-inner hr {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 40px 0;
}

/* ── PROJEKT SINGLE ── */
.proj-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 28px;
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  overflow: hidden;
  max-width: 640px;
}
.proj-hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 20px;
  flex: 1 1 140px;
  border-right: 1px solid var(--border-dark);
}
.proj-hero-meta-item:last-child { border-right: none; }
.proj-hero-meta-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.6;
}
.proj-hero-meta-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
}
.proj-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px clamp(24px, 5vw, 40px);
}
.proj-main { min-width: 0; display: flex; flex-direction: column; gap: 40px; }
.proj-challenge {
  background: var(--bg-mid);
  border: 1px solid var(--border-dark);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 24px 28px;
}
.proj-challenge-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.proj-challenge p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}
.proj-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.proj-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.proj-highlight-item {
  background: var(--bg-mid);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.proj-highlight-icon {
  width: 40px; height: 40px;
  background: var(--accent-subtle);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.proj-highlight-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.4;
  padding-top: 2px;
}
.proj-sidebar {
  position: sticky;
  top: calc(88px + 24px);
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.proj-info-card {
  background: var(--bg-mid);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  overflow: hidden;
}
.proj-info-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-dark);
}
.proj-info-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border-dark);
}
.proj-info-row:last-of-type { border-bottom: none; }
.proj-info-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.6;
}
.proj-info-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.4;
}
.proj-info-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.2s;
  border-top: 1px solid var(--border-dark);
}
.proj-info-link:hover { gap: 12px; }
.proj-gallery-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 40px) 56px;
}
.proj-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.proj-gallery-item {
  border-radius: 10px;
  overflow: hidden;
  display: block;
  aspect-ratio: 16/10;
  transition: transform 0.25s;
}
.proj-gallery-item:hover { transform: scale(1.02); }
.proj-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.proj-quote-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 40px) 56px;
}
.proj-quote {
  position: relative;
  background: var(--bg-mid);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 40px 48px;
  margin: 0;
}
.proj-quote-icon {
  position: absolute;
  top: 28px; left: 28px;
  color: var(--accent);
}
.proj-quote p {
  font-family: var(--font-head);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-light);
  margin: 0 0 24px;
}
.proj-quote-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.proj-quote-author strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
}
.proj-quote-author span {
  font-size: 13px;
  color: var(--text-muted);
}
.related-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ── FLIESSTEXT-BLOCK (rg-text) ── */
.rgt-section {
  padding: clamp(56px, 7vw, 100px) clamp(24px, 5vw, 40px);
  background: var(--bg-light);
}
.rgt-section--dark {
  background: var(--bg-dark);
}
.rgt-head {
  max-width: 760px;
  margin-bottom: 36px;
}
.rgt-head h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-top: 10px;
}
.rgt-section--dark .rgt-head h2 { color: var(--text-light); }
.rgt-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}
.rgt-layout--img-left { grid-template-columns: 400px 1fr; }
.rgt-layout--img-left .rgt-image { order: -1; }
.rgt-image img {
      object-fit: cover;
  width: 100%;
  border-radius: 14px;
  display: block;
  box-shadow: 0 20px 60px oklch(0% 0 0 / 0.12);
}
.rgt-content {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-dark);
}
.rgt-content--full {
  max-width: 760px;
}
.rgt-section--dark .rgt-content { color: var(--text-muted); }
.rgt-content h2 {
  font-family: var(--font-head);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 700;
  color: var(--text-dark);
  margin: 36px 0 10px;
  line-height: 1.3;
}
.rgt-content h2:first-child { margin-top: 0; }
.rgt-section--dark .rgt-content h2 { color: var(--text-light); }
.rgt-content h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 28px 0 8px;
}
.rgt-section--dark .rgt-content h3 { color: var(--text-light); }
.rgt-content p { margin-bottom: 14px; }
.rgt-content p:last-child { margin-bottom: 0; }
.rgt-content ul,
.rgt-content ol { margin: 0 0 14px 22px; }
.rgt-content li { margin-bottom: 5px; }
.rgt-content strong {
  font-weight: 600;
  color: var(--text-dark);
}
.rgt-section--dark .rgt-content strong { color: var(--text-light); }
.rgt-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.rgt-content a:hover { color: var(--accent-hover); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-top { grid-template-columns: 1fr; }
  .hero-cards-wrap { display: none; }
  .hero-content { max-width: 100% !important; }
}
@media (max-width: 900px) {
  .lu-grid { grid-template-columns: 1fr 1fr; }
  .kz-grid { grid-template-columns: 1fr 1fr; }
  .rgt-layout,
  .rgt-layout--img-left { grid-template-columns: 1fr; }
  .rgt-layout--img-left .rgt-image { order: 0; }
  .proj-layout { grid-template-columns: 1fr; }
  .proj-sidebar { position: static; }
  .proj-info-card { display: grid; grid-template-columns: 1fr 1fr; }
  .proj-info-title { grid-column: 1 / -1; }
  .proj-info-link  { grid-column: 1 / -1; }
  .proj-gallery { grid-template-columns: 1fr 1fr; }
  .related-grid--3 { grid-template-columns: 1fr 1fr; }
  .prozess-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .proj-card:nth-child(4n+1),
  .proj-card:nth-child(4n+2),
  .proj-card:nth-child(4n+3),
  .proj-card:nth-child(4n)   { grid-column: span 12; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .form-group.full, .form-submit { grid-column: span 1; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .preise-grid { grid-template-columns: 1fr; }
  .post-card.featured { grid-column: span 12; flex-direction: column; }
  .post-card.featured .post-img { width: 100%; }
  .post-card.medium, .post-card.small { grid-column: span 12; }
  .page-hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .warum-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 800px) {
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .pakete-grid--3, .pakete-grid--4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero-stats { gap: 32px; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .pakete-grid--2, .pakete-grid--3, .pakete-grid--4 { grid-template-columns: 1fr; }
  .lu-grid { grid-template-columns: 1fr; }
  .kz-grid { grid-template-columns: 1fr 1fr; }
  .proj-highlights-grid { grid-template-columns: 1fr; }
  .proj-gallery { grid-template-columns: 1fr; }
  .related-grid--3 { grid-template-columns: 1fr; }
  .proj-info-card { display: block; }
  .proj-quote { padding: 32px 24px; }
  .proj-hero-meta { flex-direction: column; }
  .proj-hero-meta-item { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .proj-hero-meta-item:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
  .newsletter-form { flex-direction: column; }
  .steps-grid { grid-template-columns: 1fr; }
}

/* ==============================================
   GUTENBERG CORE BLOCKS
   ============================================== */

/* ── Gruppe / Section ── */
.wp-block-group {
  box-sizing: border-box;
  line-height:1.7;
}
/* Jede Constrained-Gruppe = voller Abschnitt mit Padding */
.wp-block-group.is-layout-constrained {
  padding: clamp(56px, 7vw, 100px) clamp(24px, 5vw, 40px);
}
/* Verschachtelte Constrained-Gruppen erben kein vertikales Padding */
.wp-block-group .wp-block-group.is-layout-constrained {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
/* …außer sie haben eine eigene Hintergrundfarbe */
.wp-block-group .wp-block-group.is-layout-constrained[class*="-background-color"] {
  padding: clamp(40px, 5vw, 72px) clamp(24px, 4vw, 40px);
}
/* Constrained layout = .container-äquivalent */
.wp-block-group.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Überschriften ── */
.wp-block-heading {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-light);
  margin-top: 0;
}
h1.wp-block-heading { font-size: clamp(32px, 5vw, 56px); margin-bottom: 24px; }
h2.wp-block-heading { font-size: clamp(24px, 3.5vw, 40px); margin-bottom: 20px; }
h3.wp-block-heading { font-size: clamp(18px, 2.5vw, 26px); font-weight: 700; margin-bottom: 14px; }
h4.wp-block-heading { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
h5.wp-block-heading,
h6.wp-block-heading { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
/* Überschrift nach Absatz/Liste bekommt mehr Luft nach oben */
.wp-block-paragraph + .wp-block-heading,
.wp-block-list + .wp-block-heading { margin-top: 36px; }
/* Dachzeile vor Überschrift: kein großer Abstand */
.wp-block-paragraph.section-label + .wp-block-heading { margin-top: 0; }

/* ── Absatz ── */
.wp-block-paragraph {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.wp-block-paragraph:last-child { margin-bottom: 0; }
.wp-block-paragraph.has-large-font-size { font-size: clamp(18px, 2vw, 22px); line-height: 1.6; }
.wp-block-paragraph.has-small-font-size { font-size: 14px; line-height: 1.7; }
.wp-block-paragraph.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1.4;
}

/* ── Listen ── */
.wp-block-list {
  padding-left: 22px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.wp-block-list:last-child { margin-bottom: 0; }
.wp-block-list li {
  margin-bottom: 10px;
  padding-left: 4px;
}
.wp-block-list li:last-child { margin-bottom: 0; }

/* ── Zitat ── */
.wp-block-quote {
  margin: 0;
  padding: 24px 32px;
  background: var(--bg-mid);
  border: none;
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
}
.wp-block-quote p {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5;
  color: var(--text-light);
  margin: 0 0 12px;
}
.wp-block-quote p:last-child { margin-bottom: 0; }
.wp-block-quote cite,
.wp-block-quote footer {
  font-size: 13px;
  font-style: normal;
  color: var(--text-muted);
}

/* ── Trennlinie ── */
.wp-block-separator {
  border: none;
  border-top: 1px solid var(--border-dark);
  margin: 32px auto;
}
.wp-block-separator.is-style-wide { max-width: 100%; }
.wp-block-separator.is-style-dots { border: none; text-align: center; }
.wp-block-separator.is-style-dots::before {
  content: '···';
  color: var(--text-muted);
  letter-spacing: 0.5em;
  font-size: 20px;
}

/* ── Bild ── */
.wp-block-image {
  margin: 0;
}
.wp-block-image img {
  border-radius: 12px;
  max-width: 100%;
  height: auto;
  display: block;
  width: 100%;
}
.wp-block-image figcaption {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
  opacity: 0.7;
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

/* ── Buttons ── */
.wp-block-buttons { margin: 8px 0; }
.wp-block-button__link {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 24px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link {
  background: var(--accent);
  color: #fff;
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  border: 1.5px solid currentColor;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--accent-subtle);
}

/* ── Tabelle ── */
.wp-block-table {
  overflow-x: auto;
  width: 100%;
}
.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.wp-block-table th {
  background: var(--bg-mid);
  color: var(--text-light);
  font-family: var(--font-head);
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--border-dark);
}
.wp-block-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-dark);
  color: var(--text-muted);
  vertical-align: top;
}
.wp-block-table.is-style-stripes tr:nth-child(even) td { background: var(--bg-mid); }

/* ── Spalten ── */
.wp-block-columns {
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.wp-block-column { min-width: 0; }
@media (max-width: 780px) {
  .wp-block-columns { flex-direction: column; gap: 32px; }
  .wp-block-column { flex-basis: 100% !important; }
}

/* ── Code ── */
.wp-block-code,
.wp-block-preformatted {
  background: var(--bg-mid);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 20px 24px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  overflow-x: auto;
}

/* ══════════════════════════════════════════════
   FARB-KONTEXT
   Automatisch helle/dunkle Typografie je nach
   Gruppen-Hintergrundfarbe
   ══════════════════════════════════════════════ */

/* Dunkle Gruppen → helle Typografie (Standard, passt zum Dark-Theme) */
.wp-block-group.has-bg-dark-background-color,
.wp-block-group.has-bg-mid-background-color {
  color: var(--text-muted);
}
.wp-block-group.has-bg-dark-background-color .wp-block-heading,
.wp-block-group.has-bg-mid-background-color .wp-block-heading {
  color: var(--text-light);
}
.wp-block-group.has-bg-dark-background-color .wp-block-separator,
.wp-block-group.has-bg-mid-background-color .wp-block-separator {
  border-color: var(--border-dark);
}

/* Helle Gruppen → dunkle Typografie */
.wp-block-group.has-bg-light-background-color,
.wp-block-group.has-bg-section-background-color {
  color: oklch(40% 0.01 250);
}
.wp-block-group.has-bg-light-background-color .wp-block-heading,
.wp-block-group.has-bg-section-background-color .wp-block-heading {
  color: var(--text-dark);
}
.wp-block-group.has-bg-light-background-color .wp-block-paragraph,
.wp-block-group.has-bg-section-background-color .wp-block-paragraph {
  color: oklch(40% 0.01 250);
}
.wp-block-group.has-bg-light-background-color .wp-block-list,
.wp-block-group.has-bg-section-background-color .wp-block-list {
  color: oklch(40% 0.01 250);
}
.wp-block-group.has-bg-light-background-color .wp-block-separator,
.wp-block-group.has-bg-section-background-color .wp-block-separator {
  border-color: var(--border-light);
}
.wp-block-group.has-bg-light-background-color .wp-block-quote,
.wp-block-group.has-bg-section-background-color .wp-block-quote {
  background: #fff;
  border-left-color: var(--accent);
}
.wp-block-group.has-bg-light-background-color .wp-block-quote p,
.wp-block-group.has-bg-section-background-color .wp-block-quote p {
  color: var(--text-dark);
}
.wp-block-group.has-bg-light-background-color .wp-block-table th,
.wp-block-group.has-bg-section-background-color .wp-block-table th {
  background: var(--bg-section);
  color: var(--text-dark);
  border-color: var(--border-light);
}
.wp-block-group.has-bg-light-background-color .wp-block-table td,
.wp-block-group.has-bg-section-background-color .wp-block-table td {
  color: oklch(40% 0.01 250);
  border-color: var(--border-light);
}
.wp-block-group.has-bg-light-background-color .wp-block-code,
.wp-block-group.has-bg-section-background-color .wp-block-code {
  background: #fff;
  border-color: var(--border-light);
  color: var(--text-dark);
}

/* ══════════════════════════════════════════════
   TEXTFARBEN (has-*-color)
   ══════════════════════════════════════════════ */
.has-accent-color     { color: var(--accent) !important; }
.has-bg-dark-color    { color: var(--bg-dark) !important; }
.has-bg-mid-color     { color: var(--bg-mid) !important; }
.has-bg-light-color   { color: var(--bg-light) !important; }
.has-bg-section-color { color: var(--bg-section) !important; }
.has-text-light-color { color: var(--text-light) !important; }
.has-text-muted-color { color: var(--text-muted) !important; }
.has-text-dark-color  { color: var(--text-dark) !important; }

/* ══════════════════════════════════════════════
   HINTERGRUNDFARBEN (has-*-background-color)
   ══════════════════════════════════════════════ */
.has-accent-background-color     { background: var(--accent) !important; }
.has-bg-dark-background-color    { background: var(--bg-dark) !important; }
.has-bg-mid-background-color     { background: var(--bg-mid) !important; }
.has-bg-light-background-color   { background: var(--bg-light) !important; }
.has-bg-section-background-color { background: var(--bg-section) !important; }
.has-text-light-background-color { background: var(--text-light) !important; }
.has-text-muted-background-color { background: var(--text-muted) !important; }
.has-text-dark-background-color  { background: var(--text-dark) !important; }

/* ══════════════════════════════════════════════
   SCHRIFTGRÖSSSEN (has-*-font-size)
   ══════════════════════════════════════════════ */
.has-sm-font-size  { font-size: 14px !important; }
.has-md-font-size  { font-size: 16px !important; }
.has-lg-font-size  { font-size: 18px !important; }
.has-xl-font-size  { font-size: 24px !important; }
.has-2xl-font-size { font-size: 32px !important; }
.has-3xl-font-size { font-size: 42px !important; }

/* ══════════════════════════════════════════════
   SCHRIFTARTEN (has-*-font-family)
   ══════════════════════════════════════════════ */
.has-body-font-family    { font-family: var(--font-body) !important; }
.has-heading-font-family { font-family: var(--font-head) !important; }

/* ══════════════════════════════════════════════
   BOOKING FORM
   ══════════════════════════════════════════════ */

/* Method-Picker */
.rgf-methods {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.rgf-method {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid var(--border-dark);
  background: transparent;
  color: oklch(65% 0.01 250);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}
.rgf-method:hover {
  border-color: oklch(60% 0.22 250 / 0.5);
  color: var(--text-light);
}
.rgf-method.rgf-method--active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.rgf-method svg { flex-shrink: 0; }

/* Booking section (calendar + slots) */
.rgf-booking { overflow: hidden; }
.rgf-booking-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}

/* Calendar */
.rgf-cal-wrap {
  background: oklch(14% 0.012 250);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 16px;
  min-width: 262px;
  max-width: 300px;
}
.rgf-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.rgf-cal-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.01em;
}
.rgf-cal-nav {
  background: none;
  border: none;
  color: oklch(60% 0.01 250);
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
  line-height: 1;
  transition: color 0.15s, background 0.15s;
}
.rgf-cal-nav:hover { color: var(--text-light); background: var(--border-dark); }
.rgf-cal-nav:disabled { opacity: 0.25; cursor: not-allowed; }
.rgf-cal-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}
.rgf-cal-dow span {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: oklch(50% 0.01 250);
  padding: 4px 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.rgf-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.rgf-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid transparent;
  background: none;
  font-family: var(--font-body);
  color: oklch(38% 0.01 250);
  cursor: default;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
}
.rgf-cal-day--available {
  color: var(--text-light);
  background: oklch(100% 0 0 / 0.05);
  cursor: pointer;
}
.rgf-cal-day--available:hover {
  background: var(--accent-subtle);
  border-color: oklch(60% 0.22 250 / 0.4);
  color: oklch(80% 0.15 250);
}
.rgf-cal-day--today { border-color: oklch(50% 0.01 250 / 0.5); }
.rgf-cal-day--selected,
.rgf-cal-day--selected:hover {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
}
.rgf-cal-day--loading { opacity: 0.35; cursor: default; }

/* Time Slots */
.rgf-slots-wrap { padding-top: 4px; }
.rgf-slots-label {
  font-size: 12px;
  color: oklch(55% 0.01 250);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.rgf-slots-label strong { color: var(--text-muted); font-weight: 600; }
.rgf-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.rgf-slot {
  padding: 9px 6px;
  background: oklch(100% 0 0 / 0.05);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  text-align: center;
  cursor: pointer;
  transition: all 0.12s;
  font-family: var(--font-body);
  white-space: nowrap;
}
.rgf-slot:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-subtle);
}
.rgf-slot--selected,
.rgf-slot--selected:hover {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
}
.rgf-slots-empty {
  font-size: 13px;
  color: oklch(50% 0.01 250);
  padding: 12px 0;
  grid-column: 1 / -1;
}
.rgf-slots-loading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: oklch(50% 0.01 250);
  grid-column: 1 / -1;
}

/* Spinner */
.rgf-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid oklch(100% 0 0 / 0.1);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: rgfSpin 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes rgfSpin { to { transform: rotate(360deg); } }

/* Phone hint label */
.rgf-phone-hint {
  font-size: 11px;
  font-weight: 400;
  color: oklch(48% 0.01 250);
  margin-left: 4px;
}

/* Responsive */
@media (max-width: 700px) {
  .rgf-booking-inner {
    grid-template-columns: 1fr;
  }
  .rgf-cal-wrap { max-width: 100%; min-width: 0; }
  .rgf-slots { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 480px) {
  .rgf-slots { grid-template-columns: repeat(3, 1fr); }
  .rgf-methods { gap: 8px; }
  .rgf-method { padding: 8px 14px; font-size: 13px; }
}

/* ════════════════════════════════════════════════════════════
   ARTIKEL – BILD-QUELLENANGABE
════════════════════════════════════════════════════════════ */
.cover-source {
  position: absolute;
  bottom: 10px; right: 12px;
  font-size: 11px;
  color: oklch(20% 0.01 250 / 0.85);
  background: oklch(100% 0 0 / 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 3px 8px;
  border-radius: 4px;
  line-height: 1.4;
  max-width: 60%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
  user-select: none;
}

/* ════════════════════════════════════════════════════════════
   ARTIKEL – POST-CTA
════════════════════════════════════════════════════════════ */
.article-cta {
  margin-top: 48px;
  padding: 28px 32px;
  border: 1px solid var(--border-light);
    border-radius: 16px;
    background: var(--bg-light);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.article-cta-text {
  font-size: 17px !important;
  line-height: 1.7 !important;
  color: oklch(28% 0.01 250) !important;
  margin: 0 !important;
}
.article-cta .btn-primary {
  align-self: flex-start;
}

/* ════════════════════════════════════════════════════════════
   ARTIKEL – DISCLAIMER
════════════════════════════════════════════════════════════ */
.article-disclaimer {
  margin-top: 40px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 16px 20px;
  background: oklch(97% 0.005 250);
  border: 1px solid oklch(88% 0.01 250);
  border-left: 3px solid oklch(60% 0.01 250 / 0.5);
  border-radius: 0 10px 10px 0;
}
.disclaimer-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: oklch(50% 0.01 250);
}
.article-disclaimer p {
  font-size: 13px !important;
  line-height: 1.65 !important;
  color: oklch(45% 0.01 250) !important;
  margin: 0 !important;
}
