/* ─── KÖRPERHELD — SHARED STYLES ─── */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Instrument+Sans:wght@300;400;500&display=swap');

:root {
  --sand:     #F2EDE4;
  --stone:    #C8BC9E;
  --earth:    #5C4A32;
  --ink:      #1A1612;
  --warm-mid: #8C7A62;
  --white:    #FDFAF5;
  --accent:   #2E3A2F;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Instrument Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  background: var(--ink);
  transition: padding 0.4s ease;
}
nav.scrolled {
  background: var(--ink);
  padding: 1rem 4rem;
  box-shadow: 0 1px 0 rgba(200,188,158,0.12);
}
nav.dark { background: var(--ink); }
nav.dark.scrolled { background: var(--ink); }
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  line-height: 1;
}
.nav-logo svg { display: block; }
.nav-logo .logo-word { fill: var(--white); }
.nav-logo .logo-strich { stroke: var(--stone); }
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
nav.scrolled .nav-links a { color: var(--stone); }
nav.scrolled .nav-links a:hover,
nav.scrolled .nav-links a.active { color: var(--white); }
nav.dark .nav-links a { color: var(--stone); }
nav.dark .nav-links a:hover { color: var(--white); }

/* ─── PAGE HERO (Unterseiten) ─── */
.page-hero {
  background: var(--ink);
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10rem 4rem 6rem;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero-glyph {
  position: absolute;
  bottom: -4rem; right: -2rem;
  font-family: var(--font-display);
  font-size: 28rem;
  font-weight: 300;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.page-hero-breadcrumb {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-mid);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s 0.2s forwards;
}
.page-hero-breadcrumb a {
  color: var(--warm-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.page-hero-breadcrumb a:hover { color: var(--stone); }
.page-hero-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--stone);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s 0.3s forwards;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 7rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s 0.4s forwards;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--stone);
}
.page-hero-tagline {
  font-size: 1rem;
  color: var(--warm-mid);
  max-width: 50ch;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s 0.6s forwards;
}
.page-hero-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--earth);
  background: var(--stone);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.35s forwards;
}

/* ─── SECTION BASICS ─── */
.section-light { background: var(--white); }
.section-sand  { background: var(--sand); }
.section-dark  { background: var(--ink); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 4rem;
}
.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 8rem 4rem;
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 2rem; height: 1px;
  background: var(--stone);
}

/* ─── INTRO TEXT ─── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}
.intro-aside {
  position: sticky;
  top: 8rem;
}
.intro-aside-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
.intro-aside-title em { font-style: italic; color: var(--warm-mid); }
.intro-aside-rule {
  width: 3rem; height: 1px;
  background: var(--stone);
  margin-bottom: 1.5rem;
}
.intro-aside-note {
  font-size: 0.8rem;
  color: var(--warm-mid);
  line-height: 1.8;
}
.intro-body p {
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.9;
  margin-bottom: 1.8rem;
}
.intro-body p:last-child { margin-bottom: 0; }
.intro-body strong { font-weight: 500; color: var(--earth); }

/* ─── PROCESS STEPS ─── */
.process {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 2.5rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(92,74,50,0.12);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s, transform 0.6s;
}
.process-step.visible { opacity: 1; transform: none; }
.process-step:first-child { border-top: 1px solid rgba(92,74,50,0.12); }
.process-step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1;
  padding-top: 0.2rem;
}
.process-step-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.process-step-text {
  font-size: 0.88rem;
  color: var(--warm-mid);
  line-height: 1.85;
  max-width: 55ch;
}

/* ─── DARK QUOTE ─── */
.quote-section {
  background: var(--ink);
  padding: 8rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '"';
  position: absolute;
  top: -4rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 30rem;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  pointer-events: none;
}
.quote-inner { max-width: 700px; margin: 0 auto; position: relative; }
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 2rem;
}
.quote-attr {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-mid);
}

/* ─── FOR WHOM ─── */
.forwho-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.forwho-card {
  background: var(--white);
  padding: 2.5rem;
  border-left: 3px solid transparent;
  transition: border-color 0.3s, background 0.3s;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s, transform 0.5s, border-color 0.3s, background 0.3s;
}
.forwho-card.visible { opacity: 1; transform: none; }
.forwho-card:hover { border-left-color: var(--earth); background: var(--sand); }
.forwho-icon {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--stone);
  margin-bottom: 1rem;
  display: block;
}
.forwho-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.forwho-text {
  font-size: 0.83rem;
  color: var(--warm-mid);
  line-height: 1.8;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--sand);
  padding: 8rem 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  max-width: 100%;
}
.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
}
.cta-banner-title em { font-style: italic; color: var(--warm-mid); }
.cta-banner-sub {
  font-size: 0.85rem;
  color: var(--warm-mid);
  margin-top: 1rem;
  max-width: 45ch;
  line-height: 1.8;
}
.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1.1rem 2.5rem;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--earth); transform: translateY(-2px); }
.btn-secondary {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1.1rem 2.5rem;
  border: 1px solid var(--stone);
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
  display: inline-block;
  text-align: center;
}
.btn-secondary:hover { border-color: var(--ink); transform: translateY(-2px); }

/* ─── CROSS-LINKS (andere Angebote) ─── */
.crosslinks {
  background: var(--white);
  padding: 6rem 4rem;
}
.crosslinks-inner { max-width: 1200px; margin: 0 auto; }
.crosslinks-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 2.5rem;
}
.crosslinks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.crosslink-card {
  background: var(--sand);
  padding: 2.5rem;
  text-decoration: none;
  display: block;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.crosslink-card:hover { background: var(--ink); }
.crosslink-card:hover .crosslink-num,
.crosslink-card:hover .crosslink-name,
.crosslink-card:hover .crosslink-desc,
.crosslink-card:hover .crosslink-arrow { color: var(--white); }
.crosslink-num {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1rem;
  transition: color 0.3s;
}
.crosslink-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  transition: color 0.3s;
}
.crosslink-desc {
  font-size: 0.82rem;
  color: var(--warm-mid);
  line-height: 1.7;
  transition: color 0.3s;
}
.crosslink-arrow {
  position: absolute;
  bottom: 2rem; right: 2rem;
  font-size: 1.3rem;
  color: var(--stone);
  transition: color 0.3s, transform 0.3s;
}
.crosslink-card:hover .crosslink-arrow { transform: translate(4px, -4px); color: var(--white); }

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  padding: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(200,188,158,0.15);
}
.footer-logo { line-height: 1; }
.footer-logo svg { display: block; }
.footer-tagline {
  font-size: 0.72rem;
  color: var(--warm-mid);
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}
.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 2rem; }
  nav.scrolled { padding: 0.8rem 2rem; }
  .nav-links { display: none; }
  .page-hero { padding: 8rem 2rem 4rem; }
  .container, .container-narrow { padding: 5rem 2rem; }
  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .intro-aside { position: static; }
  .process-step { grid-template-columns: 3rem 1fr; gap: 1.5rem; }
  .forwho-grid { grid-template-columns: 1fr; }
  .cta-banner { grid-template-columns: 1fr; gap: 2.5rem; padding: 5rem 2rem; }
  .crosslinks { padding: 4rem 2rem; }
  .crosslinks-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 2rem; text-align: center; padding: 3rem 2rem; }
}
