/* ========================================
   ABOUT HERO
======================================== */
.about-page {
  overflow: hidden;
}
.about-hero {
  max-width: 1100px;
  min-height: 540px;
  margin: 0 auto;
  padding: 130px 30px 90px;
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: center;
  gap: 80px;
}
.about-eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  padding: 7px 12px;
  border:
      1px solid rgb(185 95 69 / 25%);
  border-radius: 100px;
  color: #934936;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.about-hero h1 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(55px, 7vw, 85px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -4px;
}
.about-lead {
  max-width: 570px;
  margin: 28px 0 0;
  color: #806f63;
  font-size: 19px;
  line-height: 1.65;
}
/* ========================================
 HERO CARD
======================================== */
.about-hero__shape {
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius:
      48% 52% 55% 45%
      / 45% 50% 50% 55%;
  background:
      linear-gradient(
          140deg,
          #d68a6d,
          #a8513b
      );
  transform: rotate(4deg);
  box-shadow:
      20px 25px 60px
      rgb(185 95 69 / 18%);
}
.about-hero__card {
  width: 220px;
  padding: 30px;
  border-radius: 22px;
  background: #fffaf4;
  transform: rotate(-4deg);
  box-shadow:
      0 20px 45px
      rgb(51 37 31 / 15%);
}
.about-hero__card span {
  display: block;
  margin-bottom: 35px;
  color: #806f63;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.about-hero__card strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
}
.about-hero__card small {
  display: block;
  margin-top: 35px;
  color: #806f63;
  font-size: 11px;
}
/* ========================================
 SECTIONS
======================================== */
.about-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 30px;
  display: grid;
  grid-template-columns: .7fr 1fr;
  gap: 80px;
  border-top:
      1px solid rgb(51 37 31 / 9%);
}
.about-section--highlight {
  max-width: none;
  padding-left: max(
      30px,
      calc((100% - 1040px) / 2)
  );
  padding-right: max(
      30px,
      calc((100% - 1040px) / 2)
  );
  background: #ead8ca;
}
.about-section__intro {
  position: relative;
}
.about-section__number {
  display: block;
  margin-bottom: 20px;
  color: #b95f45;
  font-family: Georgia, serif;
  font-size: 18px;
}
.about-section h2 {
  max-width: 400px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -2px;
}
.about-section__content {
  max-width: 620px;
}
.about-section__content p {
  margin: 0 0 22px;
  color: #695950;
  font-size: 16px;
  line-height: 1.8;
}
.about-section__content p:last-child {
  margin-bottom: 0;
}
/* ========================================
 SKILLS
======================================== */
.about-skills {
  display: grid;
  grid-template-columns:
      repeat(2, 1fr);
  gap: 10px;
  margin: 35px 0;
}
.about-skill {
  padding: 20px;
  border:
      1px solid rgb(51 37 31 / 10%);
  border-radius: 14px;
  background: #fffaf4;
}
.about-skill strong {
  display: block;
  margin-bottom: 6px;
  color: #33251f;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 400;
}
.about-skill span {
  color: #806f63;
  font-size: 12px;
  line-height: 1.5;
}
/* ========================================
 CONCLUSION
======================================== */
.about-conclusion {
  max-width: 800px;
  margin: 50px auto 120px;
  padding: 80px 30px;
  text-align: center;
}
.about-conclusion h2 {
  margin: 0 auto 25px;
  font-family: Georgia, serif;
  font-size: clamp(40px, 6vw, 65px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -3px;
}
.about-conclusion h2 em {
  color: #b95f45;
  font-style: italic;
}
.about-conclusion p {
  max-width: 570px;
  margin: 0 auto 30px;
  color: #806f63;
  line-height: 1.7;
}
.about-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 100px;
  background: #33251f;
  color: #fffaf4;
  font-size: 14px;
  text-decoration: none;
  transition:
      transform .2s ease,
      background .2s ease;
}
.about-button:hover {
  background: #b95f45;
  transform: translateY(-2px);
}
.about-button span {
  font-size: 18px;
}
/* ========================================
 FOOTER
======================================== */
.site-footer {
  padding: 35px 30px;
  border-top:
      1px solid rgb(51 37 31 / 9%);
  color: #806f63;
  text-align: center;
  font-size: 12px;
}
/* ========================================
 MOBILE
======================================== */
@media (max-width: 700px) {
  .about-hero {
      grid-template-columns: 1fr;
      padding-top: 100px;
      gap: 55px;
  }
  .about-hero__shape {
      min-height: 280px;
  }
  .about-section {
      grid-template-columns: 1fr;
      gap: 35px;
      padding: 70px 25px;
  }
  .about-section--highlight {
      padding-left: 25px;
      padding-right: 25px;
  }
  .about-skills {
      grid-template-columns: 1fr;
  }
  .about-conclusion {
      margin-bottom: 60px;
      padding: 60px 25px;
  }
}