/* ============================================================
   AADRIT — ABOUT PAGE STYLES
============================================================ */

/* ── ABOUT HERO ──────────────────────────────────────────── */
.about-hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-4xl);
  position: relative;
  overflow: hidden;
  background: var(--color-navy);
}

.about-hero__bg {
  background-size: cover;
  background-position: center;
  filter: brightness(0.45) saturate(0.6);
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,22,40,0.2) 0%,
    rgba(10,22,40,0.4) 50%,
    rgba(10,22,40,0.85) 100%
  );
  z-index: 1;
}

.about-hero__content {
  position: relative;
  z-index: 2;
  animation: fadeUp 1.2s var(--ease-out) 0.2s both;
}

.about-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: var(--fw-light);
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: var(--space-lg);
}

.about-hero__sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.6);
  font-weight: var(--fw-light);
  letter-spacing: 0.04em;
}

/* ── STORY INTRO ─────────────────────────────────────────── */
.story-intro {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.story-intro__inner {
  max-width: 760px;
}

.story-intro__text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: var(--fw-light);
  color: var(--color-ink);
  line-height: 1.6;
}

.story-intro__text em {
  color: var(--color-accent);
  font-style: italic;
}

/* ── STORY SECTIONS ──────────────────────────────────────── */
.story-section {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.story-section--alt {
  background: var(--color-bg);
}

.story-block {
  align-items: center;
  gap: var(--space-4xl);
}

.story-block__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-border-light);
}

.story-block__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-block__text {
  max-width: 520px;
}

.story-block__text .section-title {
  margin-bottom: var(--space-lg);
}

.story-block__text p {
  font-size: 1.0625rem;
  line-height: 1.8;
}

/* ── VALUES ──────────────────────────────────────────────── */
.values-section {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.values-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: var(--space-3xl);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-white);
}

.value-item {
  flex: 1;
  padding: var(--space-2xl);
  transition: background var(--t-base);
}

.value-item:hover {
  background: var(--color-bg);
}

.value-divider {
  width: 1px;
  background: var(--color-border);
  flex-shrink: 0;
}

.value-item__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: var(--fw-light);
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-lg);
}

.value-item__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: var(--fw-light);
  color: var(--color-ink);
  margin-bottom: var(--space-sm);
}

.value-item__desc {
  font-size: var(--fs-small);
  color: var(--color-muted);
  line-height: 1.7;
}

/* ── ABOUT CTA ───────────────────────────────────────────── */
.about-cta {
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.about-cta__bg {
  background-size: cover;
  background-position: center;
  filter: brightness(0.4) saturate(0.7);
}

.about-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.5);
  z-index: 1;
}

.about-cta__content {
  position: relative;
  z-index: 2;
}

.about-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: var(--fw-light);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.about-cta__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-2xl);
}

.about-cta__btns {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .story-block { gap: var(--space-2xl); }

  .values-grid {
    flex-direction: column;
  }

  .value-divider {
    width: 100%;
    height: 1px;
  }
}
