/* ==========================================================================
   Page-specific styles
   ========================================================================== */

/* === HOME: HERO === */
.hero {
  padding: 180px 0 100px;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--moss);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.1s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--moss);
}

.hero h1 {
  opacity: 0;
  animation: fadeUp 1s 0.2s forwards;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 1s 0.35s forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}

/* === HOME: RADIAL DIAGRAM === */
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 560px;
  margin-left: auto;
  opacity: 0;
  animation: fadeIn 1.2s 0.4s forwards;
}

.radial-diagram {
  width: 100%;
  height: 100%;
  position: relative;
}

.radial-diagram svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.radial-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32%;
  height: 32%;
  background: var(--paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 8px 24px rgba(26, 36, 32, 0.12);
  border: 1px solid var(--line);
}

/* Kompass-Lichtstrahl: zeigt beim Hover in Richtung des Quadranten */
.compass-beam {
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: 150px;
  height: 230px;
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(0deg) scaleY(0.55);
  background: linear-gradient(to top, rgba(194, 131, 58, 0.5), rgba(194, 131, 58, 0));
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  filter: blur(7px);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.4s ease, transform 0.55s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.radial-center-logo {
  width: 96px;
  height: auto;
  margin-bottom: 0;
  opacity: 0.9;
  position: relative;
  z-index: 1;
  transform: rotate(0deg);
  transition: transform 0.6s cubic-bezier(0.34, 1.45, 0.64, 1);
}

/* Nadel + Strahl schwenken in die gehoverte Richtung */
.label-tl:hover ~ .radial-center .radial-center-logo { transform: rotate(-45deg); }
.label-tr:hover ~ .radial-center .radial-center-logo { transform: rotate(45deg); }
.label-bl:hover ~ .radial-center .radial-center-logo { transform: rotate(-135deg); }
.label-br:hover ~ .radial-center .radial-center-logo { transform: rotate(135deg); }

.label-tl:hover ~ .radial-center .compass-beam { opacity: 1; transform: translateX(-50%) rotate(-45deg) scaleY(1); }
.label-tr:hover ~ .radial-center .compass-beam { opacity: 1; transform: translateX(-50%) rotate(45deg) scaleY(1); }
.label-bl:hover ~ .radial-center .compass-beam { opacity: 1; transform: translateX(-50%) rotate(-135deg) scaleY(1); }
.label-br:hover ~ .radial-center .compass-beam { opacity: 1; transform: translateX(-50%) rotate(135deg) scaleY(1); }

.radial-center-mark {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  color: var(--ochre);
  line-height: 1;
  margin-bottom: 4px;
}

.radial-center-text {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-style: italic;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.radial-label {
  position: absolute;
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  color: var(--ink);
  max-width: 140px;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.25s, transform 0.25s;
}

a.radial-label:hover {
  color: var(--ochre);
  transform: translateY(-2px);
}

a.radial-label:hover em {
  color: var(--ochre);
}

.radial-label em {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--moss);
  font-size: 13px;
  margin-top: 2px;
}

.label-tl { top: 6%; left: 8%; }
.label-tr { top: 6%; right: 8%; }
.label-bl { bottom: 6%; left: 8%; }
.label-br { bottom: 6%; right: 8%; }

/* === SCROLL INDICATOR === */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--ink-soft);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--moss);
  animation: scrollLine 2s ease-in-out infinite;
}

/* === HOME: TEASER-GRID für Zielgruppen === */
.teaser {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.teaser-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.teaser-card {
  background: var(--paper);
  padding: 48px 40px;
  transition: all 0.4s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.teaser-card:hover {
  background: var(--moss-deep);
  color: var(--paper);
}

.teaser-card:hover .teaser-category,
.teaser-card:hover .teaser-title,
.teaser-card:hover p {
  color: var(--paper);
}

.teaser-card:hover .teaser-category {
  color: var(--ochre);
}

.teaser-category {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ochre);
  margin-bottom: 20px;
  transition: color 0.4s;
}

.teaser-title {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 400;
  overflow-wrap: break-word;
  hyphens: auto;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--ink);
  transition: color 0.4s;
  flex: 1;
}

.teaser-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 24px;
  transition: color 0.4s;
}

.teaser-arrow {
  align-self: flex-start;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}

.teaser-card:hover .teaser-arrow {
  background: var(--ochre);
  border-color: var(--ochre);
  transform: translate(4px, -4px);
}

.teaser-arrow svg {
  width: 16px;
  height: 16px;
  stroke: var(--ink);
  transition: stroke 0.4s;
}

.teaser-card:hover .teaser-arrow svg { stroke: var(--paper); }

/* === HOME: WERTE TEASER === */
.werte-teaser {
  background: var(--moss-deep);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.werte-teaser::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(155, 171, 143, 0.15) 0%, transparent 70%);
}

.werte-teaser::after {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(194, 131, 58, 0.12) 0%, transparent 70%);
}

.werte-teaser .section-label { color: var(--sage); }
.werte-teaser .section-label::after { background: var(--sage); }
.werte-teaser .section-label::before { color: var(--paper); }

.werte-teaser h2 { color: var(--paper); }
.werte-teaser h2 em { color: var(--ochre); }

.werte-intro {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(243, 239, 230, 0.8);
  max-width: 760px;
  margin-bottom: 60px;
}

.werte-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.wert-card {
  padding-top: 32px;
  border-top: 1px solid rgba(243, 239, 230, 0.2);
  transition: border-color 0.3s;
}

.wert-card:hover { border-top-color: var(--ochre); }

.wert-num {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--ochre);
  line-height: 1;
  margin-bottom: 24px;
  font-style: italic;
}

.wert-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--paper);
  letter-spacing: -0.01em;
}

.wert-card p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(243, 239, 230, 0.75);
}

/* === ZIELGRUPPEN LIST === */
.zg-list {
  display: flex;
  flex-direction: column;
}

.zg-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  align-items: start;
  scroll-margin-top: 120px;
  transition: all 0.4s;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.zg-item:last-child { border-bottom: 1px solid var(--line); }

.zg-item::before {
  content: '';
  position: absolute;
  left: -40px;
  right: -40px;
  top: 0;
  bottom: 0;
  background: var(--paper-deep);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}

.zg-item:hover::before { opacity: 1; }

.zg-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--moss);
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-top: 8px;
}

.zg-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--ink);
}

.zg-content h3 .category {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ochre);
  margin-bottom: 8px;
  font-weight: 500;
}

.zg-content p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 24px;
}

.zg-leistungen-wrap {
  background: var(--paper);
  padding: 24px 28px;
  border-radius: 4px;
  border-left: 2px solid var(--ochre);
  max-width: 720px;
}

.zg-leistungen-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--moss);
  margin-bottom: 14px;
}

.zg-leistungen {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 32px;
}

.zg-leistungen li {
  font-size: 14px;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.zg-leistungen li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 1px;
  background: var(--ochre);
}

.zg-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s;
  margin-top: 4px;
}

.zg-item:hover .zg-arrow {
  background: var(--moss);
  border-color: var(--moss);
  transform: rotate(-45deg);
}

.zg-arrow svg {
  width: 16px;
  height: 16px;
  stroke: var(--ink);
  transition: stroke 0.4s;
}

.zg-item:hover .zg-arrow svg { stroke: var(--paper); }

/* === KANZLEIPROFIL: Vision / Mission === */
.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 120px;
}

.vm-card {
  background: var(--paper-deep);
  padding: 48px;
  border-radius: 4px;
  border-top: 3px solid var(--ochre);
  position: relative;
}

.vm-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--moss);
  margin-bottom: 20px;
}

.vm-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--ink);
}

.vm-card h3 em {
  font-style: italic;
  font-weight: 300;
  color: var(--moss);
}

.vm-card p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* === KANZLEIPROFIL: Warum Grid === */
.warum-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.warum-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.warum-text p strong {
  color: var(--ink);
  font-weight: 500;
}

.warum-text .mark {
  color: var(--ochre);
  font-family: 'Fraunces', serif;
  font-weight: 400;
}

.duden-card {
  background: var(--paper-deep);
  padding: 40px;
  border-radius: 4px;
  border-left: 3px solid var(--ochre);
  position: sticky;
  top: 120px;
}

.duden-card-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--moss);
  margin-bottom: 20px;
}

.duden-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.duden-card ol {
  list-style: none;
  counter-reset: duden;
}

.duden-card li {
  counter-increment: duden;
  padding: 14px 0 14px 40px;
  position: relative;
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-style: italic;
  color: var(--ink);
  border-bottom: 1px dashed var(--line);
}

.duden-card li:last-child { border-bottom: none; }

.warum-text sup { font-size: 0.65em; }

.duden-card li::before {
  content: counter(duden, upper-roman);
  position: absolute;
  left: 0;
  top: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-style: normal;
  color: var(--ochre);
  font-weight: 500;
}

/* === KANZLEIPROFIL: Fußnoten === */
.footnotes {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 900px;
}

.footnotes-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 14px;
}

.footnotes ol {
  list-style: none;
  counter-reset: fn;
}

.footnotes li {
  counter-increment: fn;
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.footnotes li::before {
  content: counter(fn);
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'JetBrains Mono', monospace;
  color: var(--ochre);
  font-weight: 500;
}

.footnotes a {
  color: var(--moss);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 2px;
}

/* === TEAM: Persona === */
.persona-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: center;
}

.persona-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 440px;
}

.persona-photo {
  position: absolute;
  inset: 0;
  background: var(--moss-deep);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(26, 36, 32, 0.2);
}

.persona-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: saturate(0.9) contrast(1.02);
}

.persona-photo-inner {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 40% 30%, rgba(155, 171, 143, 0.4) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(194, 131, 58, 0.3) 0%, transparent 60%),
    linear-gradient(180deg, var(--moss) 0%, var(--moss-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.persona-photo-inner svg {
  width: 70%;
  height: 70%;
  opacity: 0.9;
}

.persona-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--paper);
  padding: 20px 28px;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(26, 36, 32, 0.15);
  border-left: 3px solid var(--ochre);
}

.persona-badge-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
  margin-bottom: 4px;
}

.persona-badge-name {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.persona-badge-role {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--moss);
  margin-top: 4px;
}

.persona-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 300;
  line-height: 1.35;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.persona-quote {
  /* opening quote mark removed — it had no closing counterpart and sat orphaned under the heading */
}

.persona-text p {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.persona-cv {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.persona-cv-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--moss);
  margin-bottom: 24px;
}

.persona-contact {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.persona-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

.persona-contact a:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.persona-contact svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* === TIMELINE === */
.timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 80px;
  position: relative;
}

.timeline-line {
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--ink-soft) 0, var(--ink-soft) 4px, transparent 4px, transparent 10px);
  z-index: 1;
}

.timeline-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.step-dot {
  width: 56px;
  height: 56px;
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 50%;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  transition: all 0.3s;
}

.timeline-step:hover .step-dot {
  background: var(--moss);
  color: var(--paper);
  border-color: var(--moss);
  transform: scale(1.08);
}

.timeline-step h4 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  min-height: 2.6em;
  line-height: 1.25;
}

.timeline-step p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* === KONTAKT === */
.kontakt-page {
  background: var(--ink);
  color: var(--paper);
  min-height: 70vh;
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.kontakt-page::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -300px;
  transform: translateY(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(194, 131, 58, 0.1) 0%, transparent 60%);
}

.kontakt-page .section-label { color: var(--ochre); }
.kontakt-page .section-label::after { background: var(--ochre); }
.kontakt-page .section-label::before { color: var(--paper); }

.kontakt-page .breadcrumb { color: rgba(243, 239, 230, 0.5); }
.kontakt-page .breadcrumb a { color: var(--sage); }

.kontakt-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: start;
  margin-top: 60px;
}

.kontakt-page h1 { color: var(--paper); }
.kontakt-page h1 em { color: var(--ochre); }

.kontakt-intro {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(243, 239, 230, 0.8);
  margin: 32px 0 48px;
  max-width: 560px;
}

.kontakt-cta-card {
  background: var(--moss-deep);
  padding: 40px;
  border-radius: 4px;
  border: 1px solid rgba(155, 171, 143, 0.2);
}

.kontakt-cta-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--paper);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.kontakt-cta-card p {
  font-size: 14px;
  color: rgba(243, 239, 230, 0.7);
  margin-bottom: 28px;
  line-height: 1.6;
}

.kontakt-cta-btn {
  background: var(--ochre);
  color: var(--ink);
  border: none;
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  font-family: 'Inter Tight', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  cursor: pointer;
}

.kontakt-cta-btn:hover {
  background: var(--paper);
  transform: translateY(-2px);
}

.kontakt-cta-note {
  font-size: 11px;
  color: rgba(243, 239, 230, 0.5);
  margin-top: 20px;
  line-height: 1.5;
}

.kontakt-details {
  display: grid;
  gap: 28px;
  margin-top: 48px;
}

.kontakt-detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.detail-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(243, 239, 230, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--ochre);
  fill: none;
  stroke-width: 1.5;
}

.detail-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(243, 239, 230, 0.5);
  margin-bottom: 4px;
}

.detail-value {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--paper);
  letter-spacing: -0.01em;
  line-height: 1.4;
}

/* === LEGAL PAGES === */
.legal-content {
  padding: 80px 0 140px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 28px;
  margin: 48px 0 16px;
}

.legal-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  margin: 32px 0 12px;
  color: var(--ink);
}

.legal-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.legal-content strong { color: var(--ink); }

.legal-content h4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin: 24px 0 8px;
  color: var(--ink);
}

.legal-content ul {
  margin: 0 0 16px 0;
  padding-left: 22px;
  color: var(--ink-soft);
}

.legal-content ul li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.legal-content a { color: var(--moss); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--ochre); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero { padding: 130px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
  /* Kompass: Rad + Zentrum verkleinern, damit die Labels in den Ecken frei stehen */
  .radial-diagram svg { transform: scale(0.78); transform-origin: center; }
  .radial-center { transform: translate(-50%, -50%) scale(0.78); }
  .label-tl { top: 2%; left: 2%; }
  .label-tr { top: 2%; right: 2%; }
  .label-bl { bottom: 2%; left: 2%; }
  .label-br { bottom: 2%; right: 2%; }
  .teaser-header { grid-template-columns: 1fr; gap: 32px; margin-bottom: 60px; }
  .teaser-grid { grid-template-columns: 1fr; }
  .werte-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .warum-grid { grid-template-columns: 1fr; gap: 40px; }
  .duden-card { position: static; }
  .vm-grid { grid-template-columns: 1fr; gap: 24px; margin-bottom: 80px; }
  .vm-card { padding: 32px; }
  .zg-item { grid-template-columns: 1fr; gap: 16px; padding: 32px 0; }
  .zg-content h3 { font-size: 28px; }
  .teaser-title { font-size: 27px; }
  .zg-leistungen { grid-template-columns: 1fr; }
  .zg-arrow { display: none; }
  .persona-grid { grid-template-columns: 1fr; gap: 60px; }
  .persona-image { width: 100%; max-width: 320px; margin: 0 auto; }
  .timeline-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .timeline-line { display: none; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 60px; }
  .kontakt-page { padding: 130px 0 60px; }
  .radial-label { font-size: 13px; max-width: 100px; }
}

@media (max-width: 500px) {
  .werte-grid { grid-template-columns: 1fr; }
  .timeline-steps { grid-template-columns: 1fr; gap: 32px; }
}
