/* ==========================================================================
   about-page.css — "Our Story" and "Our Vision" sections on about.html.
   "Our Journey" reuses timeline.css and "Quality" reuses quality.css —
   both already built for the homepage and visually consistent here.
   ========================================================================== */

/* ---- Our Story ----------------------------------------------------------- */
.story {
  padding-block: var(--sp-11) var(--sp-10);
  background: var(--paper);
}

.story__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--sp-9);
  align-items: start;
}

.story__media {
  position: sticky;
  top: 110px;
}
.story__media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.story__founders {
  margin-top: var(--sp-5);
  padding: var(--sp-5);
  background: var(--steel-50);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--ember-500);
}
.story__founders-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel-600);
  margin-bottom: 0.6em;
}
.story__founders-names {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink-900);
  line-height: 1.4;
}
.story__founders-role {
  font-size: 0.85rem;
  color: var(--steel-600);
  margin-top: 0.4em;
}

.story__body h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--ink-900);
  line-height: 1.18;
  margin-bottom: var(--sp-6);
  text-wrap: balance;
}

.story__para {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-700);
  margin-bottom: var(--sp-5);
}
.story__para:last-of-type {
  margin-bottom: 0;
}

.story__pullquote {
  margin: var(--sp-7) 0;
  padding: var(--sp-6);
  background: var(--indigo-900);
  border-radius: var(--radius-md);
  position: relative;
}
.story__pullquote p {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #fff;
}
.story__pullquote span {
  display: block;
  margin-top: var(--sp-3);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ember-400);
  font-style: normal;
}

.story__stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-8);
  padding-top: var(--sp-7);
  border-top: 1px solid var(--steel-100);
}
.story__stat {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}
.story__stat-num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--flame-500);
}
.story__stat-label {
  font-size: 0.8rem;
  color: var(--steel-600);
  line-height: 1.4;
}

@media (max-width: 940px) {
  .story__grid {
    grid-template-columns: 1fr;
  }
  .story__media {
    position: static;
  }
  .story__media img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  .story__stat-row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: var(--sp-6);
  }
}

/* ---- Our Vision ------------------------------------------------------------ */
.vision {
  padding-block: var(--sp-10);
  background: var(--steel-50);
}

.vision__head {
  max-width: 760px;
  margin-bottom: var(--sp-8);
}

.vision__statement {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.4;
  color: var(--indigo-800);
  padding-left: var(--sp-6);
  border-left: 4px solid var(--ember-500);
  margin-bottom: var(--sp-9);
  text-wrap: balance;
}

.vision__pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}

.vision__pillar {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: var(--sp-6) var(--sp-5);
  box-shadow: var(--shadow-sm);
}

.vision__pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--grad-ember);
  color: #2a0f04;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
}
.vision__pillar-icon svg {
  width: 22px;
  height: 22px;
}

.vision__pillar h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink-900);
  margin-bottom: 0.6em;
}

.vision__pillar p {
  font-size: 0.87rem;
  line-height: 1.6;
  color: var(--steel-600);
}

@media (max-width: 980px) {
  .vision__pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .vision__pillars {
    grid-template-columns: 1fr;
  }
  .vision__statement {
    padding-left: var(--sp-4);
  }
}

/* ---- Shared pre-footer CTA banner ------------------------------------------
   Reused as-is on about.html, products.html, certifications-clients.html
   and gallery.html — a light, consistent close before the footer. */
.cta-banner {
  background: var(--grad-indigo);
  padding-block: var(--sp-9);
  text-align: center;
}
.cta-banner__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ember-400);
  margin-bottom: var(--sp-4);
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: #fff;
  max-width: 32ch;
  margin-inline: auto;
  margin-bottom: var(--sp-6);
  text-wrap: balance;
}
.cta-banner__ctas {
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.cta-banner .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.cta-banner .btn-outline:hover {
  border-color: #fff;
}
