/* =============================================================
   Peter Lock — Über mich Seite (ueber-uns.css)
   ============================================================= */

/* ---- About Hero ------------------------------------------- */
.about-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2420 100%);
  padding: 80px 0;
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}

.about-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
  font-weight: 600;
}

.about-hero-text h1 {
  color: #fff;
  margin-bottom: 1.25rem;
}

.about-lead {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.about-hero-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Values Section --------------------------------------- */
.values-section {
  background: var(--color-bg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 2.5rem;
}

.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.value-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-accent);
}

.value-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.value-card p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* ---- Story Section ---------------------------------------- */
.story-section {
  background: #fff;
}

.story-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: center;
}

.story-photo {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-text blockquote {
  border-left: 4px solid var(--color-accent);
  padding-left: 20px;
  margin: 24px 0;
  font-size: 1.05rem;
  font-style: italic;
  color: #555;
  line-height: 1.65;
}

/* ---- Timeline Section ------------------------------------- */
.timeline-section {
  background: var(--color-bg);
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 2.5rem auto 0;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--color-border);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -34px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 3px solid var(--color-bg);
  box-shadow: 0 0 0 2px var(--color-accent);
}

.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.timeline-item h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* ---- Philosophy Section ----------------------------------- */
.philosophy-section {
  background: #fff;
  text-align: center;
}

.philosophy-quote {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: #333;
  line-height: 1.55;
  padding: 0 24px;
  position: relative;
}

.philosophy-quote::before {
  content: '\201C';
  font-size: 6rem;
  color: var(--color-accent-light);
  position: absolute;
  top: -20px;
  left: 0;
  line-height: 1;
  font-style: normal;
}

.philosophy-author {
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--color-accent);
  font-weight: 600;
  font-style: normal;
}

/* ---- Dual Path CTA ---------------------------------------- */
.about-cta-section {
  background: var(--color-bg);
}

.about-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 2rem;
}

.about-cta-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.about-cta-card.premium {
  border: 2px solid var(--color-accent);
}

.about-cta-card svg {
  color: var(--color-accent);
}

.about-cta-card h3 {
  margin: 0;
}

.about-cta-card p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* ---- Responsive ------------------------------------------ */
@media (max-width: 768px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
  }

  .about-hero-img {
    max-width: 300px;
    margin: 0 auto;
    aspect-ratio: 1/1;
    order: -1;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-photo {
    max-width: 280px;
    margin: 0 auto;
    aspect-ratio: 1/1;
  }

  .about-cta-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 56px 0;
  }
}
