/* About page */

/* ---------- hero ---------- */

.about-hero {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-forest);
}

.about-hero-media {
  position: absolute;
  inset: -10% -5% -5%;
  z-index: 0;
}

/* Hero photo. Sits under the .about-hero-media::after scrim below. */
.about-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-media .image-pending {
  position: absolute;
  inset: 0;
  height: 100%;
  border-radius: 0;
}

/* Scrim dropped from 0.82/0.62/0.72 to 0.55/0.42/0.48 now that a real photograph
   sits under it instead of a gradient. The two go together: the photo is exported
   at 50% exposure, so a lighter scrim still lands on a dark composite. Measured
   against the lightest 5% of the image, the 78%-white lead copy reads 5.7:1 —
   better than the 4.1:1 it got from a full-brightness photo under the old heavy
   scrim, while showing 45% of the picture instead of 18%.
   Change one of these and you have to re-check the other. */
.about-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(160deg, rgba(20, 32, 12, 0.55) 0%, rgba(28, 44, 20, 0.42) 50%,
    rgba(34, 52, 24, 0.48) 100%);
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  padding: 140px var(--gutter) 90px;
}

/* 1100 to match the other heroes — see the note on .pp-hero-content. The lead
   paragraph below keeps its own 600px measure, so only the headline widens. */
.about-hero-content {
  max-width: 1100px;
}

.about-hero-content h1 {
  color: var(--color-white);
}

.about-hero-lead {
  margin-top: 26px;
  font-family: var(--font-serif);
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 600px;
}

.about-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.about-hero-stat-num {
  font-size: 1.6875rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--color-accent);
}

.about-hero-stat-label {
  margin-top: 7px;
  font-size: 0.71875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- mission ---------- */

.about-mission {
  background: var(--color-white);
  padding: var(--space-section-md) 0;
}

.about-mission-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.about-mission-head h2 {
  margin-top: 16px;
  color: var(--color-ink);
}

.about-mission-body {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-mission-body p {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--color-muted);
}

/* ---------- carbon legacy / ITF ---------- */

.about-itf {
  background: var(--color-accent-soft);
  padding: var(--space-section-md) 0;
}

.about-itf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

.about-itf-content h2 {
  margin-top: 16px;
  color: var(--color-ink);
}

.about-itf-lead {
  margin-top: 22px;
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  line-height: 1.75;
  color: var(--color-accent-text);
  max-width: 520px;
}

.about-itf-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.about-itf-point {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

/* Matches the ITF checklist on the home page — an svg mark nudged onto the
   optical center of the first line of text rather than the top of it. */
.about-itf-point span {
  flex: none;
  display: flex;
  margin-top: 2px;
  color: var(--color-accent);
}

.about-itf-point p {
  font-size: 0.96875rem;
  line-height: 1.6;
  color: var(--color-ink);
}

/* Panel look comes from .itf-tree-scene in base.css. The height matches the home
   page panel because the tree and soil percentages are tuned to that ratio — at
   the old 460px the soil took over and the tree read as buried. */
.about-itf-media {
  height: clamp(400px, 48vw, 560px);
}

/* ---------- recognition ---------- */

.about-recognition {
  background: var(--color-white);
  padding: var(--space-section-md) 0;
}

.about-recognition-head {
  max-width: 720px;
}

.about-recognition-head h2 {
  margin-top: 16px;
  color: var(--color-ink);
}

.about-recognition-lead {
  margin-top: 20px;
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  line-height: 1.75;
  color: var(--color-muted);
}

.about-cert-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.about-cert-card {
  padding-bottom: 32px;
}

.about-cert-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--color-accent-tint-bg);
  color: var(--color-accent-text);
  font-size: 1.0625rem;
  font-weight: 900;
}

.about-cert-card h3 {
  margin-top: 18px;
}

.about-cert-card p {
  margin-top: 9px;
  font-family: var(--font-serif);
  font-size: 0.90625rem;
  line-height: 1.7;
  color: var(--color-muted);
}

/* ---------- cumulative impact ---------- */

.about-impact {
  background: var(--color-ink);
  padding: var(--space-section-sm) 0;
}

.about-impact-eyebrow {
  font-size: 0.71875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
  margin-bottom: 34px;
}

.about-impact-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 8px;
}

.about-impact-stat {
  text-align: center;
  padding: 18px 16px;
}

.about-impact-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: -0.03em;
}

.about-impact-label {
  margin-top: 12px;
  font-size: 0.71875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

/* ---------- final CTA ---------- */

.about-cta {
  padding: var(--space-section-lg) 0;
  background: var(--gradient-forest);
}

.about-cta-inner {
  max-width: 780px;
  text-align: center;
}

.about-cta-inner h2 {
  color: var(--color-white);
}

.about-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 38px;
}
