/* about.css - About page styles
 * Owns: hero, story, approach, CTA sections
 * Does NOT own: nav, footer, buttons, typography tokens (in styles.css)
 */

/* ── About Hero ───────────────────────────────────────────────── */
.about-hero {
  padding: 120px 24px 100px;
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-deep) 100%);
  position: relative;
  overflow: hidden;
}

.about-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -60px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--accent-bg);
  opacity: 0.4;
  z-index: 0;
}

.about-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-headshot {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(139, 111, 71, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(139, 111, 71, 0.1);
  margin-bottom: 28px;
  display: block;
}

.about-hero-text .section-label {
  margin-bottom: 16px;
}

.about-hero-text h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.15;
  color: var(--fg);
  letter-spacing: -0.7px;
  margin-bottom: 20px;
}

.about-hero-text .hero-role {
  font-size: 1rem;
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: 0.2px;
}

.about-hero-text p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

.about-hero-credentials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.credential-card {
  background: var(--bg);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 10px;
  padding: 18px 20px;
  transition: all var(--transition-smooth);
}

.credential-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  border-color: rgba(45, 80, 22, 0.15);
}

.credential-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}

.credential-value {
  font-size: 0.9rem;
  color: var(--fg);
  font-weight: 500;
  line-height: 1.4;
}

/* ── Story (single-column narrative) ───────────────────────────── */
.about-story {
  padding: 100px 24px;
  background: var(--bg);
}

.about-story-inner {
  max-width: 680px;
  margin: 0 auto;
}

.about-story-inner p {
  color: var(--fg-muted);
  line-height: 1.85;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-story-inner p:last-child {
  margin-bottom: 0;
}

.about-story-inner em {
  font-style: italic;
  font-weight: 500;
  color: var(--fg);
}

/* ── Approach Block (3 principles with quote header) ─────────── */
.about-approach {
  padding: 100px 24px;
  background: var(--bg-deep);
}

.about-approach-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.about-approach-header {
  max-width: 680px;
  margin-bottom: 64px;
}

.about-approach-header .section-label {
  margin-bottom: 12px;
}

.approach-quote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.6;
  color: var(--fg-muted);
  margin-bottom: 24px;
  padding: 0;
  border: none;
}

.approach-quote::before {
  content: '\u201C';
  color: var(--accent);
  margin-right: 4px;
}

.approach-quote::after {
  content: '\u201D';
  color: var(--accent);
  margin-left: 4px;
}

.about-approach-header h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--fg);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.about-approach-header > p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.approach-card {
  background: var(--bg);
  border-radius: 12px;
  padding: 44px 36px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all var(--transition-smooth);
}

.approach-card:hover {
  transform: translateY(-5px);
  border-color: rgba(45, 80, 22, 0.12);
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
}

.approach-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--accent-light);
  opacity: 0.5;
  display: block;
  margin-bottom: 14px;
}

.approach-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--fg);
  margin-bottom: 12px;
}

.approach-card p {
  color: var(--fg-muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ── CTA Block ───────────────────────────────────────────────── */
.about-cta {
  padding: 100px 24px;
  background: var(--bg);
}

.about-cta-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.about-cta-inner h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--fg);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.about-cta-inner p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

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

  .about-hero-credentials {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .credential-card {
    flex: 1;
    min-width: 180px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding: 80px 20px 60px;
  }

  .about-story {
    padding: 80px 20px;
  }

  .about-approach {
    padding: 80px 20px;
  }

  .about-cta {
    padding: 80px 20px;
  }

  .about-hero-credentials {
    flex-direction: column;
  }
}