/* =========================================================
   GRAFT /about page styles (about/index.html only)
   Single narrow centred column, editorial type-led tone.
   Depends on tokens.css + base.css + components.css (header,
   footer). Reuses .eb-edit (editorial kicker), .btn-primary,
   .btn-secondary, .dot from base.css. The .mod class on each
   section is only the fade-in hook for utils.js; about sections
   get their visual styling from the classes below (home.css is
   not linked on this page).
   ========================================================= */

/* Anchored sections clear the sticky header on jump */
[id] { scroll-margin-top: 96px; }

/* Narrow editorial column (~720px per locked spec) */
.ab-col {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.ab-section { padding: 72px 0; position: relative; z-index: 1; }
.ab-section:first-of-type { padding-top: 96px; }

/* Eyebrow spacing (uses .eb-edit from base.css) */
.ab-section .eb-edit { margin-bottom: 28px; }

/* Headings */
.ab-h1 {
  font-size: clamp(44px, 6.5vw, 80px);
  line-height: 1.0;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.ab-h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.ab-h1 .dot, .ab-h2 .dot { color: var(--lime); }

.ab-sub {
  font-size: 20px;
  color: var(--dim);
  line-height: 1.5;
}

/* Body copy, comfortable editorial measure */
.ab-body {
  font-size: 18px;
  line-height: 1.65;
  color: var(--dim);
  margin-bottom: 20px;
}
.ab-body:last-child { margin-bottom: 0; }
/* Lead and emphasis lines use the brighter text token for hierarchy */
.ab-body--lead {
  font-size: 21px;
  color: var(--text);
}
.ab-body--accent {
  color: var(--text);
  font-weight: 700;
}

/* WHY NOW: small lime accent line above the section */
.ab-accent-line {
  width: 48px; height: 2px;
  background: var(--lime);
  margin-bottom: 28px;
  border-radius: 2px;
}

/* THE FOUNDER: full-width photo placeholder above the copy */
.ab-founder-photo {
  width: 100%;
  aspect-ratio: 4 / 5;          /* reserves space, CLS 0 */
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 1px solid var(--border-2);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 36px;
}
.ab-founder-photo img {
  width: 100%; height: 100%;
  object-fit: cover;            /* letterbox crop of the ~square source */
  display: block;
}
/* Owner can switch to B&W: .ab-founder-photo img { filter: grayscale(1); } */

/* CLOSING CTA: centred */
.ab-closing { text-align: center; padding: 96px 0 104px; }
.ab-closing .ab-h2 { margin-bottom: 16px; }
.ab-closing-sub {
  font-size: 18px;
  color: var(--dim);
  margin-bottom: 36px;
}
.ab-cta-row {
  display: flex; flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 600px) {
  .ab-col { padding: 0 20px; }
  .ab-section { padding: 56px 0; }
  .ab-section:first-of-type { padding-top: 72px; }
  .ab-closing { padding: 72px 0 80px; }
}
