/* About — bloques narrativos (texto + imagen) y reveals al scroll */
.about-section-page {
  padding: clamp(48px, 6vw, 72px) clamp(20px, 4vw, 40px) clamp(72px, 8vw, 100px);
  background: linear-gradient(180deg, #141615 0%, #10100f 42%, #0c0c0b 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about-page-container {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 8vw, 96px);
}

.about-story-block {
  position: relative;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.about-story-block--flip .about-story-grid {
  direction: rtl;
}

.about-story-block--flip .about-story-grid > * {
  direction: ltr;
}

.about-story-copy {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 18px);
}

.about-story-eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mws-green);
}

.about-story-title {
  margin: 0;
  font-family: var(--font-primary);
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--mws-white);
  letter-spacing: -0.02em;
}

.about-story-text {
  margin: 0;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.8;
  color: rgba(213, 213, 213, 0.78);
  max-width: 52ch;
}

.about-story-figure {
  margin: 0;
  position: relative;
}

.about-story-media-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(0, 0, 0, 0.35) inset;
  aspect-ratio: 4 / 3;
}

.about-story-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(201, 255, 0, 0.08) 0%,
    transparent 42%,
    rgba(0, 0, 0, 0.35) 100%
  );
  pointer-events: none;
}

.about-story-media-frame picture,
.about-story-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-story-media-frame picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-values,
.about-stats,
.about-cta {
  margin: 0;
}

.about-values h2,
.about-stats h2,
.about-cta h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.35rem, 2.8vw, 1.65rem);
  font-weight: 800;
  margin: 0 0 clamp(20px, 3vw, 28px);
  color: var(--mws-white);
}

.about-cta p {
  font-size: 1rem;
  color: rgba(213, 213, 213, 0.78);
  line-height: 1.75;
  margin: 0 0 20px;
  max-width: 56ch;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.value-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.value-card:hover {
  border-color: rgba(201, 255, 0, 0.45);
  transform: translateY(-3px);
}

.value-card i {
  font-size: 1.5rem;
  color: var(--mws-green);
  margin-bottom: 12px;
}

.value-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--mws-white);
  margin: 0 0 8px;
}

.value-card p {
  font-size: 0.85rem;
  color: rgba(213, 213, 213, 0.65);
  line-height: 1.65;
  margin: 0;
}

.about-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
  margin-top: 8px;
}

.about-stats .stat-item {
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-stats .stat-number {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--mws-green);
  line-height: 1.1;
}

.about-stats .stat-label {
  font-size: 0.8rem;
  color: rgba(213, 213, 213, 0.7);
  margin-top: 4px;
}

.about-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-story-block--flip .about-story-grid {
    direction: ltr;
  }

  .about-story-figure {
    order: -1;
  }

  .about-story-text {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-about-line],
  [data-about-reveal="media"] {
    opacity: 1 !important;
    transform: none !important;
  }
}
