/* Professional about / company-overview section */
.eecg-about {
  position: relative;
  background: #ffffff;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.25rem, 5vw, 4rem);
  overflow: hidden;
}

/* subtle orange grid pattern */
.eecg-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 94, 20, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 94, 20, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.eecg-about__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.eecg-about__copy {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.eecg-about__eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FF5E14;
}

.eecg-about__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  color: #1a1a1a;
  margin: 0;
}

.eecg-about__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  color: #2d2d2d;
  margin: 0;
}

.eecg-about__body {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0;
}

.eecg-about__body strong {
  color: #1a1a1a;
  font-weight: 600;
}

.eecg-about__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.eecg-about__chip {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #1a1a1a;
  background: #ffffff;
  border: 1px solid rgba(255, 94, 20, 0.35);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.eecg-about__chip:hover {
  background: #FF5E14;
  color: #ffffff;
  border-color: #FF5E14;
}

.eecg-about__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  margin-top: 0.75rem;
  padding: 0.85rem 1.6rem;
  background: #1a1a1a;
  color: #ffffff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.25s ease;
  text-decoration: none;
  border: 1px solid #1a1a1a;
}

.eecg-about__cta:hover {
  background: #FF5E14;
  border-color: #FF5E14;
  color: #ffffff;
}

.eecg-about__media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 94, 20, 0.25);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.eecg-about__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  pointer-events: none;
}

.eecg-about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
}

/* scroll reveal */
.eecg-about__copy > *,
.eecg-about__media {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.eecg-about.is-visible .eecg-about__copy > *,
.eecg-about.is-visible .eecg-about__media {
  opacity: 1;
  transform: translateY(0);
}

.eecg-about.is-visible .eecg-about__copy > *:nth-child(1) { transition-delay: 0.05s; }
.eecg-about.is-visible .eecg-about__copy > *:nth-child(2) { transition-delay: 0.12s; }
.eecg-about.is-visible .eecg-about__copy > *:nth-child(3) { transition-delay: 0.19s; }
.eecg-about.is-visible .eecg-about__copy > *:nth-child(4) { transition-delay: 0.26s; }
.eecg-about.is-visible .eecg-about__copy > *:nth-child(5) { transition-delay: 0.33s; }
.eecg-about.is-visible .eecg-about__copy > *:nth-child(6) { transition-delay: 0.40s; }
.eecg-about.is-visible .eecg-about__media { transition-delay: 0.22s; }

@media (max-width: 900px) {
  .eecg-about__inner {
    grid-template-columns: 1fr;
  }
  .eecg-about__media {
    order: -1;
  }
  .eecg-about__img {
    min-height: 240px;
    max-height: 360px;
  }
}
