/* why.css */
/* Why People Love Movimiento */

/* ============================================================
   SECTION
   ============================================================ */

.why {
  background-color: var(--color-dark-section);
  color: var(--color-text-muted);
  padding: calc(82px * 1.2) 6vw;
}

/* ============================================================
   INNER — two independent grid columns
   ============================================================ */

.why__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

/* ============================================================
   LEFT — sticky heading
   ============================================================ */

.why__head {
  position: sticky;
  top: 100px;
}

.why__label {
  font-family: var(--font-heading);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  opacity: 0.5;
  margin-bottom: var(--space-3);
}

.why__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.why__heading-italic {
  font-style: none;
}

/* ============================================================
   RIGHT — list
   ============================================================ */

.why__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(245, 241, 230, 0.2);
}

/* ============================================================
   ROW
   ============================================================ */

.why__row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  align-items: baseline;
  padding: 30px 0;
  border-bottom: 1px solid rgba(245, 241, 230, 0.2);
  transition: padding-left 0.3s ease;
  cursor: default;
}

.why__row:hover {
  padding-left: 12px;
}

/* ============================================================
   TICK
   ============================================================ */

.why__index {
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  font-style: italic;
  color: var(--color-text-primary);
  opacity: 0.7;
}

/* ============================================================
   TEXT BLOCK
   ============================================================ */

.why__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.375rem);
  font-weight: 300;
  font-style: normal;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--color-text-muted);
  text-transform: none;
  margin: 0 0 8px;
}

.why__description {
  font-family: var(--font-body);
  font-size: var(--font-size-md);
  color: var(--color-text-muted);
  opacity: 0.5;
  line-height: var(--line-height-loose);
  margin: 0;
}

/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 767px) {
  .why__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .why__head {
    position: static;
  }

  .why__heading {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .why__row {
    padding: var(--space-6) 0;
    grid-template-columns: 32px 1fr;
    gap: var(--space-4);
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .why__row {
    transition-duration: 0.01ms !important;
  }
}