/* Page-specific styles for #about-page */

body.about-page .page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--surface) 0%, white 100%);
  border-bottom: 1px solid var(--border);
}

body.about-page .hero-content-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

body.about-page .page-label {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

body.about-page .page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 52px);
  margin: 0 0 16px;
  color: var(--text);
}

body.about-page .hero-subtitle {
  font-size: 20px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Founder Section */
body.about-page .founder-section {
  padding: 80px 0;
  background: white;
}

body.about-page .founder-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
}

body.about-page .founder-image-wrapper {
  position: sticky;
  top: 100px;
}

body.about-page .founder-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

body.about-page .founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.about-page .founder-credentials {
  text-align: center;
}

body.about-page .founder-credentials h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin: 0 0 8px;
  color: var(--text);
}

body.about-page .founder-title {
  font-size: 18px;
  color: var(--primary);
  font-weight: 600;
  margin: 0 0 4px;
}

body.about-page .founder-licenses {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

body.about-page .founder-bio h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 42px);
  margin: 0 0 30px;
  color: var(--text);
}

body.about-page .founder-quote {
  background: linear-gradient(135deg, rgba(0,184,148,0.05) 0%, rgba(253,203,110,0.05) 100%);
  border-left: 4px solid var(--primary);
  padding: 24px 30px;
  margin: 0 0 30px;
  border-radius: 8px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
}

body.about-page .founder-bio p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 24px;
}

body.about-page .founder-personal {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: 30px;
}

/* Approach Section */
body.about-page .approach-section {
  padding: 80px 0;
  background: var(--surface);
}

body.about-page .approach-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

body.about-page .approach-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 42px);
  margin: 0 0 16px;
  color: var(--text);
}

body.about-page .approach-header p {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.7;
}

body.about-page .approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

body.about-page .approach-card {
  background: white;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

body.about-page .approach-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

body.about-page .approach-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-warm);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

body.about-page .approach-icon svg {
  width: 35px;
  height: 35px;
  color: var(--primary-dark);
}

body.about-page .approach-card h3 {
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--text);
}

body.about-page .approach-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Values Section */
body.about-page .values-section {
  padding: 80px 0;
  background: white;
}

body.about-page .values-section h2 {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 42px);
  margin: 0 0 60px;
  color: var(--text);
}

body.about-page .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

body.about-page .value-item {
  position: relative;
  padding-left: 60px;
}

body.about-page .value-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

body.about-page .value-icon i {
  font-size: 24px;
}

body.about-page .value-item h3 {
  font-size: 20px;
  margin: 0 0 8px;
  color: var(--text);
}

body.about-page .value-item p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
body.about-page .cta-section {
  padding: 80px 0;
  background: var(--surface);
}

body.about-page .cta-card-large {
  background: white;
  border-radius: 24px;
  padding: 60px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
}

body.about-page .cta-card-large h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 42px);
  margin: 0 0 16px;
  color: var(--text);
}

body.about-page .cta-card-large p {
  font-size: 20px;
  color: var(--text-light);
  margin: 0 0 32px;
}

body.about-page .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  body.about-page .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  body.about-page .founder-image-wrapper {
    position: static;
    max-width: 300px;
    margin: 0 auto;
  }
  
  body.about-page .approach-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  body.about-page .approach-card {
    padding: 24px 16px;
  }
  
  body.about-page .approach-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
  }
  
  body.about-page .approach-icon svg {
    width: 25px;
    height: 25px;
  }
  
  body.about-page .approach-card h3 {
    font-size: 18px;
  }
  
  body.about-page .approach-card p {
    font-size: 14px;
  }
  
  body.about-page .values-grid {
    grid-template-columns: 1fr;
  }
  
  body.about-page .cta-card-large {
    padding: 40px 24px;
  }
  
  body.about-page .cta-buttons {
    flex-direction: column;
  }
  
  body.about-page .cta-buttons .btn {
    width: 100%;
  }
}