/* ================================================================
   Azru Solutions — About Page Styles  (about.css)
   Aesthetic: dark hero → warm light body → dark CTA
   Section order:
     Hero → Story → Mission/Vision → Values →
     Trust → Disciplines → Team → CTA
   Fonts: Cormorant Garamond · Syne · Space Mono
   All classes prefixed  ab-  (about page)
   ================================================================ */


/* ================================================================
   1. TOKENS
   ================================================================ */
.page-about {
  --ab-bg:        #FAFAF8;
  --ab-bg-alt:    #F3F2EF;
  --ab-bg-warm:   #F8F6F2;
  --ab-dark:      #080808;
  --ab-dark-2:    #0D0D0D;

  --ab-ink:       #141414;
  --ab-body:      #3E3E3E;
  --ab-muted:     #6B6B6B;
  --ab-faint:     #E8E6E2;

  --ab-fire:      #E8452A;
  --ab-fire-glow: rgba(232, 69, 42, 0.22);
  --ab-gold:      #C8923A;

  --ab-line:      rgba(20, 20, 20, 0.07);
  --ab-line-lt:   rgba(237, 232, 223, 0.07);

  --ab-serif:  'Cormorant Garamond', Georgia, serif;
  --ab-sans:   'Syne', system-ui, sans-serif;
  --ab-mono:   'Space Mono', 'Courier New', monospace;

  font-family: var(--ab-sans);
  background-color: var(--ab-bg);
  color: var(--ab-body);
}


/* ================================================================
   2. NAVBAR OVERRIDE — dark glass
   ================================================================ */
.page-about .navbar {
  background: rgba(8, 8, 8, 0.84);
  border-bottom-color: var(--ab-line-lt);
}
.page-about .navbar.is-scrolled {
  box-shadow: 0 1px 0 var(--ab-line-lt), 0 8px 40px rgba(0,0,0,0.55);
}
.page-about .logo-text                { color: #EDE8DF; }
.page-about .navbar__link             { color: rgba(237,232,223,0.45); }
.page-about .navbar__link:hover,
.page-about .navbar__link.is-active   { color: #EDE8DF; background: rgba(237,232,223,0.07); }
.page-about .navbar__link.is-active   { color: #E8452A; }
.page-about .navbar__toggle span      { background: #EDE8DF; }
.page-about .navbar__mobile           { background: #0A0A0A; border-top-color: var(--ab-line-lt); }
.page-about .navbar__mobile-links a   { color: rgba(237,232,223,0.45); }
.page-about .navbar__mobile-links a:hover,
.page-about .navbar__mobile-links a.is-active { color: #EDE8DF; background: rgba(237,232,223,0.07); }


/* ================================================================
   3. SHARED UTILITIES
   ================================================================ */

/* Eyebrow dot-label */
.ab-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--ab-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(237,232,223,0.5);
  margin-bottom: 1.5rem;
}
.ab-eyebrow--dark { color: var(--ab-muted); }
.ab-eyebrow--fire { color: rgba(232,69,42,0.9); }

.ab-eyebrow__dot {
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
  animation: ab-pulse-dot 2.4s ease-in-out infinite;
}
.ab-eyebrow--fire .ab-eyebrow__dot {
  background: #E8452A;
  box-shadow: 0 0 6px #E8452A, 0 0 12px var(--ab-fire-glow);
}

/* Section tag "NN / Label" */
.ab-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--ab-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ab-muted);
  margin-bottom: 1.125rem;
}
.ab-section-tag__num {
  color: var(--ab-fire);
  font-weight: 700;
}

/* Section display headline */
.ab-section-title {
  font-family: var(--ab-serif);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--ab-ink);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.ab-section-title em {
  font-style: italic;
  color: var(--ab-gold);
}

/* Centred section header block */
.ab-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.ab-section-sub {
  font-size: 1rem;
  color: var(--ab-muted);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}


/* ================================================================
   4. HERO
   ================================================================ */
.ab-hero {
  position: relative;
  background: var(--ab-dark);
  padding: calc(var(--navbar-height, 72px) + 4.5rem) 0 0;
  overflow: hidden;
}

/* Ambient radial glow */
.ab-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 30%, rgba(232,69,42,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(200,146,58,0.04) 0%, transparent 45%);
  pointer-events: none;
}

.ab-hero__inner {
  position: relative;
  z-index: 1;
  padding-bottom: 5rem;
}
.ab-hero__copy { max-width: 680px; }

/* Staggered headline lines */
.ab-hero__title {
  font-family: var(--ab-serif);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 700;
  color: #EDE8DF;
  line-height: 1.07;
  letter-spacing: -0.03em;
  margin-bottom: 1.875rem;
}
.ab-line {
  display: block;
  overflow: hidden;
  line-height: 1.12;
}
.ab-line__inner {
  display: block;
  animation: ab-line-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.ab-hero__title .ab-line:nth-child(1) .ab-line__inner { animation-delay: 0.08s; }
.ab-hero__title .ab-line:nth-child(2) .ab-line__inner { animation-delay: 0.22s; }
.ab-line--em .ab-line__inner em {
  font-style: italic;
  color: var(--ab-gold);
}

.ab-hero__sub {
  font-size: 1.075rem;
  color: rgba(237,232,223,0.48);
  max-width: 520px;
  line-height: 1.78;
  animation: ab-fade-up 0.7s ease 0.4s both;
}

/* Facts strip */
.ab-hero__facts {
  border-top: 1px solid var(--ab-line-lt);
  margin-top: 5rem;
  background: rgba(8,8,8,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.ab-hero__facts-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}
.ab-fact {
  flex: 1;
  text-align: center;
  padding: 0.5rem 1rem;
}
.ab-fact__val {
  display: block;
  font-family: var(--ab-serif);
  font-size: 2.375rem;
  font-weight: 700;
  color: #EDE8DF;
  letter-spacing: -0.04em;
  line-height: 1;
}
.ab-fact__label {
  display: block;
  font-family: var(--ab-mono);
  font-size: 0.675rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(237,232,223,0.4);
  margin-top: 0.375rem;
}
.ab-fact-div {
  width: 1px;
  height: 44px;
  background: var(--ab-line-lt);
  flex-shrink: 0;
}


/* ================================================================
   5. STORY / COMPANY INTRO
   ================================================================ */
.ab-story {
  padding: 7rem 0;
  background: var(--ab-bg);
}
.ab-story__inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: start;
}

/* Narrative text */
.ab-story__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.ab-story__content p {
  font-size: 1rem;
  color: var(--ab-body);
  line-height: 1.82;
}
.ab-story__content .ab-section-title { margin-bottom: 0.5rem; }

/* 2×2 stat boxes */
.ab-story__stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.125rem;
}
.ab-sstat {
  background: var(--ab-bg-warm);
  border: 1px solid var(--ab-faint);
  border-radius: 14px;
  padding: 1.625rem 1.25rem;
  text-align: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.ab-sstat:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}
.ab-sstat__val {
  display: block;
  font-family: var(--ab-serif);
  font-size: 2.125rem;
  font-weight: 700;
  color: var(--ab-fire);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.375rem;
}
.ab-sstat__label {
  display: block;
  font-family: var(--ab-mono);
  font-size: 0.675rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ab-muted);
}


/* ================================================================
   6. MISSION & VISION
   ================================================================ */
.ab-mv {
  padding: 6rem 0;
  background: var(--ab-dark);
  position: relative;
  overflow: hidden;
}
.ab-mv::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(237,232,223,0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.ab-mv__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;              /* gap shows as the background's line colour */
  background: var(--ab-line-lt);
  border: 1px solid var(--ab-line-lt);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* Each card */
.ab-mv__card {
  background: #0D0D0D;
  padding: 3.5rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: background 0.3s ease;
}
.ab-mv__card:hover { background: #121212; }

/* Coloured top bar */
.ab-mv__bar {
  height: 2.5px;
  margin: -3.5rem -3rem 0;
  margin-bottom: 3rem;
}
.ab-mv__card--mission .ab-mv__bar { background: var(--ab-fire); }
.ab-mv__card--vision  .ab-mv__bar { background: var(--ab-gold); }

.ab-mv__label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--ab-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ab-mv__card--mission .ab-mv__label { color: rgba(232,69,42,0.85); }
.ab-mv__card--vision  .ab-mv__label { color: rgba(200,146,58,0.85); }
.ab-mv__icon { font-size: 1rem; }

.ab-mv__quote {
  font-family: var(--ab-serif);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-style: italic;
  font-weight: 600;
  color: #EDE8DF;
  line-height: 1.5;
  letter-spacing: -0.015em;
}
.ab-mv__card--mission .ab-mv__quote { color: rgba(237,232,223,0.95); }
.ab-mv__card--vision  .ab-mv__quote { color: rgba(237,232,223,0.85); }

.ab-mv__footnote {
  font-size: 0.9rem;
  color: rgba(237,232,223,0.35);
  line-height: 1.7;
  padding-top: 1rem;
  border-top: 1px solid var(--ab-line-lt);
}


/* ================================================================
   7. CORE VALUES
   ================================================================ */
.ab-values {
  padding: 7rem 0;
  background: var(--ab-bg-alt);
}
.ab-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.ab-value-card {
  background: #fff;
  border: 1px solid var(--ab-faint);
  border-radius: 14px;
  padding: 2.25rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.ab-value-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}

/* Coloured left border that reveals on hover */
.ab-value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--vc, var(--ab-fire));
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 0 0 3px 0;
}
.ab-value-card:hover::before { height: 100%; }

.ab-value-card__icon {
  font-size: 1.625rem;
  color: var(--vc, var(--ab-fire));
  line-height: 1;
}
.ab-value-card__title {
  font-family: var(--ab-sans);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ab-ink);
  line-height: 1.3;
}
.ab-value-card__text {
  font-size: 0.9rem;
  color: var(--ab-body);
  line-height: 1.7;
  flex: 1;
}
/* Bottom accent line */
.ab-value-card__accent {
  height: 1.5px;
  background: linear-gradient(to right, var(--vc, var(--ab-fire)), transparent);
  margin-top: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ab-value-card:hover .ab-value-card__accent { opacity: 1; }


/* ================================================================
   8. WHY TRUST AZRU
   ================================================================ */
.ab-trust {
  padding: 7rem 0;
  background: #fff;
  border-top: 1px solid var(--ab-faint);
  border-bottom: 1px solid var(--ab-faint);
}
.ab-trust__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

/* Left: sticky header */
.ab-trust__header {
  position: sticky;
  top: calc(var(--navbar-height, 72px) + 2rem);
}
.ab-trust__header .ab-section-title { margin-bottom: 1.25rem; }
.ab-trust__intro {
  font-size: 1rem;
  color: var(--ab-muted);
  line-height: 1.78;
}

/* Right: 2×3 grid */
.ab-trust__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.ab-trust-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.75rem;
  border-bottom: 1px solid var(--ab-faint);
  border-right: 1px solid var(--ab-faint);
  transition: background 0.25s ease;
}
.ab-trust-item:nth-child(even)  { border-right: none; }
.ab-trust-item:nth-last-child(1),
.ab-trust-item:nth-last-child(2) { border-bottom: none; }
.ab-trust-item:hover { background: var(--ab-bg); }

.ab-trust-item__num {
  font-family: var(--ab-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ab-fire);
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.ab-trust-item:hover .ab-trust-item__num { opacity: 1; }

.ab-trust-item__title {
  font-family: var(--ab-sans);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ab-ink);
  margin-bottom: 0.45rem;
  line-height: 1.3;
}
.ab-trust-item__text {
  font-size: 0.875rem;
  color: var(--ab-body);
  line-height: 1.72;
}


/* ================================================================
   9. DISCIPLINES / APPROACH
   ================================================================ */
.ab-approach {
  padding: 7rem 0;
  background: var(--ab-bg-warm);
}
.ab-disciplines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: var(--ab-faint);
  border: 1px solid var(--ab-faint);
  border-radius: 18px;
  overflow: hidden;
}

.ab-disc {
  background: #faf9f6;
  padding: 3rem 2.75rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}
.ab-disc:nth-child(odd)  { background: #faf9f6; }
.ab-disc:nth-child(even) { background: #fff; }
.ab-disc:hover { background: #f5f3ee; }

/* Large ghost number behind content */
.ab-disc__ghost {
  position: absolute;
  bottom: -0.35em; right: 0.1em;
  font-family: var(--ab-serif);
  font-size: 12rem;
  font-weight: 700;
  font-style: italic;
  color: var(--dc, #4F8EF7);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.3s ease;
}
.ab-disc:hover .ab-disc__ghost { opacity: 0.065; }

.ab-disc__content { position: relative; z-index: 1; }

/* Number + name row */
.ab-disc__top {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.625rem;
}
.ab-disc__num {
  font-family: var(--ab-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--dc, var(--ab-fire));
  background: color-mix(in srgb, var(--dc, var(--ab-fire)) 10%, white);
  border: 1px solid color-mix(in srgb, var(--dc, var(--ab-fire)) 20%, #E8E6E2);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}
.ab-disc__name {
  font-family: var(--ab-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ab-muted);
  font-weight: 700;
}

/* Philosophy quote */
.ab-disc__quote {
  font-family: var(--ab-serif);
  font-size: clamp(1.125rem, 1.8vw, 1.5rem);
  font-style: italic;
  font-weight: 600;
  color: var(--ab-ink);
  line-height: 1.45;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
  padding-left: 1.25rem;
  border-left: 2.5px solid var(--dc, var(--ab-fire));
}

.ab-disc__text {
  font-size: 0.9375rem;
  color: var(--ab-body);
  line-height: 1.8;
}


/* ================================================================
   10. TEAM
   ================================================================ */
.ab-team {
  padding: 7rem 0;
  background: var(--ab-bg);
}
.ab-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.ab-team-card {
  background: #fff;
  border: 1px solid var(--ab-faint);
  border-radius: 14px;
  padding: 0 2rem 2rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.ab-team-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}

/* Coloured top bar */
.ab-team-card__top-bar {
  height: 3px;
  background: var(--tc, var(--ab-fire));
  margin: 0 -2rem 2rem;
  width: calc(100% + 4rem);
}

/* Avatar circle */
.ab-team-card__avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--tc, var(--ab-fire)) 12%, white);
  border: 1.5px solid color-mix(in srgb, var(--tc, var(--ab-fire)) 25%, #E8E6E2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.ab-team-card__avatar span {
  font-family: var(--ab-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--tc, var(--ab-fire));
  letter-spacing: 0.04em;
}

.ab-team-card__name {
  font-family: var(--ab-sans);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ab-ink);
  margin-bottom: 0.25rem;
}
.ab-team-card__role {
  font-family: var(--ab-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tc, var(--ab-fire));
  margin-bottom: 1rem;
  opacity: 0.85;
}
.ab-team-card__bio {
  font-size: 0.875rem;
  color: var(--ab-body);
  line-height: 1.72;
  flex: 1;
}


/* ================================================================
   11. FINAL CTA
   ================================================================ */
.ab-cta {
  padding: 7.5rem 0;
  background: var(--ab-dark-2);
  border-top: 1px solid var(--ab-line-lt);
  position: relative;
  overflow: hidden;
}
.ab-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(232,69,42,0.06) 0%, transparent 55%);
  pointer-events: none;
}
.ab-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.ab-cta__content { flex: 1; min-width: 280px; }
.ab-cta__title {
  font-family: var(--ab-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: #EDE8DF;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0.875rem 0 1.25rem;
}
.ab-cta__title em { font-style: italic; color: var(--ab-gold); }
.ab-cta__sub {
  font-size: 1rem;
  color: rgba(237,232,223,0.45);
  max-width: 460px;
  line-height: 1.78;
}
.ab-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  flex-shrink: 0;
  min-width: 220px;
}
.ab-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--ab-sans);
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 8px;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.ab-cta__btn--primary {
  background: var(--ab-fire);
  color: #fff;
  border-color: var(--ab-fire);
  box-shadow: 0 4px 20px var(--ab-fire-glow);
}
.ab-cta__btn--primary:hover {
  background: #D63B22;
  border-color: #D63B22;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,69,42,0.38);
}
.ab-cta__btn--ghost {
  background: transparent;
  color: rgba(237,232,223,0.7);
  border-color: rgba(237,232,223,0.2);
}
.ab-cta__btn--ghost:hover {
  border-color: rgba(237,232,223,0.45);
  color: #EDE8DF;
  background: rgba(237,232,223,0.05);
}


/* ================================================================
   12. KEYFRAMES
   ================================================================ */
@keyframes ab-line-rise {
  from { transform: translateY(108%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes ab-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ab-pulse-dot {
  0%, 100% { opacity: 1;   transform: scale(1);    }
  50%       { opacity: 0.4; transform: scale(0.72); }
}


/* ================================================================
   13. RESPONSIVE
   ================================================================ */

/* ≤ 1100px */
@media (max-width: 1100px) {
  .ab-story__inner    { grid-template-columns: 1fr; gap: 3rem; }
  .ab-trust__inner    { grid-template-columns: 1fr; gap: 3rem; }
  .ab-trust__header   { position: static; }
  .ab-values-grid     { grid-template-columns: repeat(2, 1fr); }
  .ab-team-grid       { grid-template-columns: repeat(2, 1fr); }
}

/* ≤ 900px */
@media (max-width: 900px) {
  .ab-mv__inner       { grid-template-columns: 1fr; }
  .ab-disciplines     { grid-template-columns: 1fr; }
  .ab-disc__ghost     { font-size: 8rem; }
}

/* ≤ 768px */
@media (max-width: 768px) {
  .ab-hero            { padding-top: calc(var(--navbar-height, 72px) + 3rem); }
  .ab-hero__facts-row { flex-wrap: wrap; }
  .ab-fact            { min-width: 45%; }
  .ab-fact-div        { display: none; }

  .ab-story,
  .ab-mv,
  .ab-values,
  .ab-trust,
  .ab-approach,
  .ab-team,
  .ab-cta             { padding: 5rem 0; }

  .ab-trust__grid     { grid-template-columns: 1fr; }
  .ab-trust-item      { border-right: none; }
  .ab-trust-item:nth-last-child(2) { border-bottom: 1px solid var(--ab-faint); }

  .ab-mv__card        { padding: 2.5rem 2rem 2rem; }

  .ab-cta__inner      { flex-direction: column; gap: 2.5rem; }
  .ab-cta__actions    { width: 100%; }
  .ab-cta__btn        { width: 100%; }
}

/* ≤ 480px */
@media (max-width: 480px) {
  .ab-hero__title     { font-size: 2.75rem; }
  .ab-values-grid     { grid-template-columns: 1fr; }
  .ab-team-grid       { grid-template-columns: 1fr; }
  .ab-story__stat-grid { grid-template-columns: 1fr 1fr; }
  .ab-disc            { padding: 2.25rem 1.75rem; }
  .ab-disc__ghost     { font-size: 5rem; }
}
