/* =========================
   ABOUT HERO
========================= */
.about-hero {
  background:
    linear-gradient(rgba(8, 18, 40, 0.72), rgba(8, 18, 40, 0.72)),
    url("../assets/images/Production.jpg") center/cover no-repeat;
  padding: 140px 40px 120px;
  text-align: center;
  color: #fff;
}

.about-hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.about-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 18px;
  line-height: 1.15;
}

.about-hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  line-height: 1.7;
}

/* =========================
   ABOUT SECTIONS
========================= */
.about-section {
  padding: 80px 40px;
  background: var(--white);
}

.about-section.light {
  background: var(--mist);
}

.about-container {
  max-width: 860px;
  margin: 0 auto;
}

.about-container .section-title {
  margin-bottom: 24px;
}

.about-container p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.about-container p:last-child {
  margin-bottom: 0;
}

/* =========================
   FOUNDERS
========================= */
.founders-section {
  padding: 88px 40px;
  background: var(--white);
}

.founders-section .about-container {
  max-width: 1000px;
}

.founders-section .section-subtitle {
  margin-bottom: 56px;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.founder-card {
  text-align: center;
  background: var(--mist);
  padding: 40px 28px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: box-shadow var(--ease), transform var(--ease);
}

.founder-card:hover {
  box-shadow: 0 10px 28px rgba(13, 31, 60, 0.09);
  transform: translateY(-2px);
}

.founder-photo {
  width: 110px;
  height: 110px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--border);
  background: var(--white);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.founder-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.founder-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* =========================
   VALUES SECTION
========================= */
.values-section {
  padding: 88px 40px;
  background: var(--navy);
}

.values-section .section-label {
  color: #8da3bf;
}

.values-section .section-title {
  color: var(--white);
  margin-bottom: 48px;
}

.values-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

.value-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  transition: background var(--ease);
}

.value-card:hover {
  background: rgba(255,255,255,0.08);
}

.value-card-icon {
  width: 36px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 18px;
  border-radius: 2px;
}

.value-card h4 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 600;
}

.value-card p {
  font-size: 0.88rem;
  color: #8da3bf;
  line-height: 1.65;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .about-hero {
    padding: 100px 24px 80px;
  }

  .about-section,
  .founders-section,
  .values-section {
    padding: 60px 24px;
  }

  .founders-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }

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