/* Stitch about-brand-story — MettaMesh site shell */

.about-page {
  background: #f7f8fa;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hero */

.about-hero {
  max-width: 128rem;
  margin: 0 auto;
  padding: 4.8rem 2rem;
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 1025px) {
  .about-hero {
    padding: 6.4rem;
  }
}

.about-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .about-hero__inner {
    flex-direction: row;
  }
}

.about-hero__copy {
  flex: 1 1 60%;
}

.about-hero__title {
  font-size: clamp(2.8rem, 4vw, 4.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: #001953;
  margin: 0 0 1.6rem;
}

.about-hero__text {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #444651;
  margin: 0;
  max-width: 56rem;
}

.about-hero__media {
  flex: 1 1 40%;
}

.about-hero__media img {
  width: 100%;
  max-width: 48rem;
  height: auto;
  border-radius: 1.2rem;
  display: block;
}

/* Timeline */

.about-timeline {
  background: #f7f8fa;
  padding: 4.8rem 2rem;
}

@media screen and (min-width: 1025px) {
  .about-timeline {
    padding: 6.4rem;
  }
}

.about-timeline__wrap {
  max-width: 128rem;
  margin: 0 auto;
}

.about-timeline__title {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  color: #001953;
  margin: 0 0 4.8rem;
}

.about-timeline__title::after {
  content: '';
  display: block;
  width: 8rem;
  height: 0.4rem;
  background: #082d7c;
  margin: 1.6rem auto 0;
}

.about-timeline__line {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}

@media screen and (min-width: 768px) {
  .about-timeline__line::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 0.2rem;
    background: #ced9f2;
    transform: translateX(-50%);
  }
}

.about-timeline__step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .about-timeline__step {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2.4rem;
  }

  .about-timeline__step--left .about-timeline__content--desktop {
    grid-column: 1;
    text-align: right;
  }

  .about-timeline__step--right .about-timeline__content--desktop {
    grid-column: 3;
    text-align: left;
  }

  .about-timeline__marker {
    grid-column: 2;
  }

  .about-timeline__spacer {
    display: none;
  }

  .about-timeline__content--mobile {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .about-timeline__line::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 0.2rem;
    background: #ced9f2;
  }

  .about-timeline__content--desktop,
  .about-timeline__spacer {
    display: none;
  }

  .about-timeline__step {
    padding-left: 5.6rem;
  }

  .about-timeline__marker {
    position: absolute;
    left: 0.8rem;
    top: 0;
  }
}

.about-timeline__marker {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #082d7c;
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  flex-shrink: 0;
}

.about-timeline__heading {
  font-size: 2rem;
  font-weight: 600;
  color: #001953;
  margin: 0 0 0.8rem;
}

.about-timeline__text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #444651;
  margin: 0;
}

/* Directions */

.about-directions {
  max-width: 128rem;
  margin: 0 auto;
  padding: 4.8rem 2rem;
}

@media screen and (min-width: 1025px) {
  .about-directions {
    padding: 6.4rem;
  }
}

.about-directions__grid {
  display: grid;
  gap: 2.4rem;
}

@media screen and (min-width: 768px) {
  .about-directions__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-direction {
  background: #fff;
  border: 0.1rem solid #ced9f2;
  border-radius: 1.2rem;
  overflow: hidden;
}

.about-direction__media {
  display: block;
  overflow: hidden;
}

.about-direction__media img {
  width: 100%;
  aspect-ratio: 1.85 / 1;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-direction:hover .about-direction__media img {
  transform: scale(1.03);
}

.about-direction__body {
  padding: 2.4rem;
}

.about-direction__title {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 0.8rem;
}

.about-direction__title a {
  color: #001953;
  text-decoration: none;
}

.about-direction__title a:hover {
  color: #5254af;
}

.about-direction__text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #444651;
  margin: 0;
}

/* Bento */

.about-bento {
  background: #f0eded;
  padding: 4.8rem 2rem;
}

@media screen and (min-width: 1025px) {
  .about-bento {
    padding: 6.4rem;
  }
}

.about-bento__wrap {
  max-width: 128rem;
  margin: 0 auto;
}

.about-bento__section-title {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  color: #001953;
  margin: 0 0 3.2rem;
}

.about-bento__grid {
  display: grid;
  gap: 2.4rem;
}

@media screen and (min-width: 768px) {
  .about-bento__grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .about-bento__item:nth-child(1) {
    grid-column: span 4;
  }

  .about-bento__item:nth-child(2) {
    grid-column: span 8;
  }

  .about-bento__item:nth-child(3),
  .about-bento__item:nth-child(4) {
    grid-column: span 6;
  }
}

.about-bento__item {
  background: #fff;
  border: 0.1rem solid #ced9f2;
  border-radius: 1.2rem;
  padding: 3.2rem;
}

.about-bento__item--accent {
  background: #082d7c;
  border-color: #082d7c;
  color: #fff;
}

.about-bento__item--accent .about-bento__title,
.about-bento__item--accent .about-bento__text {
  color: #fff;
}

.about-bento__title {
  font-size: 2rem;
  font-weight: 600;
  color: #001953;
  margin: 0 0 1.2rem;
}

.about-bento__text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #444651;
  margin: 0;
}

/* Charity */

.about-charity {
  max-width: 128rem;
  margin: 0 auto;
  padding: 4.8rem 2rem;
}

@media screen and (min-width: 1025px) {
  .about-charity {
    padding: 6.4rem;
  }
}

.about-charity__inner {
  background: linear-gradient(90deg, #001953 0%, #5254af 100%);
  border-radius: 1.6rem;
  padding: 4.8rem 3.2rem;
  color: #fff;
  text-align: center;
}

.about-charity__badge {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10rem;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2.4rem;
}

.about-charity__title {
  font-size: clamp(2.4rem, 3vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1.6rem;
}

.about-charity__text {
  font-size: 1.8rem;
  line-height: 1.6;
  opacity: 0.92;
  max-width: 72rem;
  margin: 0 auto 2.4rem;
}

.about-charity__cta {
  display: inline-block;
}

/* Guarantee */

.about-guarantee {
  background: #fff;
  padding: 4.8rem 2rem;
}

@media screen and (min-width: 1025px) {
  .about-guarantee {
    padding: 6.4rem;
  }
}

.about-guarantee__inner {
  max-width: 128rem;
  margin: 0 auto;
  display: grid;
  gap: 3.2rem;
  border: 0.2rem solid rgba(8, 45, 124, 0.1);
  border-radius: 1.2rem;
  padding: 3.2rem;
}

@media screen and (min-width: 768px) {
  .about-guarantee__inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 4.8rem;
  }
}

.about-guarantee__title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #001953;
  margin: 0 0 2.4rem;
}

.about-guarantee__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-guarantee__list li {
  position: relative;
  padding-left: 2.8rem;
  margin-bottom: 1.6rem;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #444651;
}

.about-guarantee__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #5254af;
  font-weight: 700;
}

.about-guarantee__quote {
  margin: 0;
  padding: 3.2rem;
  background: #f7f8fa;
  border-radius: 0.8rem;
}

.about-guarantee__quote p {
  font-size: 1.6rem;
  line-height: 1.6;
  font-style: italic;
  color: #444651;
  margin: 0;
}

.about-partners {
  background: #f7f8fa;
}
