/* ─── About Page Styles ─────────────────────────────────────── */

/* ─── About Hero ────────────────────────────────────────────── */
.about-hero {
  background: var(--navy);
  padding: 72px 24px 64px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 85% 40%, rgba(42,122,122,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 56px;
  position: relative;
}

.about-hero-photo-wrap {
  flex-shrink: 0;
}

.about-hero-photo {
  width: 220px;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
  border: 3px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  display: block;
}

.about-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.about-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 14px;
}

.about-hero-tagline {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

/* ─── Pull Quote / Callout ─────────────────────────────────── */
.bio-pullquote {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3d4f 100%);
  border-left: 4px solid var(--orange);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px 20px 28px;
  margin: 0 0 36px 0;
}

.bio-pullquote p {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 0;
}


/* ─── About Bio ─────────────────────────────────────────────── */
.about-bio {
  background: var(--surface);
  padding: 80px 24px;
}

.about-bio-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

.about-bio-content h2.about-bio-section-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 18px;
  margin-top: 48px;
  letter-spacing: -0.01em;
}

.about-bio-content h2.about-bio-section-title:first-child {
  margin-top: 0;
}

.about-bio-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--fg-muted);
  margin-bottom: 18px;
}

.about-bio-content em {
  color: var(--navy);
  font-style: italic;
}

/* ─── About Sidebar ─────────────────────────────────────────── */
.about-bio-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-credential-card {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.about-credential-card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.about-credential-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-credential-list li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.about-credential-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-credential-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

.about-credential-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
}

.about-cta-btn {
  display: block;
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.about-cta-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.about-back-link {
  display: block;
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.about-back-link:hover {
  color: var(--teal);
}

/* ─── About Contact CTA ─────────────────────────────────────── */
.about-contact {
  background: linear-gradient(160deg, var(--navy) 0%, #152033 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(42,122,122,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.about-contact-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.about-contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.about-contact-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 16px;
}

.about-contact-sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
}

.about-contact-cta {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.about-contact-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}


@media (max-width: 768px) {
  .about-hero-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .about-hero-photo { width: 160px; height: 190px; }
  .about-bio-inner { grid-template-columns: 1fr; }
  .about-bio-sidebar { position: static; }
}

@media (max-width: 480px) {
  .about-hero { padding: 48px 20px; }
  .about-bio { padding: 56px 20px; }
  .about-contact { padding: 56px 20px; }
}