:root {
  --tfm-rot: #c6302c;
  --tfm-rot-light: #d9514d;
  --tfm-rot-pale: #f7e8e8;
  --terracotta: #C17A5A;
  --terracotta-light: #D9A080;
  --terracotta-pale: #F2E4DA;
  --gold: #a0a0a0;
  --gold-light: #d9d9d9;
  --gold-pale: #f2f2f2;
  --sage: #7A8C72;
  --sage-light: #A3B49B;
  --sage-pale: #E8EDE6;
  --warm-dark: #2C2420;
  --warm-mid: #5C4A3A;
  --warm-text: #3D3028;
  --cream: #FAF6F0;
  --white: #FFFFFF;
  --border: rgba(193,122,90,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--cream);
  color: var(--warm-text);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--warm-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 70px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-left::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 0;
  width: 60px;
  height: 100%;
  background: linear-gradient(to right, var(--warm-dark), transparent);
  z-index: 3;
}

.hero-right {
  background: var(--terracotta-pale);
  position: relative;
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(217,217,217,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(193,122,90,0.3) 0%, transparent 50%);
}

.hero-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(217,217,217,0.15) 0%, rgba(193,122,90,0.08) 40%, transparent 70%);
  border: 1px solid rgba(217,217,217,0.2);
  animation: breathe 8s ease-in-out infinite;
}

.hero-orb-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(193,122,90,0.3);
  animation: breathe 8s ease-in-out infinite reverse;
}

.hero-word {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  color: rgba(193,122,90,0.35);
  animation: floatWord 12s ease-in-out infinite;
  user-select: none;
  white-space: nowrap;
}

.hero-word.cluster {
  font-family: 'Open Sans', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(198,48,44,0.45);
}

.hero-word:nth-child(3)  { font-size: 1rem;   top: 12%; left: 12%; animation-delay: 0s; }
.hero-word:nth-child(4)  { font-size: 0.85rem; top: 72%; left: 62%; animation-delay: -3s; }
.hero-word:nth-child(5)  { font-size: 0.9rem;  top: 82%; left: 18%; animation-delay: -6s; }
.hero-word:nth-child(6)  { font-size: 0.8rem;  top: 22%; left: 68%; animation-delay: -9s; }
.hero-word:nth-child(7)  { font-size: 0.95rem; top: 58%; left: 8%;  animation-delay: -4s; }

.hero-word:nth-child(8)  { top: 6%;  left: 38%; animation-delay: -1s;  animation-duration: 14s; }
.hero-word:nth-child(9)  { top: 30%; left: 5%;  animation-delay: -5s;  animation-duration: 11s; }
.hero-word:nth-child(10) { top: 48%; left: 60%; animation-delay: -8s;  animation-duration: 13s; }
.hero-word:nth-child(11) { top: 65%; left: 30%; animation-delay: -2s;  animation-duration: 15s; }
.hero-word:nth-child(12) { top: 85%; left: 52%; animation-delay: -7s;  animation-duration: 12s; }
.hero-word:nth-child(13) { top: 18%; left: 42%; animation-delay: -10s; animation-duration: 16s; }

@keyframes breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

@keyframes floatWord {
  0%, 100% { transform: translateY(0px); opacity: 0.4; }
  50% { transform: translateY(-12px); opacity: 0.7; }
}

.hero-telos {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.hero-telos-greek {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: var(--tfm-rot);
  line-height: 1;
  opacity: 0.6;
  display: block;
  animation: fadeInSlow 2s ease forwards;
}

.hero-telos-translation {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
  opacity: 0;
  animation: fadeInSlow 2s ease 0.8s forwards;
}

@keyframes fadeInSlow {
  to { opacity: 1; }
}

.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tfm-rot-light);
  margin-bottom: 32px;
  opacity: 0;
  animation: slideUp 1s ease 0.2s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 4.5vw, 5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 12px;
  opacity: 0;
  animation: slideUp 1s ease 0.4s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--tfm-rot-light);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(242,228,218,0.65);
  margin-bottom: 48px;
  opacity: 0;
  animation: slideUp 1s ease 0.6s forwards;
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--tfm-rot);
  margin-bottom: 36px;
  opacity: 0;
  animation: slideUp 1s ease 0.7s forwards;
}

.hero-intro {
  font-size: 0.95rem;
  color: rgba(242,228,218,0.75);
  line-height: 1.8;
  max-width: 440px;
  opacity: 0;
  animation: slideUp 1s ease 0.9s forwards;
}

.hero-intro strong {
  color: var(--cream);
  font-weight: 400;
}

.hero-cta {
  display: inline-block;
  margin-top: 48px;
  padding: 14px 36px;
  border: 1px solid var(--tfm-rot);
  color: var(--tfm-rot-light);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s ease;
  opacity: 0;
  animation: slideUp 1s ease 1.1s forwards;
}

.hero-cta:hover {
  background: var(--tfm-rot);
  color: var(--cream);
  letter-spacing: 0.22em;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* SCROLL INDICATOR */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(242,228,218,0.35);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInSlow 1s ease 2s forwards;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(193,122,90,0.4);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--terracotta-light);
  animation: scrollLine 2s ease-in-out 2s infinite;
}

@keyframes scrollLine {
  to { left: 100%; }
}

/* SECTION BASE */
section { position: relative; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}

/* BEGRIFFSERKLÄRUNG */
.begriffe {
  background: var(--white);
  padding: 120px 0;
}

.begriffe-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.begriffe-left {
  position: sticky;
  top: 60px;
}

.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tfm-rot);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--tfm-rot);
}

.begriffe-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--warm-dark);
  margin-bottom: 24px;
}

.begriffe-heading em {
  font-style: italic;
  color: var(--tfm-rot);
}

.begriffe-note {
  font-size: 0.8rem;
  color: var(--sage);
  line-height: 1.7;
  border-left: 2px solid var(--sage-light);
  padding-left: 16px;
}

.begriffe-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wort-karte {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  align-items: start;
  transition: background 0.3s ease;
}

.wort-karte:first-child { padding-top: 0; }
.wort-karte:last-child { border-bottom: none; }

.wort-griechisch {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--tfm-rot);
  line-height: 1;
  letter-spacing: -0.02em;
}

.wort-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}

.wort-latein {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
}

.wort-deutsch {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--warm-mid);
}

.wort-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--warm-text);
}

.wort-text strong {
  font-weight: 500;
  color: var(--warm-dark);
}

/* DIESE PHASE */
.phase {
  background: var(--warm-dark);
  padding: 140px 0;
  overflow: hidden;
  position: relative;
}

.phase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--terracotta), transparent);
}

.phase-bg-text {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28vw;
  font-weight: 300;
  color: rgba(193,122,90,0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}

.phase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  position: relative;
  z-index: 2;
}

.phase-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.phase-intro .section-label { color: var(--tfm-rot-light); }
.phase-intro .section-label::before { background: var(--tfm-rot-light); }

.phase-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 32px;
}

.phase-heading em {
  font-style: italic;
  color: var(--tfm-rot-light);
}

.phase-text {
  font-size: 0.95rem;
  color: rgba(242,228,218,0.7);
  line-height: 1.9;
  margin-bottom: 16px;
}

.phase-text strong {
  color: var(--cream);
  font-weight: 400;
}

.phase-items {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.phase-item {
  padding: 28px 32px;
  border: 1px solid rgba(193,122,90,0.15);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease;
}

.phase-item:hover {
  border-color: rgba(193,122,90,0.4);
}

.phase-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0;
  background: var(--tfm-rot);
  transition: height 0.4s ease;
}

.phase-item:hover::before { height: 100%; }

.phase-item-num {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--tfm-rot-light);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.phase-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 8px;
  display: block;
}

.phase-item-text {
  font-size: 0.85rem;
  color: rgba(242,228,218,0.55);
  line-height: 1.7;
}

/* ESSAY */
.essay {
  background: var(--cream);
  padding: 140px 0;
}

.essay-header {
  text-align: center;
  margin-bottom: 80px;
}

.essay-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--warm-dark);
  line-height: 1.1;
  margin-bottom: 16px;
}

.essay-title em {
  font-style: italic;
  color: var(--tfm-rot);
}

.essay-byline {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
}

.essay-ornament {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin: 24px 0 0;
}

.essay-ornament-line {
  width: 60px;
  height: 1px;
  background: var(--border);
}

.essay-ornament-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--terracotta);
}

.essay-body {
  max-width: 720px;
  margin: 0 auto;
}

.essay-section {
  margin-bottom: 60px;
}

.essay-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--warm-dark);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}

.essay-section-title::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--tfm-rot);
  flex-shrink: 0;
}

.essay-p {
  font-size: 1rem;
  line-height: 1.95;
  color: var(--warm-text);
  margin-bottom: 20px;
}

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

.essay-pullquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 300;
  color: var(--tfm-rot);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 56px 0;
  line-height: 1.4;
  position: relative;
  padding: 40px 60px;
}

.essay-pullquote::before {
  content: '\201C';
  font-size: 5rem;
  position: absolute;
  top: -20px;
  left: 40px;
  color: var(--terracotta-pale);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}

/* FUER THERAPEUTINNEN */
.therapeuten {
  background: var(--terracotta-pale);
  padding: 120px 0;
  position: relative;
}

.therapeuten::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--terracotta-light), transparent);
}

.therapeuten-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
}

.therapeuten-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  color: var(--warm-dark);
  line-height: 1.15;
  margin-bottom: 32px;
}

.therapeuten-heading em {
  font-style: italic;
  color: var(--tfm-rot);
}

.therapeuten-text {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--warm-text);
  margin-bottom: 16px;
}

.aspekte {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.aspekt {
  display: flex;
  gap: 20px;
  padding: 24px 28px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(193,122,90,0.15);
  backdrop-filter: blur(8px);
}

.aspekt-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--tfm-rot);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.aspekt-icon svg {
  width: 14px;
  height: 14px;
  stroke: white;
  fill: none;
  stroke-width: 1.5;
}

.aspekt-content { flex: 1; }

.aspekt-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--warm-dark);
  margin-bottom: 4px;
  display: block;
}

.aspekt-text {
  font-size: 0.82rem;
  color: var(--warm-mid);
  line-height: 1.7;
}

.therapeuten-sidebar {
  position: sticky;
  top: 60px;
}

.sidebar-card {
  background: var(--warm-dark);
  padding: 40px 36px;
  color: var(--cream);
}

.sidebar-card-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--tfm-rot-light);
  margin-bottom: 20px;
  display: block;
}

.sidebar-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--cream);
}

.sidebar-card-text {
  font-size: 0.82rem;
  color: rgba(242,228,218,0.65);
  line-height: 1.8;
  margin-bottom: 28px;
}

.sidebar-divider {
  width: 100%;
  height: 1px;
  background: rgba(193,122,90,0.3);
  margin: 24px 0;
}

.sidebar-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-author-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 400;
}

.sidebar-author-role {
  font-size: 0.72rem;
  color: rgba(242,228,218,0.5);
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.sidebar-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tfm-rot-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(198,48,44,0.4);
  padding-bottom: 2px;
}

/* KLINISCHES KONZEPT */
.klinisch {
  background: var(--white);
  padding: 140px 0;
  border-top: 1px solid var(--border);
}

.klinisch-header {
  margin-bottom: 72px;
  max-width: 720px;
}

.klinisch-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight: 300;
  color: var(--warm-dark);
  line-height: 1.15;
  margin-bottom: 24px;
}

.klinisch-heading em {
  font-style: italic;
  color: var(--tfm-rot);
}

.klinisch-lead {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--warm-mid);
  max-width: 640px;
  border-left: 2px solid var(--tfm-rot);
  padding-left: 20px;
}

.klinisch-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 72px;
  align-items: start;
}

.klinisch-main {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.klinisch-block {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.klinisch-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.klinisch-block-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--warm-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.klinisch-block-title::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--tfm-rot);
  flex-shrink: 0;
}

.klinisch-p {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--warm-text);
  margin-bottom: 14px;
}

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

.klinisch-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 60px;
}

.klinisch-merkmal-box {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 28px 28px 24px;
}

.klinisch-merkmal-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--tfm-rot);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.klinisch-merkmal-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--tfm-rot);
}

/* STRAW-Diagramm */
.klinisch-straw {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.straw-item {
  padding: 12px 16px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: start;
}

.straw-past {
  background: rgba(160,160,160,0.08);
  border-left: 2px solid var(--gold);
}

.straw-telo {
  background: var(--tfm-rot-pale);
  border-left: 2px solid var(--tfm-rot);
}

.straw-stage {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--warm-dark);
  padding-top: 2px;
  line-height: 1.3;
}

.straw-telo .straw-stage {
  color: var(--tfm-rot);
  font-weight: 600;
}

.straw-name {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--warm-dark);
  margin-bottom: 3px;
}

.straw-desc {
  display: block;
  font-size: 0.72rem;
  color: var(--warm-mid);
  line-height: 1.5;
}

/* Klinische Listen */
.klinisch-liste {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.klinisch-liste li {
  font-size: 0.82rem;
  color: var(--warm-text);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.klinisch-liste li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 1px;
  background: var(--tfm-rot);
}

.klinisch-liste-dd li {
  color: var(--warm-mid);
}

.klinisch-liste-dd li::before {
  background: var(--gold);
}

.klinisch-dd-note {
  font-size: 0.75rem;
  color: var(--sage);
  line-height: 1.7;
  margin-top: 16px;
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

/* FOOTER */
footer {
  background: var(--warm-dark);
  padding: 60px 0;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(193,122,90,0.4), transparent);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.05em;
}

.footer-logo span {
  color: var(--tfm-rot);
}

.footer-meta {
  font-size: 0.72rem;
  color: rgba(242,228,218,0.35);
  text-align: right;
  line-height: 1.8;
}

.footer-meta a {
  color: var(--tfm-rot-light);
  text-decoration: none;
}

.footer-meta a:hover { text-decoration: underline; }

/* ANIMATE ON SCROLL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 300px; order: -1; }
  .hero-left { padding: 60px 40px; }
  .hero-left::after { display: none; }
  .begriffe-inner { grid-template-columns: 1fr; gap: 48px; }
  .begriffe-left { position: static; }
  .phase-grid { grid-template-columns: 1fr; gap: 60px; }
  .therapeuten-inner { grid-template-columns: 1fr; }
  .therapeuten-sidebar { position: static; }
  .klinisch-grid { grid-template-columns: 1fr; }
  .klinisch-sidebar { position: static; }
  .container { padding: 0 32px; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer-meta { text-align: center; }
  .wort-karte { grid-template-columns: 1fr; gap: 16px; }
}
