/* Grizzly Beam — /about/ (spec: specs/about-build-spec.md)
   "What we believe" = trionn /about values pattern (Display H2 85.5px→6.25rem + rows 32.4→2.53rem). */

/* ---------- 1 · Hero ---------- */
.abt-hero { display: flex; align-items: center; justify-content: center; }
/* ---------- 2 · Why we exist ---------- */
.abt-why { background: var(--paper); color: var(--ink); padding-block: 9rem; }
.abt-why__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 6rem; align-items: start; }
.abt-why__rule { display: block; width: 3.4rem; height: 3px; background: var(--accent); }
.abt-why__title {
  font-size: 3.2rem; line-height: 1.05; letter-spacing: -0.005em; font-weight: var(--w-h2);   /* brand: H2 */
  margin-top: 1.8rem; max-width: 32rem;
}
.abt-why__body {
  font-family: var(--f-body);
  font-size: 1.55rem; line-height: 1.55;
  color: var(--tx-g); max-width: 42rem; padding-top: 0.6rem;
}
.abt-why__body + .abt-why__body { padding-top: 1.4rem; }

/* ---------- 3 · The difference (ink) ---------- */
/* Backdrop: the same beam field as "Our services" on the home page. Markup is
   components/BeamField.astro, styles (.hs__bg/.hsbg*) live in core.css, so nothing is
   duplicated here — the section only has to become the positioning context and clip
   the beams, exactly like .hs does in home.css.

   No wrapper needed, unlike /services/design-and-build/. There the dark zone was two
   sections in the same ink, so a field on the first one cut the beams mid-zone.
   .abt-diff is a single ink block between .abt-fnd (light) above and .abt-bel (light)
   below, so the field's hard bottom edge lands where the dark ends. */
.abt-diff { position: relative; overflow: clip; background: var(--ink); color: var(--tx-l); padding-block: 10rem; }
.abt-diff__ctr { position: relative; z-index: 1; }
.abt-diff__eyebrow { color: rgba(236, 232, 225, 0.65); }
.abt-diff__title {
  font-size: 5rem; line-height: 1.02; letter-spacing: -0.01em; font-weight: var(--w-display);
  color: var(--tx-l); margin-top: 1.8rem;
}
.abt-diff__body {
  font-family: var(--f-body);
  font-size: 1.55rem; line-height: 1.55;
  color: rgba(236, 232, 225, 0.72);
  max-width: 46rem; margin-top: 3.2rem;
}

/* ---------- 4 · What we believe (trionn values rows) ---------- */
.abt-bel { background: linear-gradient(0deg, var(--stone2) 0%, var(--paper) 100%); color: var(--ink); padding-block: 9rem; }
.abt-bel__title {
  font-size: 6.25rem; line-height: 0.95; letter-spacing: -0.01em; font-weight: var(--w-display);   /* trionn values H2 85.5px scale */
}
.abt-bel__list {
  list-style: none; margin-top: 4.4rem;
  display: grid; grid-auto-rows: 1fr;   /* all rows match the tallest one's height, so the bands are equal */
}
.abt-row {
  position: relative;
  display: grid; grid-template-columns: 1fr; gap: 0.6rem;   /* the description goes BELOW the heading, per the reference on brand book p. 5 */
  padding-block: 2.2rem; padding-left: 1.4rem;
  will-change: transform, opacity;
}
.abt-row::before {
  content: ""; position: absolute; left: 0; top: 2.2rem; width: 3px;
  height: calc(100% - 4.4rem);
  background: var(--accent);
}
.abt-row__name { font-size: 2.53rem; line-height: 1.1; font-weight: var(--w-h3); }   /* trionn H3 32.4px */
.abt-row__desc { color: var(--tx-g); max-width: 44rem; padding-top: 0.7rem; }

/* ---------- 5 · Closer ---------- */
.abt-closer { padding-block: 10rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1023px) {
  .abt-why__grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 767px) {
  .abt-why { padding-block: 6rem; }
  .abt-why__title { font-size: 2.6rem; }
  .abt-why__body { font-size: 1.35rem; }
  .abt-diff { padding-block: 6rem; }
  .abt-diff__title { font-size: 2.9rem; }
  .abt-diff__body { font-size: 1.35rem; }
  .abt-bel { padding-block: 6rem; }
  .abt-bel__title { font-size: 3.4rem; }
  .abt-row__name { font-size: 2rem; }
  .abt-closer { padding-block: 6rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .abt-row { opacity: 1 !important; transform: none !important; }
  .abt-row::before { transition: none; }
}

/* ============================================================
   THE FOUNDERS — paper → stone transition, lead-in to the ink section below.
   The image is an atmospheric band, NOT mapped to names: the three founders
   stand as a separate text block, so no face is labeled with
   a specific name. The placeholder image is clearly marked.
   ============================================================ */
.abt-fnd {
  background: linear-gradient(180deg, var(--paper) 0%, var(--stone2) 100%);
  color: var(--ink); padding-block: 9rem;
}
.abt-fnd__ctr { max-width: 74rem; margin-inline: auto; }
.abt-fnd__rule { display: block; width: 3.4rem; height: 3px; background: var(--accent); }
.abt-fnd__title {
  margin-top: 1.8rem;
  font-size: 3.2rem; line-height: 1.05; letter-spacing: -0.005em;
  font-weight: var(--w-h2); color: var(--ink);
}

/* image */
.abt-fnd__shot { margin-top: 3.4rem; }
.abt-fnd__shot img {
  width: 100%; height: auto; aspect-ratio: 16 / 7; object-fit: cover;
  object-position: 50% 32%;
  border-radius: var(--r-14);
  box-shadow: var(--el-md);
  opacity: 0; transform: scale(1.04);
  transition: opacity 0.9s ease, transform 1.1s cubic-bezier(0.33, 0, 0.15, 1);
}
.abt-fnd.is-on .abt-fnd__shot img { opacity: 1; transform: scale(1); }
.abt-fnd__cap { display: block; margin-top: 1rem; color: var(--tx-g); }

/* team (three until 2026-09-20, four since Head of design joined)
   Two by two, not four across: .abt-fnd__ctr is capped at 74rem (947px at 1440), so four
   columns measured 194px and wrapped every name onto two lines and every role onto three.
   At two, a name and a role each fit on one line. */
.abt-fnd__list {
  list-style: none; margin-top: 4.4rem;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.4rem 3.2rem; align-items: stretch; grid-auto-rows: 1fr;
}
.fnd { position: relative; padding: 0.2rem 0 0.4rem 1.6rem; }
.fnd::before {
  content: ""; position: absolute; left: 0; top: 0; width: 3px; height: 100%;
  background: var(--accent);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.7s cubic-bezier(0.33, 0, 0.15, 1);
}
.abt-fnd.is-on .fnd::before { transform: scaleY(1); }
.abt-fnd.is-on .fnd:nth-child(2)::before { transition-delay: 0.12s; }
.abt-fnd.is-on .fnd:nth-child(3)::before { transition-delay: 0.24s; }
.abt-fnd.is-on .fnd:nth-child(4)::before { transition-delay: 0.36s; }

.fnd__name {
  font-size: 2.1rem; line-height: 1.2; letter-spacing: -0.005em;
  font-weight: var(--w-h3); color: var(--ink);
}
.fnd__role {
  display: block; margin-top: 0.7rem;
  font-family: var(--f-mono); font-size: 0.984rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--tx-g);
}
.fnd__bio {
  font-family: var(--f-body); font-size: 1.266rem; line-height: 1.5;
  color: var(--tx-g); margin-top: 1.1rem;
}

@media (max-width: 1023px) {
  .abt-fnd { padding-block: 7rem; }
  .abt-fnd__list { gap: 3rem 2.6rem; grid-auto-rows: auto; }
  .abt-fnd__shot img { aspect-ratio: 16 / 9; }
}
@media (max-width: 767px) {
  .abt-fnd__list { grid-template-columns: 1fr; gap: 2.4rem; }
  .abt-fnd { padding-block: 6rem; }
  .abt-fnd__title { font-size: 2.6rem; }
  .abt-fnd__shot img { aspect-ratio: 4 / 3; }
  .abt-fnd__list { margin-top: 3.4rem; }
}
@media (prefers-reduced-motion: reduce) {
  .abt-fnd__shot img { opacity: 1; transform: none; transition: none; }
  .fnd::before { transform: scaleY(1); transition: none; }
}

/* State of formation, stated once in the body of the page (the footer carries it on
   every page). Same wording as /privacy/ and /terms/. */
.abt-fnd__entity { color: var(--tx-g); margin-top: 3.2rem; }
