/* ==========================================================================
   About Us — page-specific components. Reuses .hero--service and .benefits
   from service-page.css (both are generic enough to fit here as-is); every
   other component on this page is new and lives here.
   ========================================================================== */

.hero-photo--chris {
  background-image: url("../assets/images/chris-earhart.webp");
  background-size: cover;
  background-position: center 30%;
}

/* Shorter than the default: "Financial Confidence." is a long accent line
   for a 3-line hero, same class of fix as the tax pages. */
.hero--service .hero-text h1 { font-size: 1.75rem; }
@media (max-width: 1024px) {
  .hero--service .hero-text h1 { font-size: clamp(1.9rem, 4vw, 2.5rem); }
}
@media (max-width: 640px) {
  .hero--service .hero-text h1 { font-size: 1.55rem; }
}

/* ---------- Our Story: text-only, deliberately narrow, deliberately not
   filled with a photo. ---------- */
.story {
  padding: 72px 0;
  background: var(--white);
}
.story-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.story-inner h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.3rem);
  margin: 10px 0 20px;
}
.story-inner p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 16px;
  text-align: left;
}
.story-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: var(--green-700);
  font-weight: 700;
}
.story-link svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.story-link:hover { color: var(--green-800); }
.story-link:hover svg { transform: translateX(3px); }

/* ---------- The DataWise Difference: light off-white panel; reuses
   .benefits' grid mechanics but with a neutral, not green-tinted, bg and a
   plain icon (no white circle backing) since these are differentiators,
   not service cards. ---------- */
.difference { background: var(--gray-100); }
.difference .benefit-item .icon-wrap { background: var(--white); width: 44px; height: 44px; }
.difference .benefit-item .icon-wrap svg { width: 20px; height: 20px; }
.difference .benefit-item h3 { font-size: 0.98rem; }
.difference .benefit-item p { font-size: 0.9rem; }

/* ---------- Our Philosophy: circular icons connected by arrows ---------- */
.philosophy { padding: 72px 0; background: var(--white); }

.philosophy-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 4px;
  margin: 44px 0 32px;
}
.philosophy-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 140px;
  text-align: center;
}
.philosophy-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--green-accent);
  background: var(--green-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.philosophy-icon svg { width: 24px; height: 24px; color: var(--green-700); }
.philosophy-step span { font-weight: 600; font-size: 0.88rem; color: var(--ink); }
.philosophy-arrow {
  color: var(--green-accent);
  align-self: center;
  margin-top: 18px;
  flex-shrink: 0;
}
.philosophy-arrow svg { width: 22px; height: 22px; }
.philosophy-note {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .philosophy-row { flex-direction: column; gap: 16px; }
  .philosophy-arrow { transform: rotate(90deg); margin: 0; }
}

/* ---------- Meet Chris Earhart: compact bio, the only other place the
   photo appears. ---------- */
.team { padding: 64px 0; background: var(--gray-100); }
.team-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  max-width: 720px;
  margin: 40px auto 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-size: cover;
  background-position: center 25%;
  flex-shrink: 0;
}
.team-content h3 { font-size: 1.25rem; margin-bottom: 2px; }
.team-title { color: var(--green-700); font-weight: 600; font-size: 0.9rem; margin-bottom: 12px; }
.team-content p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 10px; }

@media (max-width: 640px) {
  .team-inner { grid-template-columns: 1fr; text-align: center; padding: 28px 24px; }
  .team-photo { margin: 0 auto; }
}

/* ---------- Compliance -> Oversight -> Advisory: connected cards ---------- */
.growth-path { padding: 72px 0; background: var(--white); }

.growth-path-row {
  display: flex;
  align-items: stretch;
  gap: 4px;
  margin: 44px 0 32px;
}
.growth-path-card {
  flex: 1;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
}
.growth-path-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.growth-path-card h3 {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 8px;
}
.growth-path-card p { color: var(--ink-soft); font-size: 0.95rem; }
.growth-path-connector {
  display: flex;
  align-items: center;
  color: var(--green-accent);
  flex-shrink: 0;
}
.growth-path-connector svg { width: 22px; height: 22px; }
.growth-path-cta { text-align: center; }
.growth-path-cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-700);
  font-weight: 700;
  font-size: 1rem;
}
.growth-path-cta a:hover { color: var(--green-800); }
.growth-path-cta svg { width: 16px; height: 16px; }

@media (max-width: 800px) {
  .growth-path-row { flex-direction: column; }
  .growth-path-connector { transform: rotate(90deg); align-self: center; }
}

/* ---------- Industries + FAQ: side-by-side on large desktop ---------- */
.industries-faq { padding: 72px 0; background: var(--gray-100); }

.industries-faq-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 40px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  background: var(--white);
  border-radius: 10px;
  text-align: center;
  color: var(--ink);
}
.industry-item .icon-wrap { width: 44px; height: 44px; }
.industry-item .icon-wrap svg { width: 20px; height: 20px; }
.industry-item span { font-weight: 600; font-size: 0.88rem; }
a.industry-item:hover { box-shadow: var(--shadow-sm); }
.industries-note {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  text-align: center;
}

.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 4px 0;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 4px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg {
  width: 18px;
  height: 18px;
  color: var(--green-600);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-item p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  padding: 0 4px 16px;
}
.faq-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--green-700);
  font-weight: 700;
}
.faq-more svg { width: 16px; height: 16px; }
.faq-more:hover { color: var(--green-800); }

@media (max-width: 1024px) {
  .industries-faq-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 640px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
