/* =====================================================================
   ECONOMIC SYSTEMS — ABOUT PAGE
   Extends the finalized global visual system in styles.css.
   ===================================================================== */

/* PAGE HERO */
.about-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 112px) 0 100px;
  background: var(--white);
}
.about-hero-aura {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 12%, rgba(200,16,46,.09), transparent 28%),
    radial-gradient(circle at 10% 78%, rgba(56,33,43,.045), transparent 27%);
}
.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1020px;
  margin: 0 auto;
  text-align: center;
}
.about-hero-content .eyebrow { margin-bottom: 24px; }
.about-hero h1 {
  max-width: 980px;
  margin: 0 auto 30px;
  font-size: clamp(3rem, 5vw, 5.15rem);
  font-weight: 450;
  line-height: 1.03;
  letter-spacing: -.052em;
}
.about-hero-subtitle {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 28px 25px;

  font-family: var(--sans);
  font-size: clamp(1.08rem, 1.4vw, 1.24rem);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,.94);

  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 4%, rgba(200,16,46,.20), transparent 31%),
    linear-gradient(125deg, var(--plum) 0%, var(--plum-2) 72%, #472733 100%);
  box-shadow: 0 10px 30px rgba(24,15,19,.08);
}

/* EXPERIENCE PANEL */
.about-proof { padding: 0 0 28px; background: var(--white); }
.about-proof-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.25fr;
  margin-top: 56px;
  gap: 10px;
  padding: 12px;
  background: var(--soft-warm);
  border: 1px solid #eeeceb;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.about-proof-item {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 28px;
  background: var(--white);
  border-radius: 15px;
}
.about-proof-item strong {
  margin-bottom: 9px;
  color: var(--ink);
  font-size: clamp(2.3rem, 3vw, 3.35rem);
  font-weight: 450;
  letter-spacing: -.05em;
  line-height: 1;
}
.about-proof-item span { color: var(--muted); font-size: .84rem; }
.about-proof-statement {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 30px;
  border-radius: 15px;
  background: linear-gradient(145deg, #2b1820 0%, #402632 100%);
  color: var(--white);
}
.about-proof-statement > span {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: .98rem;
  font-style: italic;
  color: #f0c7d0;
}
.about-proof-statement p {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--white);
}

/* EDITORIAL FIRM STORY */
.about-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 92px;
  align-items: start;
}
.about-editorial-heading { position: sticky; top: calc(var(--header-h) + 42px); }
.about-editorial-heading h2 { max-width: 570px; }
.about-editorial-copy { max-width: 700px; }
.about-editorial-copy p {
  margin-bottom: 22px;
  color: #4a4c50;
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.75;
}
.about-editorial-copy .about-lead {
  color: var(--ink);
  font-size: clamp(1.25rem, 1.6vw, 1.48rem);
  line-height: 1.58;
}

/* OPERATING MODEL */
.about-operating-section { overflow: hidden; }
.about-gradient-note {
  max-width: 590px;
  padding: 22px 24px 23px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 4%, rgba(200,16,46,.20), transparent 31%),
    linear-gradient(125deg, var(--plum) 0%, var(--plum-2) 72%, #472733 100%);
  box-shadow: 0 10px 30px rgba(24,15,19,.07);
  color: rgba(255,255,255,.94);
  font-family: var(--serif);
  font-size: 1.06rem;
  line-height: 1.64;
}
.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
.about-principle {
  min-height: 230px;
  padding: 32px 32px 34px;
  border: 1px solid #ebe8e6;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(20,18,19,.025);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s ease;
}
.about-principle:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #dfdad8; }
.about-principle > span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--red);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .1em;
}
.about-principle h3 { margin-bottom: 13px; }
.about-principle p {
  color: #55575b;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.64;
}

/* CEO */
.ceo-section { padding-top: 104px; }
.ceo-card {
  display: grid;
  grid-template-columns: minmax(330px, .84fr) minmax(0, 1.16fr);
  min-height: 610px;
  overflow: hidden;
  border-radius: var(--r-xl);
  background:
    radial-gradient(circle at 92% 5%, rgba(200,16,46,.22), transparent 31%),
    linear-gradient(125deg, var(--plum) 0%, var(--plum-2) 72%, #472733 100%);
  box-shadow: var(--shadow-md);
}
.ceo-image-wrap { min-height: 610px; background: #e9e5e3; }
.ceo-image { width: 100%; height: 100%; object-fit: cover; }
.ceo-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 72px;
  color: var(--white);
}
.ceo-content h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(2.6rem, 4vw, 4.45rem);
  font-weight: 450;
}
.ceo-role {
  margin-bottom: 28px;
  color: #f0c7d0;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
}
.ceo-copy {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255,255,255,.82);
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.7;
}
.ceo-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--white);
  font-size: .91rem;
  font-weight: 600;
}
.ceo-email span { transition: transform .18s var(--ease); }
.ceo-email:hover span { transform: translateX(4px); }

/* LEADERSHIP MARQUEE */
.leadership-section { overflow: hidden; }
.leadership-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
.leadership-marquee-track {
  --leader-gap: 18px;
  --leader-half-gap: 9px;
  display: flex;
  align-items: stretch;
  gap: var(--leader-gap);
  width: max-content;
  padding: 8px 0 18px;
  animation: leadershipMarquee 18s linear infinite;
  will-change: transform;
}
.leadership-marquee-wrapper:hover .leadership-marquee-track { animation-play-state: paused; }
.leader-card {
  flex: 0 0 330px;
  width: 330px;
  overflow: hidden;
  border: 1px solid #ebe8e6;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 5px 20px rgba(20,18,19,.035);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.leader-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.leader-card > img { width: 100%; height: 285px; object-fit: cover; background: var(--soft); }
.leader-card-body { padding: 25px 25px 27px; }
.leader-card h3 { margin-bottom: 9px; font-size: 1.32rem; }
.leader-role {
  margin-bottom: 3px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.leader-portfolio {
  min-height: 48px;
  margin-bottom: 20px;
  color: #55575b;
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.45;
}
.leader-card a {
  display: block;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.45;
}
.leader-card a:hover { color: var(--red); }
@keyframes leadershipMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - var(--leader-half-gap))); }
}

/* COMMITMENTS */
.commitments-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}
.commitment-card {
  min-height: 240px;
  padding: 30px 28px 32px;
  border: 1px solid #ebe8e6;
  border-radius: 18px;
  background: var(--white);
}
.commitment-card h3 { margin-bottom: 16px; font-size: 1.28rem; }
.commitment-card p {
  color: #56585d;
  font-family: var(--serif);
  font-size: .99rem;
  line-height: 1.64;
}

/* ACTIVE ABOUT NAV */
.nav-link.active { color: var(--red); background: var(--red-soft-2); }

/* RESPONSIVE */
@media (max-width: 1120px) {
  .about-proof-panel { grid-template-columns: repeat(3, 1fr); }
  .about-proof-statement { grid-column: 1 / -1; min-height: 130px; }
  .about-editorial-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-editorial-heading { position: static; }
  .ceo-card { grid-template-columns: 1fr 1fr; min-height: 560px; }
  .ceo-image-wrap { min-height: 560px; }
  .ceo-content { padding: 55px 48px; }
  .commitments-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 820px) {
  .about-hero { padding: calc(var(--header-h) + 82px) 0 80px; }
  .about-hero h1 { font-size: clamp(2.7rem, 11vw, 4.3rem); }
  .about-proof-panel { grid-template-columns: 1fr; }
  .about-proof-statement { grid-column: auto; }
  .about-principles-grid { grid-template-columns: 1fr; }
  .ceo-card { grid-template-columns: 1fr; }
  .ceo-image-wrap { min-height: 480px; max-height: 560px; }
  .ceo-content { padding: 48px 38px 52px; }
  .leader-card { flex-basis: 290px; width: 290px; }
  .leader-card > img { height: 250px; }
  .commitments-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .about-hero { padding: calc(var(--header-h) + 58px) 0 66px; }
  .about-hero-content { text-align: left; }
  .about-hero-subtitle { padding: 20px 21px 21px; border-radius: 15px; }
  .about-proof-panel { padding: 10px; }
  .about-proof-item { min-height: 112px; padding: 22px 23px; }
  .about-gradient-note { padding: 19px 20px 20px; font-size: 1rem; }
  .about-principle { min-height: 0; padding: 28px 25px 30px; }
  .ceo-section { padding-top: 76px; }
  .ceo-card { border-radius: 24px; }
  .ceo-image-wrap { min-height: 390px; }
  .ceo-content { padding: 39px 27px 44px; }
  .ceo-copy { font-size: 1.03rem; }
  .leadership-marquee-track { --leader-gap: 12px; --leader-half-gap: 6px; animation-duration: 36s; }
  .leader-card { flex-basis: 255px; width: 255px; border-radius: 17px; }
  .leader-card > img { height: 220px; }
  .leader-card-body { padding: 22px 21px 24px; }
  .commitment-card { min-height: 0; padding: 27px 24px 29px; }
}

@media (prefers-reduced-motion: reduce) {
  .leadership-marquee-track { animation: none !important; }
  .leadership-marquee-wrapper { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
}

/* ================================================================
   INSIGHTS TYPOGRAPHY SYNC — hero + supporting gradient notes only
   ================================================================ */
.about-hero-subtitle {
  max-width: 825px;
  font-family: var(--sans);
  font-size: clamp(1.08rem, 1.4vw, 1.24rem);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -.01em;
  color: rgba(255,255,255,.94);
}

.about-gradient-note {
  max-width: 590px;
  padding: 22px 24px 23px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 4%, rgba(200,16,46,.20), transparent 31%),
    linear-gradient(125deg, var(--plum) 0%, var(--plum-2) 72%, #472733 100%);
  box-shadow: 0 10px 30px rgba(24,15,19,.07);
  color: rgba(255,255,255,.94);
  font-family: var(--sans);
  font-size: clamp(1.01rem, 1.16vw, 1.12rem);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -.008em;
}

@media (max-width: 560px) {
  .about-hero-subtitle {
    padding: 20px 20px 21px;
    border-radius: 15px;
  }
  .about-gradient-note {
    max-width: 100%;
    padding: 18px 19px 19px;
    border-radius: 14px;
  }
}

/* ================================================================
   OPEN EDITORIAL HERO SUPPORT — APPROVED SITE-WIDE TREATMENT
   Opening hero copy stays open on white; interior plum modules remain.
   ================================================================ */

.about-hero-subtitle {
  position: relative;
  max-width: 790px;
  margin: 0 auto 36px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #4b4d52;
  font-family: var(--sans);
  font-size: clamp(1.10rem, 1.38vw, 1.27rem);
  font-weight: 300;
  line-height: 1.56;
  letter-spacing: -.012em;
}

.about-hero-subtitle::before {
  content: '';
  display: block;
  width: 54px;
  height: 2px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: var(--red);
}

@media (max-width: 560px) {
  .about-hero-subtitle {
    max-width: 100%;
    margin: 0 0 32px;
    padding: 0;
    border-radius: 0;
    font-size: 1.06rem;
    line-height: 1.58;
  }

  .about-hero-subtitle::before {
    width: 46px;
    margin: 0 0 19px;
  }
}


/* ================================================================
   CEO MOBILE WIDTH FIX
   Prevent long contact text from forcing the one-column CEO grid
   wider than the viewport while preserving the rounded card crop.
   ================================================================ */

.ceo-content {
  min-width: 0;
}

.ceo-email {
  max-width: 100%;
  flex-wrap: wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 560px) {
  .ceo-email {
    align-items: flex-start;
    gap: 7px;
    line-height: 1.45;
  }
}
