/* ─────────────────────────────────────────────────────────────────────
   ABOUT PAGE — Editorial brand storytelling layout
   ───────────────────────────────────────────────────────────────────── */

/* ── Fade-in animations ── */
.fade-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-section.is-visible .fade-child {
  opacity: 1;
  transform: translateY(0);
}
.fade-section.is-visible .fade-child:nth-child(1) { transition-delay: 0s; }
.fade-section.is-visible .fade-child:nth-child(2) { transition-delay: 0.1s; }
.fade-section.is-visible .fade-child:nth-child(3) { transition-delay: 0.2s; }
.fade-section.is-visible .fade-child:nth-child(4) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .fade-section,
  .fade-child {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ══════════════════════════════════════════════════════════
   SECTION 1: HERO
   ══════════════════════════════════════════════════════════ */
.ab-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #FAF9F7 0%, #F0EDE8 100%);
  padding: 120px 24px 80px;
}
.ab-hero__content {
  text-align: center;
  max-width: 640px;
}
.ab-hero__eyebrow {
  display: block;
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8A8A8A;
  margin-bottom: 20px;
}
.ab-hero__heading {
  font-family: 'Geologica', 'Georgia', serif;
  font-size: 48px;
  font-weight: 600;
  color: #1A1A1A;
  line-height: 1.15;
  margin: 0 0 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.ab-hero__subtitle {
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: #4A4A4A;
  max-width: 560px;
  margin: 0 auto;
}
.ab-hero__line {
  width: 60px;
  height: 2px;
  background: #E5E2DD;
  margin: 32px auto 0;
}


/* ══════════════════════════════════════════════════════════
   SECTION 2: OUR STORY — alternating blocks
   ══════════════════════════════════════════════════════════ */
.ab-story {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px clamp(20px, 5vw, 48px);
}
.ab-story__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.ab-story__block:last-child {
  margin-bottom: 0;
}
.ab-story__block--reverse .ab-story__img {
  order: 2;
}
.ab-story__block--reverse .ab-story__text {
  order: 1;
}

/* Image placeholder */
.ab-story__placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #F0EDE8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ab-story__placeholder span {
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 14px;
  color: #8A8A8A;
  font-style: italic;
}

/* Text column */
.ab-story__text h2 {
  font-family: 'Geologica', 'Georgia', serif;
  font-size: 28px;
  font-weight: 600;
  color: #1A1A1A;
  line-height: 1.25;
  margin: 0 0 16px;
}
.ab-story__text p {
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #4A4A4A;
  margin: 0 0 14px;
}
.ab-story__text p:last-child {
  margin-bottom: 0;
}


/* ══════════════════════════════════════════════════════════
   SECTION 3: STATS BAR
   ══════════════════════════════════════════════════════════ */
.ab-stats {
  background: #1A1A1A;
  padding: 64px 24px;
}
.ab-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.ab-stats__item {
  text-align: center;
  padding: 0 16px;
}
.ab-stats__number {
  font-family: 'Geologica', 'Georgia', serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.ab-stats__label {
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
}


/* ══════════════════════════════════════════════════════════
   SECTION 4: OUR VALUES
   ══════════════════════════════════════════════════════════ */
.ab-values {
  background: #FAF9F7;
  padding: 80px 24px;
}
.ab-values__heading {
  font-family: 'Geologica', 'Georgia', serif;
  font-size: 32px;
  font-weight: 600;
  color: #1A1A1A;
  text-align: center;
  margin: 0 0 48px;
}
.ab-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.ab-values__card {
  text-align: center;
  padding: 32px;
}
.ab-values__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
}
.ab-values__icon svg {
  width: 40px;
  height: 40px;
}
.ab-values__card h3 {
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 12px;
}
.ab-values__card p {
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #4A4A4A;
  margin: 0;
}


/* ══════════════════════════════════════════════════════════
   SECTION 5: B2B CALLOUT
   ══════════════════════════════════════════════════════════ */
.ab-b2b {
  background: #fff;
  border-top: 1px solid #E5E2DD;
  border-bottom: 1px solid #E5E2DD;
  padding: 56px 24px;
}
.ab-b2b__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.ab-b2b__text h2 {
  font-family: 'Geologica', 'Georgia', serif;
  font-size: 24px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 12px;
}
.ab-b2b__text p {
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #4A4A4A;
  margin: 0;
  max-width: 520px;
}
.ab-b2b__action {
  text-align: center;
  flex-shrink: 0;
}
.ab-b2b__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #1A1A1A;
  color: #fff;
  border-radius: 6px;
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.ab-b2b__btn:hover {
  background: #333;
}
.ab-b2b__phone {
  display: block;
  margin-top: 12px;
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 13px;
  color: #8A8A8A;
}


/* ══════════════════════════════════════════════════════════
   SECTION 6: CTA
   ══════════════════════════════════════════════════════════ */
.ab-cta {
  padding: 80px 24px;
  background: linear-gradient(180deg, #FAF9F7 0%, #F0EDE8 100%);
  text-align: center;
}
.ab-cta__content {
  max-width: 600px;
  margin: 0 auto;
}
.ab-cta__heading {
  font-family: 'Geologica', 'Georgia', serif;
  font-size: 32px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 12px;
}
.ab-cta__sub {
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 16px;
  color: #4A4A4A;
  line-height: 1.6;
  margin: 0;
}
.ab-cta__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.ab-cta__btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.ab-cta__btn--primary {
  background: #1A1A1A;
  color: #fff;
}
.ab-cta__btn--primary:hover {
  background: #333;
}
.ab-cta__btn--outline {
  background: transparent;
  color: #1A1A1A;
  box-shadow: inset 0 0 0 1.5px #1A1A1A;
}
.ab-cta__btn--outline:hover {
  background: #1A1A1A;
  color: #fff;
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .ab-stats__number {
    font-size: 40px;
  }
  .ab-values__grid {
    gap: 24px;
  }
  .ab-values__card {
    padding: 24px 16px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  /* Hero */
  .ab-hero {
    min-height: auto;
    padding: 100px 20px 60px;
  }
  .ab-hero__heading {
    font-size: 32px;
  }
  .ab-hero__subtitle {
    font-size: 15px;
  }

  /* Story blocks */
  .ab-story {
    padding: 48px 20px;
  }
  .ab-story__block {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }
  .ab-story__block--reverse .ab-story__img {
    order: 0;
  }
  .ab-story__block--reverse .ab-story__text {
    order: 0;
  }
  .ab-story__text h2 {
    font-size: 24px;
  }

  /* Stats */
  .ab-stats {
    padding: 48px 20px;
  }
  .ab-stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .ab-stats__number {
    font-size: 36px;
  }

  /* Values */
  .ab-values {
    padding: 56px 20px;
  }
  .ab-values__heading {
    font-size: 26px;
    margin-bottom: 32px;
  }
  .ab-values__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* B2B */
  .ab-b2b__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .ab-b2b__text h2 {
    font-size: 22px;
  }
  .ab-b2b__text p {
    max-width: none;
  }

  /* CTA */
  .ab-cta {
    padding: 56px 20px;
  }
  .ab-cta__heading {
    font-size: 26px;
  }
}
