/* Brooklyn Alpha Media — About page styles */

.ab-hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 540px;
  border-bottom: 1px solid var(--line);
}

.ab-copy {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  border-right: 1px solid var(--line);
}

.ab-intro .k-accent { margin-bottom: 10px; }

.ab-copy h1 {
  font-family: var(--sans);
  font-size: clamp(40px, 5.5vw, 78px);
  letter-spacing: -0.04em;
  line-height: .9;
  margin: 12px 0 0;
  font-weight: 500;
}

.ab-copy h1 em { font-family: var(--serif); font-style: italic; color: var(--fg-2); font-weight: 400; }

.ab-bio {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 480px;
}

.ab-bio p { margin: 0 0 16px; }
.ab-bio p:last-child { margin-bottom: 0; }

.ab-sig {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--fg-2);
  line-height: 1.2;
}

.ab-sig strong {
  color: var(--accent);
  font-weight: 400;
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.ab-portrait { min-height: 540px; }

.ab-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.ab-value {
  background: var(--bg-2);
  padding: 36px 28px;
}

.ab-value .k-accent { margin-bottom: 12px; }

.ab-value h3 {
  font-family: var(--sans);
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  font-weight: 500;
}

.ab-value h3 em { font-family: var(--serif); font-style: italic; color: var(--fg-2); font-weight: 400; }

.ab-value p { font-size: 14px; line-height: 1.6; color: var(--fg-2); margin: 0; }

/* Promise / facts — replaces ab-stats */
.ab-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.ab-fact {
  background: var(--bg-2);
  padding: 32px 24px;
}

.ab-fact .k { margin-bottom: 12px; color: var(--accent); }

.ab-fact-label {
  font-family: var(--sans);
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 500;
  line-height: 1.2;
  color: var(--fg);
}

.ab-fact-label em { font-family: var(--serif); font-style: italic; color: var(--fg-2); font-weight: 400; }

.ab-cta {
  padding: 48px 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.ab-cta h2 {
  font-family: var(--sans);
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.02em;
  margin: 8px 0 0;
  font-weight: 500;
}

.ab-cta h2 em { font-family: var(--serif); font-style: italic; color: var(--fg-2); font-weight: 400; }

@media (max-width: 1000px) {
  .ab-hero { grid-template-columns: 1fr; min-height: auto; }
  .ab-copy { border-right: none; border-bottom: 1px solid var(--line); padding: 36px 24px; }
  .ab-portrait { min-height: 360px; }
  .ab-values { grid-template-columns: 1fr; }
  .ab-facts { grid-template-columns: repeat(2, 1fr); }
  .ab-cta { padding: 32px 24px; }
}

@media (max-width: 600px) {
  .ab-facts { grid-template-columns: 1fr 1fr; }
  .ab-cta { flex-direction: column; align-items: flex-start; }
}
