/* ============================
   ABOUT — HERO SECTION
============================ */

.about-hero {
  min-height: 60vh;
  padding: 4rem 1rem;

  /* Replace with your placeholder image path */
  background: url("/images/about-hero.webp") center/cover no-repeat;
}

/* Dark overlay for readability */
.about-hero-overlay {
  background: rgba(0, 0, 0, 0.85);
}

/* Eyebrow text */
.about-hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  opacity: 0.9;
}

/* Main title */
.about-hero-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.2;
}

/* Subtitle */
.about-hero-subtitle {
  font-size: clamp(1rem, 2.4vw, 1.125rem);
  max-width: 36rem;
  /* opacity: 0.95; */
}

@media (min-width: 992px) {
  .about-hero {
    min-height: 70vh;
    padding: 6rem 1rem;
  }
}


/* ============================
   SECTION 2 — OUR STORY
   ============================ */

.about-story {
  background-color: var(--color-surface); /* light brand-neutral background */
}

.about-story-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-brand-dark);
}

.about-story-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-body);
}

.about-story-accent {
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background-color: var(--color-brand-primary); /* brand green */
}

/* Image Enhancements */
.about-story-img {
  border-radius: var(--radius-lg);
  object-fit: cover;
  width: 100%;
  height: auto;
}

.about-story-figure {
  margin: auto;
}


/* ============================
   SECTION 3 — MISSION & VALUES
============================ */

.about-mission {
  /* background-color: #f4f7ec; very light green band */
  background-color: var(--color-surface);
}

.about-mission-title {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 700;
  color: var(--color-brand-dark);
}

.about-mission-accent {
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background-color: var(--color-brand-primary);
}

/* Cards */
.about-mission-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.about-mission-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

/* Icon circle */
.about-mission-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: var(--color-surface-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-mission-icon {
  font-size: 1.7rem;
  color: var(--color-brand-primary);
}

/* Label */
.about-mission-label {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--color-brand-dark);
}



/* ============================
   SECTION 4 — MANUFACTURING
============================ */

.about-manufacturing {
  background-color: var(--color-surface);
}

.about-manufacturing-title {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 700;
  color: var(--color-brand-dark);
}

.about-manufacturing-accent {
  width: 56px;
  height: 3px;
  border-radius: var(--radius-lg);
  background-color: var(--color-brand-primary);
}

.about-manufacturing-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-body);
}

/* Bulleted list */
/* .about-manufacturing-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
} */

.about-manufacturing-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-2);
  font-size: 0.98rem;
  /* color: var(--color-brand-dark); */
}

/* .about-manufacturing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-brand-primary);
} */

/* Image styling */
.about-manufacturing-figure {
  margin: 0;
}

.about-manufacturing-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  max-height: 360px;
}

@media (min-width: 768px) {
  .about-manufacturing-img {
    max-height: 420px;
  }
}



/* ============================
   SECTION 5 — CERTIFICATIONS
============================ */

.about-certifications {
  background-color: var(--color-surface);
}

.about-certifications-title {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  color: var(--color-brand-dark);
}

.about-certifications-accent {
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background-color: var(--color-brand-primary);
}

.about-cert-item {
  background-color: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
  padding: var(--space-sm);
}

.about-cert-img {
  max-height: 40px;          /* keeps all logos visually consistent */
  width: auto;
  display: block;
}

.about-cert-caption {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-brand-dark);
}



/* ============================
   SECTION 7 — TEAM
============================ */

/* ============================
   SECTION 7 — TEAM (PRODUCT-CARD STYLE)
============================ */

.about-team {
  background-color: var(--color-surface);
}

.about-team-title {
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--color-brand-dark);
}

.about-team-accent {
  width: 56px;
  height: 3px;
  border-radius: var(--radius-lg);
  background-color: var(--color-brand-primary);
}

.about-team-card {
  background-color: var(--color-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.about-team-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.about-team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-team-body {
  flex: 1;
}

.about-team-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-brand-dark);
}

.about-team-role {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.about-team-text {
  font-size: 0.9rem;
  color: var(--color-text-body);
  line-height: 1.5;
}


/* ============================
   SECTION 8 — SUSTAINABILITY
============================ */

.about-sustainability {
  background-color: var(--color-surface);
}

.about-sustainability-accent {
  width: 48px;
  height: 3px;
  border-radius: var(--radius-lg);
  background-color: var(--color-brand-primary);
}

.about-sustainability-title {
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--color-brand-dark);
}

.about-sustainability-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-body);
}

/* Image */
.about-sustainability-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  max-height: 360px;
}

@media (min-width: 768px) {
  .about-sustainability-img {
    max-height: 420px;
  }
}
