/* about-visuals - illustrated proof cards on /about. */
.about-visuals {
  padding-top: 32px;
}

.about-visuals__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-visual {
  background: var(--hc-paper, #ffffff);
  border: 1px solid rgba(180, 151, 115, 0.18);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.about-visual:hover {
  border-color: rgba(180, 151, 115, 0.42);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -16px rgba(26, 23, 20, 0.16);
}

.about-visual__art {
  aspect-ratio: 280 / 200;
  width: 100%;
  overflow: hidden;
  display: block;
}

.about-visual__art svg {
  width: 100%;
  height: 100%;
  display: block;
}

.about-visual__title {
  font-family: var(--hc-serif, "Playfair Display", Georgia, serif);
  font-size: 17px;
  font-weight: 500;
  margin: 16px 22px 6px;
  line-height: 1.25;
  color: var(--hc-ink, #1a1714);
}

.about-visual__lede {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(26, 23, 20, 0.62);
  margin: 0 22px 22px;
}

@media (max-width: 980px) {
  .about-visuals__grid {
    grid-template-columns: 1fr;
  }
}

.about-flow__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 12px 48px;
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.about-flow__head .hc-eyebrow {
  grid-column: 1 / -1;
}

.about-flow__head h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--hc-serif, "Playfair Display", Georgia, serif);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.03;
}

.about-flow__head p {
  margin: 0 0 4px;
  color: rgba(26, 23, 20, 0.62);
  font-size: 16px;
  line-height: 1.6;
}

.about-flow__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(36px, 6vw, 84px);
  padding-top: 30px;
  border-top: 1px solid rgba(141, 109, 71, 0.24);
}

.about-flow__process,
.about-flow__audience {
  min-width: 0;
}

.about-flow__process h3,
.about-flow__audience h3 {
  margin: 9px 0 24px;
  font-family: var(--hc-serif, "Playfair Display", Georgia, serif);
  font-size: clamp(27px, 2.7vw, 40px);
  font-weight: 500;
  line-height: 1.08;
}

.about-flow__steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-flow__steps li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(141, 109, 71, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.about-flow__steps li:hover {
  transform: translateX(4px);
  border-color: rgba(47, 111, 76, 0.42);
}

.about-flow__steps li > span {
  color: #2f6f4c;
  font-family: var(--hc-mono, "JetBrains Mono", monospace);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.about-flow__steps strong,
.about-flow__audience-list strong {
  display: block;
  color: #1a1714;
  font-size: 16px;
}

.about-flow__steps p {
  margin: 5px 0 0;
  color: rgba(26, 23, 20, 0.62);
  line-height: 1.5;
}

.about-flow__audience-list {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.about-flow__audience-list > div {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 16px 18px 16px 24px;
  border: 1px solid rgba(141, 109, 71, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.about-flow__audience-list > div::before {
  content: "";
  position: absolute;
  inset: 12px auto 12px 0;
  width: 3px;
  background: #2f6f4c;
}

.about-flow__audience-list > div:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 111, 76, 0.36);
  background: rgba(255, 255, 255, 0.9);
}

.about-flow__audience-list span {
  color: rgba(26, 23, 20, 0.6);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .about-flow__head,
  .about-flow__layout {
    grid-template-columns: 1fr;
  }
  .about-flow__layout {
    gap: 44px;
  }
}

@media (max-width: 560px) {
  .about-flow__head h2 {
    font-size: 34px;
  }
  .about-flow__process h3,
  .about-flow__audience h3 {
    font-size: 28px;
  }
}
