/* =========================================================================
   Mareto — About page
   Page-specific sections only. The shared design system (reset, nav, footer,
   buttons, eyebrow, manifesto, why-item, cta, animations, variables) lives in
   styles.css, which must be loaded first.

   The hero is white — the shared nav is solid black on every page, so it reads
   as a band above the page rather than sitting over the hero.
   ========================================================================= */

a:not(.btn):hover { color: var(--brand-green); } /* .btn text color is owned by the button variants in styles.css */

/* ---------- HERO ---------- */
.ab-hero { max-width: 1080px; margin: 0 auto; padding: 128px var(--pad-x) 0; text-align: center; animation: dUp .7s ease both; }
.ab-hero__title {
  margin: 18px 0 0; font-family: 'Newsreader', Georgia, serif; font-weight: 400;
  font-size: clamp(42px, 5.6vw, 72px); line-height: 1.02; letter-spacing: -.035em;
  color: var(--ink-strong); text-wrap: balance;
}
.ab-hero__title em { font-style: italic; color: var(--brand-green); }
.ab-hero__sub { margin: 30px auto 0; max-width: 58ch; font-size: 18.5px; line-height: 1.66; color: var(--body); }

/* Thin rule marking the end of the hero without a hard section edge. */
.ab-hero__rule { max-width: 1080px; margin: 96px auto 0; padding: 0 var(--pad-x); }
.ab-hero__rule span { display: block; height: 1px; background: var(--line); }

/* ---------- MISSION ---------- */
/* Same 1200px container as the beliefs section below, so the two blocks share
   a left edge; the measure is capped on the children instead. */
.ab-mission { max-width: 1200px; margin: 0 auto; padding: 96px var(--pad-x) 0; }
.ab-mission p, .ab-mission .ab-pull { max-width: 68ch; }
.ab-kicker {
  display: inline-block; font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: 11.5px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-3);
}
.ab-mission p { margin: 0 0 22px; font-size: 18px; line-height: 1.72; color: var(--body); }
.ab-mission p:last-child { margin-bottom: 0; }
.ab-mission strong { color: var(--ink-strong); font-weight: 600; }
.ab-mission .ab-kicker { margin-bottom: 28px; }
.ab-pull {
  margin: 40px 0; padding: 0 0 0 26px; border-left: 3px solid var(--brand-green);
  font-family: 'Newsreader', Georgia, serif; font-size: 25px; line-height: 1.36;
  letter-spacing: -.02em; color: var(--ink-strong);
}

/* ---------- BELIEFS (reuses .why-item from styles.css) ---------- */
.ab-values { max-width: 1200px; margin: 0 auto; padding: 130px var(--pad-x); }
.ab-values__head { max-width: 760px; }
.ab-values__title {
  margin-top: 26px; font-family: 'Newsreader', Georgia, serif; font-weight: 500;
  font-size: clamp(30px, 3.8vw, 46px); line-height: 1.06; letter-spacing: -.03em;
  color: var(--ink-strong); text-wrap: balance;
}
.ab-values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; margin-top: 72px; }
.ab-values .why-item__title { font-family: 'Newsreader', Georgia, serif; font-weight: 500; font-size: 22px; }

/* ---------- CONTACT LINE ---------- */
.ab-contact { max-width: 1080px; margin: 120px auto 0; padding: 0 var(--pad-x); text-align: center; }
.ab-contact p { font-size: 15.5px; line-height: 1.7; color: var(--muted); }
.ab-contact a { color: var(--brand-green); font-weight: 600; text-decoration: none; }
.ab-contact a:hover { text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 900px) {
  .ab-hero { padding-top: 76px; }
  .ab-hero__rule { margin-top: 64px; }
  .ab-mission { padding-top: 64px; }
  .ab-values { padding: 96px var(--pad-x); }
  .ab-values__grid { grid-template-columns: 1fr; gap: 44px; margin-top: 52px; }
  .ab-contact { margin-top: 88px; }
}
@media (max-width: 560px) {
  .ab-pull { font-size: 21px; padding-left: 20px; }
}
