/* Allan Benoit Studios — About page (minimal redesign) */

:root {
  --ab-ink: #1A2A4A;
  --ab-bg: #F8F6F1;
  --ab-gold: #F5C842;
  --ab-sky: #7BB3D4;
  --ab-hair: #E2DDD0;
}

.ab-page * { box-sizing: border-box; }
.ab-page {
  background: var(--ab-bg);
  color: var(--ab-ink);
  font-family: 'Jost', Arial, sans-serif;
  font-weight: 400;
}
.ab-page .ab-wrap {
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 0 48px !important;
  width: 100% !important;
}

.ab-page .ab-hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ab-sky);
  font-weight: 500;
  margin-bottom: 18px;
}

.ab-pagehead {
  padding: 60px 0 50px;
  border-bottom: 1px solid var(--ab-hair);
}
.ab-pagehead h1 {
  font-weight: 300;
  font-size: 42px;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.ab-pagehead p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5572;
  max-width: 560px;
}

.ab-about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  padding: 60px 0;
  border-bottom: 1px solid var(--ab-hair);
}
.ab-about-grid h2 {
  font-weight: 300;
  font-size: 28px;
  margin-bottom: 22px;
}
.ab-about-grid h2 em {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.ab-about-grid p {
  font-size: 15px;
  line-height: 1.75;
  color: #4a5572;
  margin-bottom: 16px;
}

.ab-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}
.ab-stat {
  min-width: 120px;
}
.ab-stat .ab-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 36px;
  color: var(--ab-sky);
  line-height: 1;
  margin-bottom: 6px;
}
.ab-stat .ab-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a8472;
}

.ab-about-side {
  padding: 36px;
  border: 1px solid var(--ab-hair);
  background: #fff;
}
.ab-about-side h3 {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 16px;
}
.ab-about-side p {
  font-size: 14px;
  line-height: 1.75;
  color: #4a5572;
  margin-bottom: 14px;
}
.ab-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.ab-tag {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 1px solid var(--ab-hair);
  color: var(--ab-ink);
}

@media (max-width: 760px) {
  .ab-page .ab-wrap { padding: 0 24px !important; }
  .ab-pagehead h1 { font-size: 32px; }
  .ab-about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
