/* ========================================================================
   LUMIS ENERGIE — ueber-uns.css
   Menschen-Seite · Hauptprofil · Team-Grid · Werte
   ======================================================================== */

.about-hero { background: var(--navy); padding: 56px 0; text-align: center; }
.about-hero h1 { margin-bottom: 14px; color: #fff; }
.about-hero p { color: rgba(255,255,255,0.75); font-size: 1.15rem; max-width: 54ch; margin: 0 auto; }

/* Hauptprofil */
.profile { display: grid; grid-template-columns: 340px 1fr; gap: 44px; align-items: center; }
.profile-photo img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--lumis-radius-lg); box-shadow: var(--lumis-shadow-lg); }
.profile-photo .photo-placeholder { width: 100%; aspect-ratio: 1; border-radius: var(--lumis-radius-lg); background: var(--lumis-orange-light); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; color: var(--lumis-orange); }
.profile-body .eyebrow { display: block; margin-bottom: 8px; }
.profile-body h2 { margin-bottom: 16px; }
.profile-body p { color: var(--lumis-text); margin-bottom: 20px; max-width: 56ch; }
.profile-facts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.profile-facts .fact { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.profile-facts .fact span { font-size: 1.2rem; }

/* Team-Grid */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 32px; }
.team-card { display: flex; gap: 18px; align-items: center; background: var(--lumis-white); border: 1px solid var(--lumis-border); border-radius: var(--lumis-radius-md); padding: 20px; box-shadow: var(--lumis-shadow); }
.team-card img, .team-card .team-ph { width: 84px; height: 84px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.team-card .team-ph { background: var(--lumis-orange-light); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: var(--lumis-orange); }
.team-card h4 { font-family: var(--font-body); font-weight: 700; }
.team-card .team-role { font-size: 0.85rem; color: var(--lumis-text-muted); margin-bottom: 6px; }
.team-card p { font-size: 0.9rem; color: var(--lumis-text-muted); }

/* Werte */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 32px; }
.value-card { text-align: center; padding: 28px 22px; }
.value-card .value-icon { font-size: 2rem; margin-bottom: 12px; }
.value-card h3 { margin-bottom: 8px; font-family: var(--font-display); }
.value-card p { color: var(--lumis-text-muted); font-size: 0.95rem; }

/* CTA */
.about-cta { text-align: center; background: var(--lumis-accent-bg); border-radius: var(--lumis-radius-lg); padding: 44px; }
.about-cta h2 { margin-bottom: 12px; }
.about-cta p { color: var(--lumis-text-muted); margin-bottom: 22px; }
.about-cta .cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 820px) {
  .profile { grid-template-columns: 1fr; gap: 26px; text-align: center; }
  .profile-photo { max-width: 280px; margin: 0 auto; }
  .profile-facts { align-items: center; }
  .profile-body p { margin-left: auto; margin-right: auto; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
