/* ============================================================
   ABOUT PAGE — CSS
   Depends on: global.css, header.css
   Accent palette: orange (#FB7A02), cream (#F5F0E8), teal, dark
   ============================================================ */

body { background: var(--bg-dark); }

/* ============================================================
   SHARED UTILITIES
   ============================================================ */
.ab-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--soft-white);
  background: var(--brand-teal);
  border: none;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
  white-space: nowrap;
}
.ab-btn-primary:hover {
  background: #006b6c;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,88,89,0.35);
}

.ab-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  color: rgba(245,240,232,0.65);
  background: transparent;
  border: 1px solid rgba(245,240,232,0.18);
  border-radius: 6px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.ab-btn-ghost:hover {
  color: var(--text-inverse);
  border-color: rgba(245,240,232,0.40);
  background: rgba(245,240,232,0.06);
}

.ab-link-arrow {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.ab-link-arrow:hover { color: var(--brand-teal); }

.ab-divider {
  width: 48px;
  height: 1px;
  background: var(--brand-teal);
  opacity: 0.30;
  margin: 0 auto 24px;
}

.ab-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: block;
}
.ab-label-orange { color: var(--brand-orange); }
.ab-label-mint   { color: var(--brand-mint); }

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.ab-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(155deg, #021C10 0%, #0A2818 40%, #0F3020 100%);
}

.ab-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(0,88,89,0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 15%, rgba(251,122,2,0.07) 0%, transparent 45%);
  pointer-events: none;
}

/* Subtle diagonal accent stripe */
.ab-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 60%, rgba(251,122,2,0.04) 100%);
  pointer-events: none;
}

.ab-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 72px;
  align-items: center;
  width: 100%;
  animation: abFadeUp 0.9s ease both;
}

.ab-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.ab-eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--brand-orange);
  opacity: 0.7;
}
.ab-eyebrow-row span {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-orange);
}

.ab-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-inverse);
  margin-bottom: 20px;
}
.ab-hero-content h1 em {
  font-style: italic;
  color: var(--brand-mint);
}

.ab-hero-sub {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(245,240,232,0.55);
  margin-bottom: 36px;
  max-width: 480px;
}

.ab-hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero image */
.ab-hero-image { position: relative; }

.ab-hero-image-frame {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-dark-2);
  box-shadow:
    0 0 0 1px rgba(251,122,2,0.10),
    0 32px 80px rgba(0,0,0,0.50);
}
.ab-hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}
.ab-hero-image-frame:hover img { transform: scale(1.03); }
.ab-hero-image-frame::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(2,28,16,0.65) 0%, transparent 100%);
  pointer-events: none;
}

/* Stats badge */
.ab-hero-badge {
  position: absolute;
  bottom: -18px;
  left: -24px;
  background: rgba(2,28,16,0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(251,122,2,0.20);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  z-index: 3;
}
.ab-badge-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.ab-badge-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--brand-orange);
  line-height: 1;
}
.ab-badge-lbl {
  font-family: var(--font-ui);
  font-size: 10px;
  color: rgba(245,240,232,0.45);
  text-align: center;
  max-width: 90px;
  line-height: 1.35;
}
.ab-badge-divider {
  width: 1px;
  height: 32px;
  background: rgba(251,122,2,0.18);
  flex-shrink: 0;
}

/* ============================================================
   SECTION 2 — STORY (light bg)
   ============================================================ */
.ab-story {
  background: var(--soft-white);
  padding: 100px 24px;
}
.ab-story-inner {
  max-width: 720px;
  margin: 0 auto;
}
.ab-story-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 32px;
}
.ab-story-body p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 18px;
}

/* Pull quote — orange left border */
.ab-pull-quote {
  border-left: 3px solid var(--brand-orange);
  padding: 24px 28px;
  margin: 36px 0;
  background: rgba(251,122,2,0.04);
  border-radius: 0 8px 8px 0;
}
.ab-pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 24px) !important;
  font-weight: 400 !important;
  font-style: italic;
  color: var(--text-primary) !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

/* ============================================================
   SECTION 3 — PERSONAL (warm cream + orange)
   ============================================================ */
.ab-personal {
  background: var(--warm-cream);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}
.ab-personal::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251,122,2,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.ab-personal-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: center;
}

.ab-personal-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 24px;
}
.ab-personal-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Accent ring + quote block */
.ab-personal-accent {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ab-accent-ring {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(251,122,2,0.18);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ab-accent-ring::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(251,122,2,0.10);
}
.ab-accent-quote {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.5;
  text-align: center;
  max-width: 260px;
  padding: 32px;
  background: white;
  border-radius: 50%;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border: none;
  margin: 0;
}

/* ============================================================
   SECTION 4 — CREDENTIALS (cream bg)
   ============================================================ */
.ab-credentials {
  background: var(--soft-white);
  padding: 100px 24px;
}
.ab-credentials-inner {
  max-width: 960px;
  margin: 0 auto;
}
.ab-credentials-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 56px;
}
.ab-cred-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.ab-cred-col h3 {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.ab-cred-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ab-cred-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ab-cred-abbr {
  flex-shrink: 0;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--soft-white);
  background: var(--brand-teal);
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 2px;
  min-width: 52px;
  text-align: center;
}
.ab-cred-list li span:last-child {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.ab-cred-list li em {
  font-style: italic;
  color: var(--text-primary);
}

/* Accent list (accomplishments) with orange checks */
.ab-cred-list-accent li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--brand-orange);
}

/* ============================================================
   SECTION 5 — MISSION (dark)
   ============================================================ */
.ab-mission {
  background: linear-gradient(165deg, #021C10 0%, #0A2818 50%, #0F3020 100%);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}
.ab-mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(251,122,2,0.06) 0%, transparent 45%),
    radial-gradient(ellipse at 20% 80%, rgba(53,189,143,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.ab-mission-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.ab-mission-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 400;
  color: var(--text-inverse);
  line-height: 1.2;
  margin-bottom: 40px;
}
.ab-mission-inner h2 em {
  font-style: italic;
  color: var(--brand-mint);
}
.ab-mission-body p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(245,240,232,0.62);
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: left;
}
.ab-mission-vision {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  text-align: left;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(251,122,2,0.15);
  border-radius: 12px;
  padding: 28px 24px;
}
.ab-vision-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(251,122,2,0.12);
  border: 1px solid rgba(251,122,2,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
}
.ab-vision-icon svg { width: 20px; height: 20px; }
.ab-vision-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-orange);
  margin-bottom: 8px;
  opacity: 0.80;
}
.ab-mission-vision p {
  font-size: 14px !important;
  color: rgba(245,240,232,0.68) !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

/* ============================================================
   SECTION 6 — CTA
   ============================================================ */
.ab-cta-section {
  background: var(--warm-cream);
  padding: 80px 24px;
  text-align: center;
}
.ab-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}
.ab-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 16px;
}
.ab-cta-inner p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}
.ab-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.ab-cta-links {
  display: flex;
  gap: 24px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes abFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .ab-hero-inner { grid-template-columns: 1fr 340px; gap: 48px; }
  .ab-personal-inner { grid-template-columns: 1fr; gap: 48px; }
  .ab-personal-accent { display: none; }
}

@media (max-width: 800px) {
  .ab-cred-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .ab-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 20px 72px;
    text-align: center;
  }
  .ab-hero-content h1 { font-size: clamp(32px, 8vw, 48px); }
  .ab-hero-sub { margin: 0 auto 32px; }
  .ab-eyebrow-row { justify-content: center; }
  .ab-hero-ctas { justify-content: center; }
  .ab-hero-image { max-width: 360px; margin: 0 auto; }
  .ab-hero-badge { left: 0; right: 0; bottom: -24px; margin: 0 auto; width: fit-content; }

  .ab-story,
  .ab-personal,
  .ab-credentials,
  .ab-mission,
  .ab-cta-section { padding: 64px 20px; }
}

@media (max-width: 480px) {
  .ab-cta-links { flex-direction: column; gap: 12px; align-items: center; }
}