/* ═══ About Us ══════════════════════════════════════════════ */
/* Plain cream and the contour pattern, like every other hero. The hero is
   pulled up under the transparent nav so the pattern runs to the very top
   of the window; the padding puts the headline back where it was. */
.ab-hero { overflow: hidden; min-height: 528px; }
.ab-hero .wrap { padding-bottom: 128px; }

.ab-hero .h-page {
  line-height: 1.06;
  letter-spacing: -0.025em;
  max-width: 15ch;
}
.ab-hero .lede { max-width: 42ch; margin-top: 24px; }

/* AVIF (1860px wide) with the 768px webp as the fallback — at this
   display size the webp alone would visibly upscale. */
.ab-goat {
  position: absolute;
  right: 200px;
  /* sits flush on the section edge, so the whole rock shelf reads as a
     plinth rather than being clipped into the band below */
  bottom: 0;
  display: block;
  /* same width curve the production hero uses, so the goat lands at the
     same sampling density (600px painted from an 1860px source) */
  width: clamp(300px, 42vw, 600px);
  filter: drop-shadow(0 22px 34px rgba(37, 35, 34, 0.2));
  pointer-events: none;
}
.ab-goat img { display: block; width: 100%; height: auto; }

/* Mission, Vision and Execution read as one centred column of statements:
   a hairline tick separates each from the next, and a rail floats down
   either side of the set. Nothing brackets the set top and bottom — the
   ticks divide, they do not enclose. The rails are short of the block
   they flank, so they read as marks in the margin rather than a frame. */
.ab-rows { padding: 64px 0 48px; }

.ab-rows .wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
.ab-rows .wrap::before,
.ab-rows .wrap::after {
  content: "";
  position: absolute;
  top: 32px;
  bottom: 32px;
  width: 1px;
  background: var(--cm-border-strong);
}
.ab-rows .wrap::before { left: 148px; }
.ab-rows .wrap::after { right: 148px; }

.ab-row { text-align: center; }

.ab-row + .ab-row::before {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  margin: 0 auto 64px;
  background: var(--cm-border-strong);
}

.ab-row h2 {
  font-family: var(--cm-font-sans);
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cm-accent);
  margin: 0 0 22px;
}

.ab-row p {
  font-family: var(--cm-font-serif);
  font-weight: 300;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: var(--cm-tracking-snug);
  color: var(--cm-ink-primary);
  margin: 0 auto;
  max-width: 48ch;
  text-wrap: pretty;
}

.ab-investors { padding: 96px 0; }
.ab-investors .h-sec { margin: 0 0 44px; text-align: center; }
/* One row, so every cell closes off along the bottom. */
.ab-investors .logo-grid > * {
  height: 130px;
  border-bottom: 1px solid rgba(255, 255, 254, 0.16);
  opacity: 0.8;
  transition: opacity 0.2s;
}
.ab-investors .logo-grid > *:hover { opacity: 1; }

/* The name story, with the goat cropped out of the bottom corner. */
.ab-name { position: relative; overflow: hidden; padding: 48px 0 64px; }

.ab-name .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: center;
}

.ab-name .h-sec { line-height: 1.12; max-width: 20ch; }
.ab-name p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--cm-ink-secondary);
  margin: 20px 0 0;
  max-width: 52ch;
}

/* The mountain photo, cropped to its lower band so the ridge and the
   animal on it read at this height rather than the empty sky above. */
.ab-name-photo {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 100%;
  border-radius: var(--cm-radius);
  box-shadow:
    0 24px 48px -20px rgba(37, 35, 34, 0.35),
    0 4px 12px rgba(37, 35, 34, 0.08);
}
@media (max-width: 940px) {
  /* Less right offset, so the goat stays in frame beside the copy. */
  .ab-goat { right: 48px; }

  .ab-rows .wrap::before,
  .ab-rows .wrap::after { display: none; }

  .ab-name .wrap { grid-template-columns: 1fr; gap: 32px; }
  .ab-name-photo { height: 220px; }
}

@media (max-width: 767px) {
  /* The goat is hidden at this width; extra air replaces it. */
  .ab-hero { padding-top: 112px; min-height: 0; }
  .ab-hero .wrap { padding-bottom: 64px; }
  .ab-goat { display: none; }

  .ab-row p { font-size: 21px; }

  .ab-name { padding: 64px 0; }

  /* One column of investor cells: the row rules take over from the
     column rules, and only the last cell closes the set. */
  .ab-investors .logo-grid.cols-3 { grid-template-columns: 1fr; }
  .ab-investors .logo-grid > * {
    height: 96px;
    padding: 0 12px;
    border-left: 0;
    border-bottom: 0;
  }
  .ab-investors .logo-grid > *:last-child {
    border-bottom: 1px solid rgba(255, 255, 254, 0.16);
  }
}
