/* ==========================================
   ABOUT US SECTION
   ========================================== */
:root {
  --accent: #f4a261;
  --dark: #131313;
}

.about-section {
  position: relative;
  background: #111111;
  color: #ffffff;
  padding: 160px 0;
  overflow: hidden;
}

.about__inner {
  width: min(1420px, 92vw);
  margin: 0 auto;
}

/* Header & Title */
.about__head {
  text-align: center;
  margin-bottom: 60px;
}

.about__title {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

/* Signature growing orange underline */
.about__title::after {
  content: "";
  display: block;
  width: 0px;
  height: 3px;
  margin: 14px auto 0;
  background: var(--accent);
  border-radius: 999px;
  transition: width 0.9s ease;
  transition-delay: 0.18s;
}

.about-section.is-inview .about__title::after {
  width: 120px;
}

.about__sub {
  margin-top: 16px;
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.80);
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}

/* Main Grid Layout */
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: start;
}

/* Left Column: Story Text */
.about__story {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 22px;
  backdrop-filter: blur(10px);
}

.about__badge {
  display: inline-flex;
  width: fit-content;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(244, 162, 97, 0.15);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(244, 162, 97, 0.3);
}

.about__text {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.84);
}

.about__text.lead {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: #ffffff;
  font-weight: 600;
  line-height: 1.65;
}

.about__text strong {
  color: var(--accent);
  font-weight: 700;
}

/* Right Column: Mission & Vision Cards */
.about__cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.aboutCard {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 36px 32px;
  border-radius: 22px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.aboutCard:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 162, 97, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.aboutCard__icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(244, 162, 97, 0.12);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(244, 162, 97, 0.25);
}

.aboutCard__icon svg {
  width: 26px;
  height: 26px;
}

.aboutCard__title {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: #ffffff;
}

.aboutCard__desc {
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.80);
}

/* Scroll Reveal Animations (Matches your existing engine) */
.about-section [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

.about-section.is-inview [data-reveal="title"] { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.about-section.is-inview [data-reveal="sub"] { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.about-section.is-inview [data-reveal="left"] { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.about-section.is-inview [data-reveal="right"] { opacity: 1; transform: translateY(0); transition-delay: 0.40s; }

/* Responsive Styling */
@media (max-width: 980px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-section {
    padding: 100px 0;
  }
  .about__story {
    padding: 28px 22px;
  }
  .aboutCard {
    padding: 28px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-section [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .about__title::after {
    width: 120px !important;
    transition: none !important;
  }
}