/* ============================================================
   MISS WALLSTREET — ABOUT PAGE CSS
   css/about.css
   ============================================================ */

/* ── HERO ───────────────────────────────────────────────────── */
.mwa-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
}

.mwa-hero__left {
  background: var(--mw-black);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.mwa-hero__left::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.mwa-hero__left::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.mwa-hero__left .mw-eyebrow {
  color: var(--mw-gold);
  animation-delay: 0.1s;
}

.mwa-hero__name {
  font-family: var(--mw-font-display);
  font-size: clamp(52px, 6.5vw, 96px);
  font-weight: 900;
  line-height: 0.92;
  color: var(--mw-cream);
  margin: 0 0 8px;
  opacity: 0;
  animation: mw-fade-up 0.8s ease 0.3s forwards;
}

.mwa-hero__name em {
  color: var(--mw-gold);
  font-style: italic;
}

.mwa-hero__tagline {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mw-muted);
  margin: 24px 0 48px;
  opacity: 0;
  animation: mw-fade-up 0.8s ease 0.5s forwards;
}

.mwa-hero__rule {
  width: 56px; height: 2px;
  background: var(--mw-gold);
  margin-bottom: 36px;
  opacity: 0;
  animation: mw-fade-up 0.8s ease 0.6s forwards;
}

.mwa-hero__quote {
  font-family: var(--mw-font-display);
  font-size: clamp(16px, 1.6vw, 20px);
  font-style: italic;
  color: var(--mw-cream);
  line-height: 1.75;
  border: none;
  padding: 0; margin: 0;
  opacity: 0;
  animation: mw-fade-up 0.8s ease 0.75s forwards;
}

.mwa-hero__quote p { margin: 0; }

.mwa-hero__right {
  background: var(--mw-cream);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.mwa-hero__avatar {
  position: absolute;
  top: 40px; right: 40px;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--mw-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mw-font-display);
  font-size: 16px;
  font-weight: 900;
  color: var(--mw-black);
  opacity: 0;
  animation: mw-fade-up 0.8s ease 0.9s forwards;
}

.mwa-hero__origin-title {
  font-family: var(--mw-font-display);
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--mw-black);
  margin: 0 0 28px;
  opacity: 0;
  animation: mw-fade-up 0.8s ease 0.55s forwards;
}

.mwa-hero__origin-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--mw-body-dark);
  opacity: 0;
  animation: mw-fade-up 0.8s ease 0.7s forwards;
}

.mwa-hero__origin-body p { margin-bottom: 18px; }
.mwa-hero__origin-body p:last-child { margin-bottom: 0; }
.mwa-hero__origin-body em { font-style: italic; }

/* ── STORY SECTION ──────────────────────────────────────────── */
.mwa-story {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 60px;
}

/* ── CHAPTERS ───────────────────────────────────────────────── */
.mwa-chapter {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 64px;
  align-items: start;
  padding: 72px 0;
  border-bottom: 1px solid var(--mw-gold-light);
}

.mwa-chapter:first-child {
  padding-top: 0;
}

.mwa-chapter__sidebar {
  position: sticky;
  top: 100px;
}

.mwa-chapter__num {
  font-family: var(--mw-font-display);
  font-size: 100px;
  font-weight: 900;
  color: var(--mw-gold-light);
  line-height: 1;
  margin-bottom: -12px;
}

.mwa-chapter__label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mw-muted);
  font-weight: 500;
}

.mwa-chapter__title {
  font-family: var(--mw-font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--mw-black);
  margin: 0 0 28px;
}

.mwa-chapter__text {
  font-size: 15px;
  line-height: 1.95;
  color: var(--mw-body-dark);
}

.mwa-chapter__text p {
  margin-bottom: 22px;
}

.mwa-chapter__text p:last-child {
  margin-bottom: 0;
}

.mwa-chapter__text em {
  font-style: italic;
}

/* ── HIGHLIGHT ──────────────────────────────────────────────── */
.mwa-highlight {
  color: var(--mw-gold);
  font-weight: 500;
}

/* ── PULL QUOTE ─────────────────────────────────────────────── */
.mwa-pull-quote {
  background: var(--mw-black);
  padding: 56px 64px;
  margin: 0 0 0 0;
  position: relative;
}

.mwa-pull-quote::before {
  content: '\201C';
  font-family: var(--mw-font-display);
  font-size: 140px;
  color: var(--mw-gold);
  position: absolute;
  top: -20px; left: 44px;
  line-height: 1;
  opacity: 0.35;
}

.mwa-pull-quote p {
  font-family: var(--mw-font-display);
  font-size: clamp(18px, 2vw, 26px);
  font-style: italic;
  color: var(--mw-cream);
  line-height: 1.65;
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 700px;
}

/* ── STATS ──────────────────────────────────────────────────── */
.mwa-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--mw-gold-light);
  margin-top: 72px;
}

.mwa-stat {
  background: var(--mw-cream);
  padding: 48px 36px;
  text-align: center;
}

.mwa-stat__num {
  font-family: var(--mw-font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--mw-gold);
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}

.mwa-stat__label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mw-muted);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .mwa-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mwa-hero__left {
    padding: 100px 36px 72px;
    min-height: 65vh;
  }

  .mwa-hero__right {
    padding: 64px 36px;
  }

  .mwa-hero__avatar {
    top: 24px; right: 24px;
  }

  .mwa-story {
    padding: 64px 32px;
  }

  .mwa-chapter {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 56px 0;
  }

  .mwa-chapter__sidebar {
    position: static;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .mwa-chapter__num {
    font-size: 64px;
    margin-bottom: 0;
  }

  .mwa-pull-quote {
    padding: 48px 36px;
  }

  .mwa-pull-quote::before {
    font-size: 100px;
    left: 28px;
  }

  .mwa-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .mwa-hero__left  { padding: 96px 28px 60px; }
  .mwa-hero__right { padding: 48px 28px; }
  .mwa-story       { padding: 48px 24px; }
  .mwa-pull-quote  { padding: 40px 28px; }
  .mwa-stat        { padding: 36px 24px; }
}
