/* ==========================================================================
   About Simitri — page-specific styles.
   Composes shared classes from site.css/tokens.css; owns only the
   "Our Belief" framework diagram, vision/mission, founders, network,
   text logo-wall and the closing CTA. Mobile-first; reduced-motion safe.
   ========================================================================== */

/* --- Overview split -------------------------------------------------------- */
.about-overview {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}
.about-overview__lead h2 { margin-top: var(--sp-2); }
.about-overview__photo {
  width: 100%;
  height: auto;
  display: block;
  margin-top: var(--sp-6);
  border-radius: var(--radius);
  box-shadow: 0 20px 40px -18px rgba(11, 74, 46, 0.3);
}
@media (min-width: 880px) {
  .about-overview { grid-template-columns: 0.9fr 1.1fr; gap: var(--sp-8); align-items: start; }
}

/* --- "Our Belief" framework ------------------------------------------------ */
/* Mobile-first: an elegant vertical list with a hairline spine.               */
.belief {
  position: relative;
  margin: var(--sp-7) auto 0;
  max-width: 34rem;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  padding-left: var(--sp-6);
}
.belief::before { /* the spine (mobile) */
  content: "";
  position: absolute;
  top: 6px; bottom: 6px; left: 5px;
  width: 1px;
  background: var(--border);
}
.belief__core {
  position: relative;
  margin-bottom: var(--sp-3);
}
.belief__core-kicker {
  display: block;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.belief__core-title {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 600;
}
.belief__node { position: relative; }
.belief__dot {
  position: absolute;
  left: calc(-1 * var(--sp-6) + 1px);
  top: 8px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent-deep);
  box-shadow: 0 0 0 4px var(--bg);
}
.belief__label {
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  font-weight: 600;
  margin: 0 0 4px;
}
.belief__desc {
  margin: 0;
  color: var(--text-2);
  font-size: var(--fs-small);
  max-width: none;
}

/* Desktop: radial orbit around a central core (CSS trig positioning). */
@media (min-width: 880px) {
  .belief {
    --r: 13rem;
    display: block;
    max-width: 40rem;
    height: 33rem;
    padding-left: 0;
  }
  .belief::before { display: none; }
  .belief__core {
    position: absolute;
    top: 50%; left: 50%;
    width: 9.5rem; height: 9.5rem;
    margin: -4.75rem 0 0 -4.75rem;
    border: 1px solid var(--accent-deep);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2px;
    background: var(--bg);
    z-index: 2;
  }
  .belief__node {
    position: absolute;
    top: 50%; left: 50%;
    width: 10rem;
    margin: -2.5rem 0 0 -5rem;
    padding: var(--sp-4);
    text-align: center;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transform: translate(calc(cos(var(--a)) * var(--r)), calc(sin(var(--a)) * var(--r)));
    z-index: 2;
  }
  .belief__node::before { /* spoke to the core */
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    width: var(--r);
    height: 1px;
    background: var(--border);
    transform-origin: 0 0;
    transform: rotate(calc(var(--a) + 180deg));
    z-index: -1;
  }
  .belief__dot {
    position: static;
    display: block;
    width: 8px; height: 8px;
    margin: 0 auto var(--sp-2);
    box-shadow: none;
  }
  .belief__desc { font-size: 0.8rem; line-height: 1.45; }
}

/* --- Vision & Mission ------------------------------------------------------ */
.vm__card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-7);
}
.vm__text {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 560;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: var(--sp-3) 0 var(--sp-4);
}
.vm__todo { color: var(--text-2); font-style: italic; margin: 0; }

/* --- Founders -------------------------------------------------------------- */
.about-founders { display: grid; grid-template-columns: 1fr; gap: var(--sp-7); }
@media (min-width: 880px) {
  .about-founders { grid-template-columns: 1.1fr 0.9fr; gap: var(--sp-8); align-items: start; }
}
.about-founders__list { list-style: none; margin: 0; padding: 0; }
.about-founders__item {
  display: flex;
  flex-direction: column;
  padding: var(--sp-5) 0;
  border-top: 1px solid var(--border);
}
.about-founders__item:last-child { border-bottom: 1px solid var(--border); }
.about-founders__name {
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  font-weight: 600;
}
.about-founders__role { font-size: var(--fs-small); color: var(--text-2); margin-top: 2px; }

/* --- Consulting network (dark) --------------------------------------------- */
.about-network { display: grid; grid-template-columns: 1fr; gap: var(--sp-6); }
@media (min-width: 880px) {
  .about-network { grid-template-columns: 0.8fr 1.2fr; gap: var(--sp-8); align-items: start; }
}
.about-network__points {
  list-style: none;
  margin: var(--sp-6) 0 0;
  padding: 0;
}
.about-network__points li {
  position: relative;
  padding: var(--sp-4) 0 var(--sp-4) var(--sp-6);
  border-top: 1px solid var(--border-dark);
  color: var(--text-2-on-dark);
}
.about-network__points li::before {
  content: "";
  position: absolute;
  left: 0; top: calc(var(--sp-4) + 0.55em);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* --- Client logo wall ------------------------------------------------------- */
.logo-wall--text { gap: var(--sp-5) var(--sp-8); margin-top: var(--sp-7); }
.logo-wall__logo { height: 30px; width: auto; filter: grayscale(1); opacity: 0.6; transition: filter var(--dur-hover) ease-out, opacity var(--dur-hover) ease-out; }
@media (hover: hover) { .logo-wall__logo:hover { filter: grayscale(0); opacity: 1; } }
/* Wordmark-style chip for clients without a logo file yet — a solid hairline
   + tint reads as a deliberate brand mark, not a "TODO" sketch (a dashed
   border does the opposite, so avoid it here). */
.logo-wall__placeholder {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  font-style: italic;
  color: var(--accent-deep);
  letter-spacing: 0.01em;
  padding: 10px 20px;
  background: var(--tint);
  border-radius: var(--radius);
}
.about-clients__note { max-width: 46rem; margin-top: var(--sp-6); color: var(--text-2); font-style: italic; }

/* --- Closing CTA ----------------------------------------------------------- */
.about-cta__inner, .industries-cta__inner { max-width: 40rem; }
.about-cta .lede, .industries-cta .lede { max-width: 34rem; margin-bottom: var(--sp-6); }
