/* =========================================================
   /about page styles
   Phase 10D Batch 2 - derived from basisOfDesign/phase10D/rts-about-v2.html
   CSS custom properties (--navy, --orange, --off-white, --gray-*,
   --font-display, --font-body, --shadow-*, --radius, --container)
   are defined globally in common.css :root. Do not redeclare here.
   ========================================================= */

/* ===================== ABOUT HERO ===================== */
.about-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff;
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.about-hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 55%;
  height: 200%;
  background: radial-gradient(ellipse 55% 45% at 50% 50%, rgba(232,100,44,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.about-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 20px;
  padding: 6px 14px;
  background: rgba(232,100,44,0.12);
  border: 1px solid rgba(232,100,44,0.22);
  border-radius: 6px;
}
.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #fff;
}
.about-hero-lede {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  max-width: 760px;
}

/* ===================== BODY SECTIONS ===================== */
.about-body {
  padding: 0 0 32px;
}
.about-section {
  padding: 80px 0;
  position: relative;
  background: var(--white, #ffffff);
}
.about-section--alt {
  background: var(--off-white);
}
.about-section-inner {
  max-width: 760px;
  margin: 0 auto;
}
.about-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 24px;
}
.about-section p {
  font-size: 1.02rem;
  color: var(--gray-800);
  line-height: 1.75;
  margin-bottom: 1.1em;
}
.about-section p:last-child {
  margin-bottom: 0;
}

/* ===================== PULL QUOTE ===================== */
.pullquote {
  max-width: 820px;
  margin: 56px auto 0;
  padding: 40px 32px;
  border-left: 4px solid var(--orange);
  background: transparent;
  position: relative;
}
.pullquote-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.015em;
}

/* A larger, standalone pullquote used between Since 2012 and the CTA */
.pullquote-major {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 32px;
  text-align: center;
}
.pullquote-major .pullquote-text {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.pullquote-major .pullquote-subtle {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 18px;
  display: block;
}

/* ===================== CTA BANNER ===================== */
.about-cta {
  background: linear-gradient(135deg, #0a1730, var(--navy));
  color: #fff;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.about-cta::after {
  content: "";
  position: absolute;
  right: -15%;
  top: -40%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse 55% 45% at 50% 50%, rgba(232,100,44,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.about-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}
.about-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.2;
}
.about-cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.about-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons scoped under .about-cta to avoid leaking into global scope. */
.about-cta .btn-primary-lg {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 28px;
  background: var(--orange);
  color: #fff;
  border-radius: 10px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  text-decoration: none;
}
.about-cta .btn-primary-lg:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.about-cta .btn-primary-lg svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}
.about-cta .btn-outline-lg {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 28px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 10px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  text-decoration: none;
}
.about-cta .btn-outline-lg:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}
.about-cta .btn-outline-lg svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .about-hero {
    padding: 56px 0 48px;
  }
  .about-section {
    padding: 64px 0;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 44px 0 40px;
  }
  .about-section {
    padding: 48px 0;
  }
  .about-section-inner {
    padding: 0 4px;
  }
  .pullquote {
    margin-top: 40px;
    padding: 28px 20px;
  }
  .pullquote-major {
    padding: 56px 20px;
  }
  .about-cta {
    padding: 64px 0;
  }
  .about-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .about-cta .btn-primary-lg,
  .about-cta .btn-outline-lg {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 1.8rem;
  }
}
