/* ── christian.twig — Gründer-Seite ── */

/* ── Hero ── */
.ch-hero {
  border-bottom: 1px solid var(--c-border-subtle);
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 1s 0.05s var(--ease-cine) forwards;
}

/* Mobile: text oben, Foto unten */
.ch-hero-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.ch-hero-text {
  padding: clamp(2.5rem, 7vw, 5rem) var(--space-lg) var(--space-lg);
  text-align: left;
}
.ch-label, .ch-name, .ch-tagline {
  text-align: left;
}

/* Foto: volle Breite, feste Höhe, Gesicht mittig-oben */
.ch-photo-wrap {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: var(--c-dark-elevated);
}

.ch-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: grayscale(15%) brightness(0.88);
}

.ch-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(6,13,8,0.65) 100%);
  pointer-events: none;
}

/* Desktop: Text links, Foto rechts, bündig am unteren Rand */
@media (min-width: 720px) {
  .ch-hero-inner {
    flex-direction: row;
    align-items: stretch;
    min-height: 460px;
  }

  .ch-hero-text {
    flex: 1;
    text-align: left;
    padding: clamp(3rem, 7vw, 5.5rem) var(--space-xl) clamp(2.5rem, 5vw, 4rem) var(--space-lg);
  }

  .ch-photo-wrap {
    width: 340px;
    flex-shrink: 0;
    height: 420px;
    border-radius: 8px 8px 0 0;
  }

  .ch-photo-wrap::after {
    background: linear-gradient(to bottom, transparent 65%, rgba(6,13,8,0.5) 100%);
  }
}

.ch-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-sm);
}

.ch-name {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(241, 237, 227, 0.95);
  margin-bottom: var(--space-sm);
}

.ch-name em {
  font-style: italic;
  color: var(--c-gold-light);
}

.ch-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--c-text-muted);
  letter-spacing: 0.01em;
}

/* ── Wrapper ── */
.ch-wrap {
  max-width: 1060px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg) calc(var(--space-xl) * 2);
}

/* ── Bio grid ── */
.ch-bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  opacity: 0;
  animation: fadeUp 0.9s 0.2s var(--ease-cine) forwards;
}

@media (min-width: 720px) {
  .ch-bio-grid {
    grid-template-columns: 1.6fr 1fr;
    align-items: start;
  }
}

.ch-bio p {
  font-size: var(--text-md);
  color: var(--c-text-muted);
  line-height: 1.85;
  margin-bottom: var(--space-md);
}

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

/* ── Sidebar ── */
.ch-sidebar {
  padding-top: 4px;
}

.ch-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.ch-fact {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.ch-fact-num {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 300;
  color: var(--c-gold-light);
  line-height: 1;
  flex-shrink: 0;
  min-width: 3.5ch;
}

.ch-fact-text {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  line-height: 1.5;
}

.ch-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.ch-badge {
  display: inline-block;
  padding: 5px 11px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(168, 196, 173, 0.55);
}

/* ── Divider ── */
.ch-divider {
  height: 1px;
  background: var(--c-border-subtle);
  margin: var(--space-xl) 0;
}

/* ── Approach ── */
.ch-approach {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  opacity: 0;
  animation: fadeUp 0.9s 0.35s var(--ease-cine) forwards;
}

@media (min-width: 720px) {
  .ch-approach {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.ch-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: rgba(241, 237, 227, 0.95);
  margin-bottom: var(--space-md);
}

.ch-section-title em {
  font-style: italic;
  color: var(--c-gold-light);
}

.ch-approach-text p {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.ch-approach-text p:last-child { margin-bottom: 0; }

.ch-approach-text .section-label {
  display: block;
  margin-bottom: 4px;
}

.ch-mp .section-label {
  display: block;
  margin-bottom: 4px;
}

.ch-approach-text strong {
  font-weight: 400;
  color: rgba(241, 237, 227, 0.75);
}

/* ── Methods list ── */
.ch-methods .col-label {
  display: block;
  margin-bottom: 2rem !important;
}

.ch-method-list {
  margin-top: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.ch-method {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ch-method-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--c-gold);
  opacity: 0.75;
}

.ch-method-icon svg {
  width: 100%;
  height: 100%;
}

.ch-method strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 400;
  color: rgba(241, 237, 227, 0.85);
  margin-bottom: 2px;
}

.ch-method span {
  font-size: var(--text-xs);
  color: rgba(168, 196, 173, 0.50);
  line-height: 1.55;
}

/* ── magic places section ── */
.ch-mp {
  opacity: 0;
  animation: fadeUp 0.9s 0.5s var(--ease-cine) forwards;
}

.ch-mp-title {
  max-width: 560px;
}

.ch-mp-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 720px;
  margin-bottom: var(--space-md);
}

@media (min-width: 640px) {
  .ch-mp-body { grid-template-columns: 1fr 1fr; }
}

.ch-mp-body p {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  line-height: 1.8;
}

.ch-mp-body strong {
  font-weight: 400;
  color: rgba(241, 237, 227, 0.75);
}

.ch-mp-meta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.ch-mp-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  font-size: var(--text-xs);
  color: rgba(168, 196, 173, 0.50);
}

.ch-mp-tag svg {
  width: 13px;
  height: 13px;
  color: var(--c-gold);
  opacity: 0.7;
  flex-shrink: 0;
}

/* ── CTA ── */
.ch-cta {
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s var(--ease-cine) forwards;
}

.ch-cta-sub {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(168, 196, 173, 0.40);
  margin-bottom: var(--space-sm);
}

.ch-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: rgba(241, 237, 227, 0.95);
  margin-bottom: var(--space-lg);
}

.ch-cta-title em {
  font-style: italic;
  color: var(--c-gold-light);
}

.ch-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

.ch-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  background: var(--c-gold);
  color: var(--c-dark);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 100px;
  transition: background 0.2s var(--ease), opacity 0.2s var(--ease);
}

.ch-btn-primary:hover { background: var(--c-gold-light); }

.ch-btn-primary svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s var(--ease);
}

.ch-btn-primary:hover svg { transform: translateX(3px); }

.ch-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 24px;
  background: transparent;
  color: var(--c-text-muted);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  text-decoration: none;
  border: 1px solid var(--c-border);
  border-radius: 100px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.ch-btn-secondary:hover {
  color: rgba(168, 196, 173, 0.75);
  border-color: rgba(156, 126, 81, 0.28);
}

.ch-btn-secondary svg {
  width: 15px;
  height: 15px;
  color: var(--c-gold);
  opacity: 0.65;
}

/* ── Footer ── */
.ch-footer {
  border-top: 1px solid var(--c-border-subtle);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  justify-content: center;
}

/* ── Animation ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
