/* ============================================================
   BEYOND THE SERP â about.css
   Styles exclusive to the About page.
   All selectors match the actual class names in template-about.php
   ============================================================ */

/* âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   GOAL / VISION CARD SECTION
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.goal-section {
  background: hsl(263, 73%, 52%, 0.04);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

/* âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   VALUE CARDS (Four values)
   Template uses: class="value-card card-glass p-4"
   Heading:       class="value-title" (h4)
   Body:          class="value-body"  (p)
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.value-card {
  border-radius: var(--radius);
  padding: 28px;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  height: 100%;
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: hsl(263, 73%, 52%, 0.1);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.value-card h3,
.value-card h4,
.value-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.value-card p,
.value-body {
  font-size: 0.875rem;
  color: hsl(263, 50%, 12%, 0.65);
  line-height: 1.65;
  margin: 0;
}


/* âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   TEAM PLACEHOLDER
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.team-placeholder {
  border-radius: var(--radius);
  border: 1px dashed var(--border-strong);
  background: hsl(243, 100%, 97%, 0.3);
  padding: clamp(48px, 8vw, 80px);
  text-align: center;
}

.team-placeholder .eyebrow {
  justify-content: center;
  text-align: center;
  margin-bottom: 12px;
}

.team-placeholder h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 12px;
}

.team-placeholder p {
  color: hsl(263, 50%, 12%, 0.6);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}


/* âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   PAGE HERO â template uses class="about-hero section-y"
   Image wrap: class="about-hero-img-wrap"
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.about-hero-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-elevated);
  aspect-ratio: 4 / 3;
}

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


/* âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   MISSION SECTION â template uses class="section-y mission-section"
   Body text:  class="mission-text"
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.mission-section {
  border-top: 1px solid var(--border);
}

.mission-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.05rem;
  color: hsl(263, 50%, 12%, 0.75);
  line-height: 1.75;
}

.mission-text strong {
  color: var(--foreground);
}


/* âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   FOUNDER SECTION â template uses class="section-y founder-section"
   Bio block: class="founder-bio"
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.founder-section {
  border-top: 1px solid var(--border);
}

.founder-bio {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: hsl(263, 50%, 12%, 0.7);
  font-size: 1.05rem;
  line-height: 1.75;
}

.founder-bio p {
  margin: 0;
}

.founder-bio strong {
  color: var(--foreground);
}

.founder-bio-signature {
  padding-top: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--foreground);
}


/* âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   VALUES SECTION â template uses class="section-y values-section"
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.values-section {
  border-top: 1px solid var(--border);
}


/* âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   CTA BLOCK helpers
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */
.cta-inner-wrap {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.cta-eyebrow {
  margin-bottom: 20px;
}


/* âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
   FOUNDER IMAGE CARD â used in both hero and founder section
   Template uses: class="founder-img-wrap"
                  class="founder-img-overlay"
                  class="founder-caption"
   (Base styles already in common.css; override here if needed)
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */