.section-eyebrow {
  margin: 0;
  color: var(--color-red);
  font-size: clamp(0.72rem, 0.9vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.reveal-line {
  display: block;
  overflow: hidden;
}

.reveal-line > span {
  display: block;
  transform: translateY(115%);
}

.about {
  position: relative;
  display: grid;
  min-height: 115vh;
  min-height: 115dvh;
  grid-template-columns: minmax(21rem, 36rem) minmax(0, 52rem);
  align-items: center;
  gap: clamp(0.75rem, 1.8vw, 2.4rem);
  justify-content: center;
  overflow: hidden;
  padding: clamp(7rem, 12vw, 12rem) var(--page-padding);
  scroll-margin-top: 0;
  background:
    radial-gradient(circle at 18% 50%, rgba(245, 65, 69, 0.08), rgba(245, 65, 69, 0) 28rem),
    linear-gradient(#050607, #08090b 42%, #030406);
}

.about__brand {
  position: relative;
  justify-self: end;
  width: clamp(28rem, 55vw, 62rem);
  max-width: none;
  opacity: 1;
  transform: translateY(-72vh);
  transform-origin: center;
}

.about__brand-image {
  width: 100%;
  max-width: none;
  transform: rotate(-90deg);
  transform-origin: center;
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.34));
}

.about__content {
  position: relative;
  z-index: 1;
  max-width: 50rem;
  justify-self: start;
}

.about__title {
  margin: clamp(1.3rem, 2.2vw, 2rem) 0 clamp(1.6rem, 2.6vw, 2.4rem);
  font-family: "MadDogTattoo", "Anton", Impact, sans-serif;
  font-size: clamp(1.92rem, 4.08vw, 4.44rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

.about__text {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.02rem, 1.35vw, 1.38rem);
  font-weight: 600;
  line-height: 1.62;
}

@media (max-width: 860px) {
  .about {
    min-height: 100vh;
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding-top: 7rem;
  }

  .about__brand {
    position: absolute;
    inset: 50% auto auto 50%;
    z-index: 0;
    width: 150vw;
    opacity: 0.12;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .about__content {
    position: relative;
    z-index: 1;
    max-width: 100%;
    justify-self: stretch;
  }

  .about__title {
    font-size: clamp(1.74rem, 8.04vw, 3rem);
  }
}
