/* About page — image left, content right; credentials below */

.page-about .nav a.nav-active {
  color: var(--text);
  font-weight: 500;
}

.page-about .about-hero-section {
  padding: 4rem 0 3rem;
  background: var(--cream);
}

.page-about .about-hero-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3.5rem;
  align-items: start;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-about .about-hero-image {
  position: sticky;
  top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 12px 40px rgba(63, 58, 54, 0.08);
}

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

.page-about .about-hero-content h2 {
  margin: 0 0 1.25rem;
  color: var(--text);
}

.page-about .about-hero-content .about-text {
  margin-bottom: 1.25rem;
}

.page-about .about-rest-section {
  padding: 2rem 0 4rem;
  /* background: var(--beige); */
}

.page-about .about-rest-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-about .about-rest-section .about-text {
  margin-bottom: 1.25rem;
}

.page-about .about-rest-section .about-text:last-of-type {
  margin-bottom: 0;
}

.page-about .about-credentials {
  padding: 4rem 0 5rem;
  background: var(--beige);
}

.page-about .about-credentials-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-about .about-credentials-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  color: var(--text);
  margin: 0 0 2rem;
  text-align: center;
}

.page-about .about-cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.page-about .about-cred-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(216, 206, 195, 0.6);
  box-shadow: 0 4px 20px rgba(63, 58, 54, 0.05);
  transition: box-shadow 0.25s ease;
}

.page-about .about-cred-card:hover {
  box-shadow: 0 8px 32px rgba(63, 58, 54, 0.08);
}

.page-about .about-cred-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--sage-deep);
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--taupe);
}

.page-about .about-cred-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-about .about-cred-card li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  padding-left: 0;
}

.page-about .about-cred-card li:last-child {
  margin-bottom: 0;
}

.page-about .about-cred-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.page-about .about-cred-card strong {
  color: var(--text);
  font-weight: 500;
}

.page-about .about-cta-wrap {
  text-align: center;
  margin-top: 3rem;
}

.page-about .about-cta-wrap .btn {
  margin-top: 0;
}

@media (max-width: 900px) {
  .page-about .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .page-about .about-hero-image {
    position: relative;
    top: 0;
    max-width: 400px;
    margin: 0 auto;
  }

  .page-about .about-cred-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .page-about .about-cred-card {
    padding: 1.75rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .page-about .about-hero-section {
    padding: 3rem 0 2rem;
  }

  .page-about .about-hero-image {
    max-width: 100%;
  }

  .page-about .about-rest-section {
    padding: 1.5rem 0 3rem;
  }

  .page-about .about-credentials {
    padding: 3rem 0 4rem;
  }

  .page-about .about-credentials-title {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 360px) {
  .page-about .about-hero-inner {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .page-about .about-hero-section {
    padding: 2.5rem 0 1.75rem;
  }

  .page-about .about-rest-inner {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .page-about .about-credentials-inner {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .page-about .about-credentials-title {
    font-size: 1.25rem;
  }

  .page-about .about-cred-card {
    padding: 1.5rem 1.25rem;
  }
}
