/* ==========================================================================
   ABOUT US PAGE — Dedicated Stylesheet
   Follows Visteria design system tokens defined in style.css
   ========================================================================== */

/* -----------------------------------------------------------------------
   1. HERO BANNER
   ----------------------------------------------------------------------- */
.au-banner {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  background-image: url('../images/about/About-banner.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.au-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  pointer-events: none;
}

.au-banner__content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  text-align: center;
  width: 100%;
}

.au-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.au-banner__sub {
  font-size: 1.1rem;
  color: #d0dffa;
  line-height: 1.65;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

/* -----------------------------------------------------------------------
   2. SINCE 2022 / GROWTH INTRO SECTION
   ----------------------------------------------------------------------- */
.au-growth-intro {
  padding: 64px 0 56px;
  background: #f5f8fe;
  text-align: center;
}

.au-since-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #1660cf;
  margin-bottom: 10px;
}

.au-growth-intro__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: #102a5c;
  line-height: 1.3;
  margin-bottom: 14px;
}

.au-accent-blue {
  color: var(--primary-blue);
}

.au-growth-intro__desc {
  font-size: 1rem;
  color: #475467;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 1.6;
}

.au-growth-img-wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(16, 42, 92, 0.08);
  background: #ffffff;
}

.au-growth-img-scroll {
  width: 100%;
}

.au-growth-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.45s ease;
}

.au-growth-img:hover {
  transform: scale(1.012);
}

.au-growth-swipe-hint {
  display: none;
}

/* -----------------------------------------------------------------------
   3. FOUNDER SECTION
   ----------------------------------------------------------------------- */
.au-founder {
  padding: 70px 0;
  background: linear-gradient(120deg, #DBDEEB 0%, #B9C7DD 100%);
}

.au-founder__grid {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 50px;
  align-items: flex-start;
}

/* Left column */
.au-founder__photo-col {
  text-align: center;
}

.au-founder__img-frame {
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(0, 35, 100, 0.12);
  background: #f0f5fd;
  border: 1px solid #0f0d12;
}

.au-founder__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.au-founder__img-frame:hover .au-founder__photo {
  transform: scale(1.04);
}

/* Right column */
.au-founder__bio-col {
  padding-top: 40px;
}

.au-founder__eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1d2939;
  margin-bottom: 10px;
}

.au-founder__name {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1.3;
  margin-bottom: 20px;
}

.au-founder__bio {
  font-size: 1rem;
  line-height: 1.8;
  color: #374151;
}

.au-founder__bio strong {
  font-weight: 700;
  color: #111827;
}

.au-founder__bio--mt {
  margin-top: 18px;
}

/* -----------------------------------------------------------------------
   4. MISSION & VISION SIDE-BY-SIDE
   ----------------------------------------------------------------------- */
.au-mv {
  padding: 70px 0;
  background: #eef3fb;
}

.au-mv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.au-mv__card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 30px 30px;
  border: 1px solid #e0ecfa;
  box-shadow: 0 4px 18px rgba(16, 42, 92, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.au-mv__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(16, 42, 92, 0.1);
}

.au-mv__card-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.au-mv__card-desc {
  font-size: 0.96rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 24px;
  padding: 0px 50px 0px 60px;
}

.au-mv__img-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.au-mv__img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.au-mv__img:hover {
  transform: translateY(-4px);
}

/* -----------------------------------------------------------------------
   5. RESPONSIVE BREAKPOINTS (About Page Specific)
   ----------------------------------------------------------------------- */
@media (max-width: 900px) {
  .au-founder__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .au-founder__photo-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .au-mv__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Business Growth infographic becomes a horizontally swipeable panner —
     the graphic is dense with small labels, so instead of shrinking it to
     fit (illegible), it's shown near-native size inside a scroll container. */
  .au-growth-img-wrap {
    border-radius: 14px;
  }

  .au-growth-img-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .au-growth-img {
    width: auto;
    max-width: none;
    min-width: 1000px;
    height: auto;
  }

  .au-growth-swipe-hint {
    display: block;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    color: #7c8aa5;
    padding: 10px 0 2px;
  }
}

@media (max-width: 600px) {
  .au-banner {
    min-height: 220px;
  }

  .au-banner__title {
    font-size: 2rem;
  }

  .au-growth-intro {
    padding: 44px 0 36px;
  }

  .au-founder {
    padding: 50px 0;
  }

  .au-mv {
    padding: 50px 0;
  }

  .au-mv__card {
    padding: 28px 20px 24px;
  }
}
