/**
 * Mac Angelo — About Page Styles
 * @package mac-angelo-child
 * @version 1.0.0
 */

.ma-ab-hero__inner,
.ma-ab-bio__inner,
.ma-ab-values__inner,
.ma-ab-mission__inner,
.ma-ab-stats__inner {
  max-width: var(--ma-max-w, 1280px);
  margin-inline: auto;
  padding-inline: var(--ma-pad-x, clamp(24px, 5vw, 80px));
}

/* ============================================================
   S1 — HERO
   ============================================================ */

.ma-ab-hero {
  background: var(--ma-offwhite, #F9F9F6);
  padding: clamp(52px, 7vw, 80px) 0 clamp(40px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}

.ma-ab-hero__geo-tl,
.ma-ab-hero__geo-br { position: absolute; pointer-events: none; }
.ma-ab-hero__geo-tl {
  top: 0; left: 0;
  width: clamp(160px, 20vw, 300px);
  height: clamp(100px, 12vw, 200px);
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 70%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.ma-ab-hero__geo-br {
  bottom: 0; right: 0;
  width: clamp(140px, 16vw, 240px);
  height: clamp(90px, 10vw, 160px);
  background: linear-gradient(315deg, rgba(107,63,160,0.06) 0%, transparent 70%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.ma-ab-hero__inner { position: relative; z-index: 1; }

.ma-ab-hero__headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ma-text, #0A0A0A);
  margin: 0 0 20px;
  max-width: 780px;
}

.ma-ab-hero__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.65;
  color: var(--ma-muted, #4A4A4A);
  max-width: 580px;
  margin: 0;
}


/* ============================================================
   S2 — FOUNDER BIO
   ============================================================ */

.ma-ab-bio {
  background: #FFFFFF;
  padding: clamp(52px, 7vw, 80px) 0;
}

.ma-ab-bio__inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 72px;
  align-items: center;
}

.ma-ab-bio__content {
  max-width: none;
}

/* Portrait (hidden — no photo) */
.ma-ab-bio__portrait-col { display: none; }

/* ── Visual stats card ── */
.ma-ab-bio__visual-col { position: relative; }

.ma-ab-bio__visual-card {
  position: relative;
  background: #0F0F0F;
  border-radius: 24px;
  border: 1px solid rgba(201,168,76,0.18);
  padding: 40px 36px 32px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.10);
}

.ma-ab-bio__vc-geo {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.ma-ab-bio__vc-geo--tl {
  width: 200px; height: 200px;
  top: -70px; left: -70px;
  background: radial-gradient(circle, rgba(201,168,76,0.14) 0%, transparent 70%);
}
.ma-ab-bio__vc-geo--br {
  width: 240px; height: 240px;
  bottom: -90px; right: -70px;
  background: radial-gradient(circle, rgba(26,159,159,0.10) 0%, transparent 70%);
}

.ma-ab-bio__vc-header { margin-bottom: 32px; }
.ma-ab-bio__vc-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9A84C;
}
.ma-ab-bio__vc-line {
  width: 40px; height: 2px;
  background: linear-gradient(90deg, #C9A84C, transparent);
  margin-top: 10px;
}

.ma-ab-bio__vc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 20px;
  margin-bottom: 36px;
}
.ma-ab-bio__vc-stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ma-ab-bio__vc-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}
.ma-ab-bio__vc-plus {
  font-size: 22px;
  color: #C9A84C;
}
.ma-ab-bio__vc-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.ma-ab-bio__vc-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 52px;
  margin-bottom: 24px;
}
.ma-ab-bio__vc-bar {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border-radius: 4px 4px 0 0;
}
.ma-ab-bio__vc-bar--gold { background: rgba(201,168,76,0.50); }

.ma-ab-bio__vc-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.32);
}

@media (max-width: 960px) {
  .ma-ab-bio__inner { grid-template-columns: 1fr; }
  .ma-ab-bio__visual-col { display: none; }
}

.ma-ab-bio__portrait-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.ma-ab-bio__portrait {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

.ma-ab-bio__badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  padding: 12px 16px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

.ma-ab-bio__badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(201,168,76,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ma-ab-bio__badge strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ma-text, #0A0A0A);
}

.ma-ab-bio__badge span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--ma-muted, #4A4A4A);
}

.ma-ab-bio__location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--ma-muted, #4A4A4A);
  justify-content: center;
}

/* Bio content */
.ma-ab-bio__content .ma-section-heading { margin-bottom: 24px; }

.ma-ab-bio__text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ma-muted, #4A4A4A);
  margin: 0 0 18px;
}
.ma-ab-bio__text p:last-child { margin-bottom: 0; }

/* Credential pills */
.ma-ab-bio__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 32px;
}

.ma-ab-bio__credential {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ma-text, #0A0A0A);
  background: var(--ma-offwhite, #F9F9F6);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 20px;
  padding: 6px 14px;
}


/* ============================================================
   S3 — VALUES
   ============================================================ */

.ma-ab-values {
  background: var(--ma-offwhite, #F9F9F6);
  padding: clamp(52px, 7vw, 80px) 0;
}

.ma-ab-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.ma-ab-value-card {
  background: #FFFFFF;
  border: 1px solid var(--ma-border-light, rgba(0,0,0,0.07));
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.ma-ab-value-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.ma-ab-value-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ma-ab-value-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ma-text, #0A0A0A);
  margin: 0;
  line-height: 1.3;
}

.ma-ab-value-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ma-muted, #4A4A4A);
  margin: 0;
}


/* ============================================================
   S4 — MISSION
   ============================================================ */

.ma-ab-mission {
  background: #FFFFFF;
  padding: clamp(52px, 7vw, 80px) 0;
}

.ma-ab-mission__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}

.ma-ab-mission__content .ma-section-heading { margin-bottom: 24px; }

.ma-ab-mission__body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ma-muted, #4A4A4A);
  margin: 0 0 18px;
}
.ma-ab-mission__body:last-child { margin-bottom: 0; }

/* Pull quote */
.ma-ab-mission__quote {
  position: sticky;
  top: 100px;
  background: linear-gradient(160deg, rgba(201,168,76,0.06) 0%, rgba(201,168,76,0.02) 100%);
  border: 1px solid rgba(201,168,76,0.20);
  border-left: 4px solid var(--ma-gold, #C9A84C);
  border-radius: 0 16px 16px 0;
  padding: 36px 32px;
}

.ma-ab-mission__quote-mark {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--ma-gold, #C9A84C);
  line-height: 0.8;
  margin-bottom: 16px;
  opacity: 0.6;
}

.ma-ab-mission__quote blockquote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ma-text, #0A0A0A);
  margin: 0 0 20px;
  font-style: normal;
}

.ma-ab-mission__cite {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ma-muted, #4A4A4A);
  font-style: normal;
}


/* ============================================================
   S5 — STATS STRIP
   ============================================================ */

.ma-ab-stats {
  background: var(--ma-offwhite, #F9F9F6);
  border-top: 1px solid var(--ma-border-light, rgba(0,0,0,0.06));
  border-bottom: 1px solid var(--ma-border-light, rgba(0,0,0,0.06));
  padding: clamp(36px, 5vw, 56px) 0;
}

.ma-ab-stats__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.ma-ab-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px 40px;
}

.ma-ab-stats__number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--ma-gold, #C9A84C);
  line-height: 1;
}

.ma-ab-stats__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ma-muted, #4A4A4A);
  text-align: center;
}

.ma-ab-stats__divider {
  width: 1px;
  height: 40px;
  background: var(--ma-border-light, rgba(0,0,0,0.10));
  flex-shrink: 0;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .ma-ab-mission__inner { grid-template-columns: 1fr; }
  .ma-ab-mission__quote { position: static; }
  .ma-ab-values__grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .ma-ab-values__grid { grid-template-columns: 1fr; }
  .ma-ab-stats__divider { display: none; }
  .ma-ab-stats__item { padding: 16px 24px; }
}
