/*
  =============================================================
  about.css — About Page Styles
  =============================================================
*/


/* =============================================================
   1. HERO — Dark full-width banner with headline
   ============================================================= */
.about-hero {
  background: #0f0e0d;
  padding: 64px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow behind headline */
.about-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(194,65,12,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.about-hero__headline {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  max-width: 760px;
  margin: 0 auto 24px;
}

.about-hero__headline em {
  font-style: normal;
  color: var(--color-primary);
}

.about-hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}


/* =============================================================
   2. WHO WE ARE — Intro text + 3 pillars
   ============================================================= */
.founders {
  background: #fff;
  padding: var(--section-padding) 0;
}

.who-we-are__body {
  max-width: 720px;
  margin: 32px auto 64px;
  text-align: center;
}

.who-we-are__body p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-body-text);
  margin-bottom: 16px;
}

.who-we-are__body p:last-child {
  margin-bottom: 0;
}

.who-we-are__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.who-pillar {
  background: #0f0e0d;
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.who-pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(194,65,12,0.18);
}

/* Subtle orange glow top edge on hover */
.who-pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--color-primary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.who-pillar:hover::before {
  opacity: 1;
}

.who-pillar__icon {
  width: 52px;
  height: 52px;
  background: rgba(194,65,12,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 24px;
  border: 1px solid rgba(194,65,12,0.25);
}

.who-pillar__icon svg {
  width: 24px;
  height: 24px;
}

.who-pillar h3 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.who-pillar p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin: 0;
}


/* =============================================================
   3. STORY — Full narrative split section
   ============================================================= */
.story {
  background: var(--color-surface);
  padding: var(--section-padding) 0;
}

.story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.story__headline {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-black);
  margin-bottom: 24px;
}

.story__body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-body-text);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Stats column */
.story__stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-stat {
  background: #fff;
  border-radius: 16px;
  padding: 32px 36px;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
}

.story-stat__number {
  font-size: 52px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.story-stat__label {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 4px;
}

.story-stat__desc {
  font-size: 14px;
  color: var(--color-body-text);
  line-height: 1.6;
}


/* =============================================================
   4. VALUES — 3-column cards
   ============================================================= */
.values {
  background: #fff;
  padding: var(--section-padding) 0;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.value-card {
  background: var(--color-surface);
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.07);
}

.value-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(194,65,12,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.value-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-primary);
  stroke-width: 2;
  fill: none;
}

.value-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 10px;
}

.value-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-body-text);
}


/* =============================================================
   5. CTA STRIP — Dark closing banner
   ============================================================= */
.about-cta {
  background: #0f0e0d;
  padding: 96px 0;
  text-align: center;
}

.about-cta__headline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.about-cta__headline em {
  font-style: normal;
  color: var(--color-primary);
}

.about-cta__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.about-cta__btn {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.about-cta__btn:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}


/* =============================================================
   6. RESPONSIVE — TABLET
   ============================================================= */
@media (max-width: 1023px) {

  .who-we-are__pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .story__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

}


/* =============================================================
   7. RESPONSIVE — MOBILE
   ============================================================= */
@media (max-width: 767px) {

  .about-hero {
    padding: 100px 0 72px;
  }

  .who-we-are__pillars {
    grid-template-columns: 1fr;
  }

  .values__grid {
    grid-template-columns: 1fr;
  }

  .story__stats {
    grid-template-columns: 1fr;
  }

}
