/* =========================
   ABOUT PAGE
========================= */

body {
  font-family: "Montserrat", sans-serif;
}


.about-page {
  min-height: 100svh;
  background: #000;
  color: #fff;
  padding: clamp(8rem, 12vw, 12rem) 6vw;
  display: flex;
  align-items: center;
}

.about-inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.about-kicker {
  margin-bottom: 3rem;
  font-size: 0.75rem;
  letter-spacing: 1.1em;
  text-indent: 1.1em;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
}

.about-title {
  max-width: 900px;
  font-size: clamp(2.4rem, 5vw, 5.8rem);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.06em;
  color: #fff;
}

.about-content {
  max-width: 620px;
  margin-top: clamp(3rem, 6vw, 5rem);
  margin-left: auto;
}

.about-content p {
  margin-bottom: 1.5rem;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.8;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
}

.about-link {
  display: inline-block;
  margin-top: 3rem;
  margin-left: auto;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 0.4rem;
  transition:
    opacity 0.3s ease,
    border-color 0.3s ease;
}

.about-link:hover {
  opacity: 0.55;
  border-color: rgba(255, 255, 255, 0.2);
}

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

@media (max-width: 767px) {
  .about-page {
    min-height: auto;
    padding: 8rem 1.4rem 6rem;
    align-items: flex-start;
  }

  .about-kicker {
    margin-bottom: 2.5rem;
    font-size: 0.68rem;
    letter-spacing: 0.8em;
    text-indent: 0.8em;
  }

  .about-title {
    font-size: clamp(2.4rem, 13vw, 4rem);
    line-height: 1;
  }

  .about-content {
    margin-top: 3rem;
    margin-left: 0;
  }

  .about-content p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .about-link {
    margin-top: 2rem;
    margin-left: 0;
  }
}