/* ============================================================
   Moore Power — About Page Styles
   ============================================================ */

.nav-active {
  color: var(--gold) !important;
  background: rgba(245,192,53,.1) !important;
}

/* ── Page Header ──────────────────────────────────────────── */
.page-header {
  position: relative;
  padding: 140px 0 64px;
  overflow: hidden;
  background: var(--dark);
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background: url('../images/iCloud%20Photos%20from%20David%20Moore/IMG_6323.JPEG') center 30%/cover no-repeat;
  opacity: .13;
}
.page-header-content { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); margin: 10px 0 14px; }
.page-header p  { color: rgba(255,255,255,.65); font-size: 1.1rem; max-width: 480px; }

/* ── Story Section ────────────────────────────────────────── */
.story-section {
  padding: 88px 0;
  background: var(--white);
}
.story-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: start;
}

.story-image-col { display: flex; flex-direction: column; gap: 24px; }

.story-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.story-img { width: 100%; height: 520px; object-fit: cover; display: block; }
.story-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--dark);
  border-left: 4px solid var(--gold);
  padding: 14px 20px;
  border-radius: var(--radius);
  text-align: center;
}
.story-badge .badge-year {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.story-badge .badge-label {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  margin-top: 2px;
  font-family: var(--font-head);
}

.cred-cards { display: flex; flex-direction: column; gap: 12px; }
.cred-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--grey-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: var(--transition);
}
.cred-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
}
.cred-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(61,122,111,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.cred-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: .92rem;
  color: var(--dark);
  margin-bottom: 2px;
}
.cred-card span {
  font-size: .8rem;
  color: var(--grey);
}

.story-content .section-tag { margin-bottom: 12px; }
.story-content h2 { color: var(--dark); margin-bottom: 20px; }
.story-lead {
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 18px;
}
.story-content p {
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 18px;
}

.story-quote {
  margin: 32px 0 0;
  padding: 28px 32px;
  background: var(--dark);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
  font-style: italic;
  color: rgba(255,255,255,.82);
  font-size: 1.02rem;
  line-height: 1.75;
}
.story-quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .04em;
}

/* ── Experience Section ───────────────────────────────────── */
.experience-section {
  padding: 88px 0;
  background: var(--grey-light);
}
.experience-section .section-header { margin-bottom: 56px; }

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.exp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}
.exp-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.exp-icon {
  width: 52px; height: 52px;
  background: rgba(61,122,111,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 20px;
  transition: var(--transition);
}
.exp-card:hover .exp-icon {
  background: var(--teal);
  color: var(--white);
}
.exp-card h3 {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.exp-card p {
  color: var(--grey);
  font-size: .9rem;
  line-height: 1.65;
}
.exp-card-highlight {
  background: var(--dark);
  border-color: transparent;
}
.exp-card-highlight .exp-icon {
  background: rgba(245,192,53,.15);
  color: var(--gold);
}
.exp-card-highlight:hover .exp-icon {
  background: var(--gold);
  color: var(--dark);
}
.exp-card-highlight h3 { color: var(--white); }
.exp-card-highlight p  { color: rgba(255,255,255,.7); }

/* ── Values Section ───────────────────────────────────────── */
.values-section {
  padding: 88px 0;
  background: var(--white);
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 72px;
  align-items: center;
}
.values-content .section-tag { margin-bottom: 12px; }
.values-content h2 { color: var(--dark); margin-bottom: 20px; }
.values-lead {
  font-size: 1.05rem;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 36px;
}

.values-list { display: flex; flex-direction: column; gap: 24px; }
.value-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.value-dot {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.value-item h4 {
  font-family: var(--font-head);
  font-size: .98rem;
  color: var(--dark);
  margin-bottom: 5px;
}
.value-item p {
  color: var(--grey);
  font-size: .9rem;
  line-height: 1.65;
}

.values-image-col { display: flex; flex-direction: column; gap: 20px; }
.values-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.values-img-wrap img { width: 100%; height: 320px; object-fit: cover; display: block; }

.stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { font-size: 1.4rem; }
.stat-label {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* ── Service Area ─────────────────────────────────────────── */
.area-section {
  padding: 88px 0;
  background: var(--grey-light);
}
.area-section .section-header { margin-bottom: 48px; }

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.area-tags span {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 8px 20px;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  color: var(--dark-mid);
  transition: var(--transition);
}
.area-tags span:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.area-tag-note {
  background: rgba(61,122,111,.08) !important;
  border-color: rgba(61,122,111,.2) !important;
  color: var(--teal) !important;
  font-style: italic;
}

/* ── About CTA ────────────────────────────────────────────── */
.about-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
}
.about-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.about-cta h2 { color: var(--white); margin-bottom: 8px; }
.about-cta p  { color: rgba(255,255,255,.75); font-size: 1rem; }
.about-cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.about-cta-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  transition: var(--transition);
}
.about-cta-phone:hover { color: var(--gold); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .story-grid  { grid-template-columns: 360px 1fr; gap: 48px; }
  .values-grid { grid-template-columns: 1fr 340px; gap: 48px; }
  .exp-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .story-grid  { grid-template-columns: 1fr; }
  .story-img   { height: 360px; }
  .values-grid { grid-template-columns: 1fr; }
  .values-image-col { order: -1; }
  .exp-grid    { grid-template-columns: 1fr; }
  .about-cta-inner { flex-direction: column; text-align: center; }
  .about-cta-actions { justify-content: center; }
  .page-header { padding: 120px 0 48px; }
  .stat-cards  { grid-template-columns: 1fr 1fr; }
}
