/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* --- About Hero --- */
.about-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--ivory);
}

.about-hero .hero-bg {
  position: absolute;
  inset: 0;
}

.about-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 24px;
}

.about-hero-content .glass-pill {
  margin-bottom: var(--space-md);
}

.about-hero-content .glass-pill .label {
  color: var(--volt);
  margin-bottom: 0;
}

.about-hero-content h1 {
  color: var(--ivory);
  font-size: 88px;
  white-space: nowrap;
  margin-bottom: var(--space-md);
}

.about-hero-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 19px;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- Mission & Vision --- */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.mission-text .label {
  color: var(--royal);
  display: block;
  margin-bottom: var(--space-xs);
}

.mission-text h2 {
  font-size: 40px;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}

.mission-text p {
  color: var(--charcoal);
  font-size: 17px;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: var(--space-lg);
}

.mission-image {
  border-radius: 20px;
  overflow: hidden;
  transform: rotate(1.5deg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* Stats Row */
.stats-row {
  display: flex;
  gap: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--ivory-muted);
}

.stat-block {
  position: relative;
  padding-right: var(--space-lg);
}

.stat-block:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--ivory-muted);
}

.stat-number {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 32px;
  color: var(--royal);
  line-height: 1.2;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
}

/* --- Core Beliefs Accordion --- */
.accordion {
  max-width: 720px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid var(--ivory-muted);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  min-height: 44px;
}

.accordion-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
}

.accordion-header svg {
  width: 20px;
  height: 20px;
  color: var(--slate);
  transition: transform 0.3s var(--ease-spring);
  flex-shrink: 0;
}

.accordion-item.active .accordion-header svg {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-spring);
}

.accordion-body-inner {
  padding: 0 0 20px 0;
  color: var(--charcoal);
  font-size: 17px;
  line-height: 1.7;
}

/* --- Leadership Section --- */
.leader-featured {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.leader-featured-img {
  width: 280px;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
}

.leader-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.leader-featured-info h3 {
  font-size: 28px;
  margin-bottom: 4px;
}

.leader-featured-info .label {
  color: var(--royal);
  display: block;
  margin-bottom: var(--space-sm);
}

.leader-featured-info p {
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.leader-social {
  display: flex;
  gap: 12px;
}

.leader-social a {
  color: var(--slate);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
}

.leader-social a:hover {
  color: var(--royal);
}

.leader-social a svg {
  width: 20px;
  height: 20px;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.staff-card {
  text-align: center;
}

.staff-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: var(--space-sm);
}

.staff-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.staff-card .label {
  color: var(--royal);
}

/* --- Values Section --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--grid-gap);
}

.value-block {
  padding: var(--space-lg) var(--space-md);
}

.value-block .value-number {
  font-family: var(--font-mono);
  font-size: 48px;
  color: var(--royal);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.value-block h3 {
  color: var(--charcoal);
  font-size: 24px;
  margin-bottom: var(--space-xs);
}

.value-block p {
  color: var(--slate);
  font-size: 16px;
  line-height: 1.7;
}

/* --- Visit CTA Section --- */
.visit-cta {
  position: relative;
  padding: var(--section-pad);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  background-color: var(--ivory);
}

.visit-cta .hero-bg {
  position: absolute;
  inset: 0;
}

.visit-cta .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.visit-cta-content {
  position: relative;
  z-index: 1;
}

.visit-cta h2 {
  color: var(--ivory);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.visit-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 19px;
  margin-bottom: var(--space-lg);
}

/* --- Responsive --- */
@media (max-width: 1024px) and (min-width: 769px) {
  .about-hero-content h1 {
    font-size: clamp(48px, 8vw, 72px);
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .about-hero-content h1 {
    font-size: 48px;
    white-space: normal;
  }

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

  .mission-image {
    transform: rotate(0);
  }

  .stats-row {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .stat-block {
    padding-right: 0;
  }

  .stat-block:not(:last-child)::after {
    display: none;
  }

  .leader-featured {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--space-md);
  }

  .leader-featured-img {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }

  .leader-social {
    justify-content: center;
  }

  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .visit-cta h2 {
    font-size: 30px;
  }
}
