/* =========================
   O NAS — CONTENT
   ========================= */
.about-story{
  padding: clamp(56px, 7vw, 96px) 0 clamp(72px, 8vw, 110px);
  background: #f6f4f1;
}

.about-story__intro{
  display: grid;
  gap: 28px;
}

.about-story__brand{
  display: inline-grid;
  gap: 10px;
  justify-content: start;
}

.about-story__brand-mark{
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-story__brand-mark img{
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.about-story__eyebrow{
  margin: 0;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #8d7b67;
  font-weight: 700;
}

.about-story__intro-grid{
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 38px;
  align-items: center;
}

.about-story__intro-copy{
  max-width: 560px;
}

.about-story__title{
  margin: 0 0 18px;
  font-size: clamp(42px, 5.1vw, 74px);
  line-height: .96;
  letter-spacing: -.035em;
  color: #151515;
  font-weight: 800;
  text-wrap: balance;
}

.about-story__lead{
  margin: 0 0 14px;
  max-width: 44ch;
  color: #3f3a35;
  font-size: 20px;
  line-height: 1.72;
}

.about-story__divider{
  height: 1px;
  margin: clamp(34px, 4vw, 46px) 0;
  background: rgba(28, 23, 18, 0.10);
}

.about-story__row{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 42px;
  align-items: center;
}

.about-story__row--reverse{
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}

.about-story__row--reverse .about-story__media{
  order: 1;
}

.about-story__row--reverse .about-story__content{
  order: 2;
}

.about-story__content{
  max-width: 560px;
}

.about-story__heading{
  margin: 0 0 18px;
  color: #151515;
  font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1.02;
  letter-spacing: -.03em;
  font-weight: 800;
}

.about-story__content p{
  margin: 0 0 16px;
  color: #3f3a35;
  font-size: 19px;
  line-height: 1.78;
}

.about-story__signature{
  margin-top: 10px;
}

.about-story__media{
  margin: 0;
}

.about-story__media-frame{
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  background: #ece9e4;
  transition: box-shadow .35s ease;
}

.about-story__media img{
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1);
  transition:
    transform .55s ease,
    filter .35s ease;
  will-change: transform;
}

.about-story__media:hover .about-story__media-frame{
  box-shadow: 0 24px 48px rgba(0,0,0,.12);
}

.about-story__media:hover img{
  transform: scale(1.045);
  filter: saturate(1.03);
}

.about-story__media--intro img{
  aspect-ratio: 1 / 1;
}

.about-story__media figcaption{
  margin-top: 12px;
  color: #8a8178;
  font-size: 13px;
  line-height: 1.45;
}

.about-story__footer{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: clamp(34px, 4vw, 48px);
}

.about-story .btn{
  min-height: 50px;
  padding-inline: 22px;
}

.about-story .btn-secondary{
  background: transparent;
  border: 1px solid rgba(20,20,20,.14);
  color: #171717;
}

.about-story .btn-secondary:hover{
  background: rgba(20,20,20,.04);
}

@media (max-width: 980px){
  .about-story__intro-grid,
  .about-story__row,
  .about-story__row--reverse{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .about-story__row--reverse .about-story__media,
  .about-story__row--reverse .about-story__content{
    order: initial;
  }

  .about-story__intro-copy,
  .about-story__content{
    max-width: none;
  }

  .about-story__lead,
  .about-story__content p{
    max-width: none;
  }
}

@media (max-width: 640px){
  .about-story{
    padding: 42px 0 74px;
  }

  .about-story__title{
    font-size: clamp(34px, 11vw, 52px);
  }

  .about-story__heading{
    font-size: clamp(28px, 8vw, 38px);
  }

  .about-story__lead{
    font-size: 17px;
    line-height: 1.66;
  }

  .about-story__content p{
    font-size: 17px;
    line-height: 1.7;
  }

  .about-story__media img{
    border-radius: 20px;
  }

  .about-story__footer{
    gap: 10px;
  }

  .about-story__footer .btn{
    width: 100%;
    justify-content: center;
  }
}