/* =============================================================
   ABOUT.CSS — Citizens Reverse Mortgage, About Us page only.
   Conditionally enqueued for the About page. Page-specific layout
   for the 5 wireframe sections. Reuses global/component primitives.
   ============================================================= */

/* ── SECTION 01 — ABOUT HERO ─────────────────────────────── */
.about-hero {
  position: relative;
  background: var(--grad-hero);
  color: #fff;
  padding-block: clamp(64px, 8vw, 116px);
  overflow: hidden;
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(620px circle at 82% 16%, rgba(184, 148, 58, 0.28), transparent 60%),
    radial-gradient(480px circle at 4% 96%, rgba(61, 122, 138, 0.26), transparent 60%);
  pointer-events: none;
}
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 72%);
  mask-image: linear-gradient(180deg, #000, transparent 72%);
  pointer-events: none;
}
.about-hero .container { position: relative; z-index: 1; }
.about-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  gap: clamp(40px, 5vw, 80px);
}
.about-hero__eyebrow { color: var(--gold-soft); }
.about-hero h1 { color: #fff; margin-bottom: var(--space-md); }
.about-hero__sub {
  font-size: clamp(19px, 1.5vw, 22px);
  line-height: 1.7;
  color: #d8e0f2;
  margin-bottom: 0;
}
.about-hero__sub + .about-hero__sub { margin-top: var(--space-md); }
.about-hero__media { position: relative; }
.about-hero__media::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid rgba(212, 169, 79, 0.55);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.about-hero__media .media-frame { position: relative; z-index: 1; height: 100%; }
.about-hero__media .media-frame img { height: 100%; min-height: 380px; object-fit: cover; }

@media (max-width: 900px) {
  .about-hero__inner { grid-template-columns: 1fr; }
  .about-hero__sub { max-width: none; }
  .about-hero__media::before { inset: 12px -12px -12px 12px; }
  .about-hero__media .media-frame img { min-height: 300px; }
}

/* ── SECTION 03 — THE CITIZENS STORY ─────────────────────── */
.story__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.story__narrative h2 { margin-bottom: var(--space-md); }

/* Styled vertical timeline (per DOCX design note — not a bullet list). */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 6px; bottom: 6px;
  left: 9px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(184, 148, 58, 0.15));
}
.timeline__item {
  position: relative;
  padding-left: 40px;
  padding-bottom: var(--space-lg);
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: 2px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 148, 58, 0.14);
}
.timeline__label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.timeline__text { margin: 0; font-size: 19px; color: var(--text-body); }

@media (max-width: 900px) {
  .story__inner { grid-template-columns: 1fr; }
}

/* ── SECTION 04 — CREDENTIALS & ASSOCIATIONS ─────────────── */
.credentials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.credential {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.credential:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.credential__icon {
  width: 58px; height: 58px;
  margin: 0 auto var(--space-sm);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--gold);
  background: linear-gradient(150deg, rgba(184, 148, 58, 0.16), rgba(184, 148, 58, 0.06));
  border: 1px solid rgba(184, 148, 58, 0.22);
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.credential:hover .credential__icon {
  background: var(--grad-gold);
  color: #fff;
  transform: scale(1.05) rotate(-3deg);
}
.credential__name { font-weight: 700; color: var(--text-dark); font-size: 16px; line-height: 1.3; }
.credential__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-mid);
  margin-top: 4px;
}
.credentials__copy { max-width: 820px; margin-inline: auto; text-align: center; }
.credentials__disclaimer { font-size: 13px; color: var(--text-mid); margin-bottom: 0; }

@media (max-width: 860px) {
  .credentials__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .credentials__grid { grid-template-columns: 1fr; }
}

/* ── SECTION 05 — MEET JEFF PREVIEW + CTA ─────────────────── */
.meet-jeff__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
}
.meet-jeff__media { position: relative; }
.meet-jeff__media::before {
  content: "";
  position: absolute;
  inset: -20px 20px 20px -20px;
  background: var(--grad-gold);
  opacity: 0.14;
  border-radius: var(--radius-lg);
  z-index: 0;
}
.meet-jeff__media .media-frame { position: relative; z-index: 1; }
.meet-jeff__media .media-frame img {
  min-height: 420px;
  object-position: center top; /* keep Jeff's face in frame on a portrait crop */
}
/* Jeff contact list (Copy Pass "Our Owner" — NMLS/cell/fax/email). */
.jeff-contact {
  list-style: none;
  margin: var(--space-md) 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.jeff-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: var(--text-body);
}
.jeff-contact li i {
  color: var(--gold);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.jeff-contact a { color: var(--text-body); }
.jeff-contact a:hover { color: var(--gold); }

.meet-jeff__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

/* ── SECTION 06 — WHAT MAKES US EXPERTS (Copy Pass) ──────── */
.about-trust .section-head p {
  font-size: clamp(20px, 1.6vw, 23px);
  color: var(--text-body);
}
.about-trust__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

@media (max-width: 900px) {
  .meet-jeff__inner { grid-template-columns: 1fr; }
  .meet-jeff__media::before { inset: -12px 12px 12px -12px; }
}
