.about-page {
  max-width: 860px;
  margin: 0 auto;
  padding: var(--gap-xl) var(--gap-lg);
}

.about-hero {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-bottom: var(--gap-xl);
  min-height: 500px;
}

.about-hero-img-wrap {
  max-width: 50%;
  flex-shrink: 0;
}

.about-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-quote {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 75%;
  cursor: default;
  will-change: transform;
  transform-origin: center center;
}

.about-quote-text {
  font-family: var(--font-impact);
  font-size: clamp(48px, 6vw, 72px);
  color: var(--red);
  line-height: 1;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

.about-quote-mark {
  font-family: var(--font-impact);
  font-size: 1em;
  color: var(--red);
  line-height: 1;
  margin-right: 4px;
}

.about-quote-mark--close {
  font-family: var(--font-impact);
  font-size: clamp(48px, 6vw, 72px);
  color: var(--black);
  align-self: flex-end;
  margin-top: 4px;
  position: relative;
  z-index: 2;
}
.about-bio {
  max-width: 600px;
  margin: 0 auto var(--gap-xl);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  color: var(--black);
  text-align: justify;
}

.about-bio-right {
  text-align: right;
}

.about-bio-highlight {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--red);
}

.about-second-img-wrap {
  max-width: 520px;
  margin: 0 auto;
}

.about-second-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 700px) {
  .about-hero {
    flex-direction: column;
    align-items: center;
    min-height: unset;
  }

  .about-hero-img-wrap {
    width: 80%;
    margin: 0 auto 0 0; /* pushes image to the left */
  }

  .about-quote {
    position: absolute;
    top: 50%;
    left: unset;
    right: 0; /* anchors quote to the right */
    transform: translateY(-50%);
    width: 75%;
    text-align: right;
    align-items: flex-end;
  }

  .about-quote-text {
    font-size: clamp(28px, 7vw, 42px);
    text-align: right;
  }

  .about-quote-mark--close {
    font-size: clamp(28px, 7vw, 42px);
  }
}
/* ==============================
   CONTACT PAGE
   ============================== */
.contact-page {
  display: flex;
  flex-direction: column;
}

.contact-top {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 60px;
  gap: 80px;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

.contact-label {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-impact);
  font-size: 18px;
  letter-spacing: 2px;
  padding: 4px 12px;
  width: fit-content;
}

.contact-title {
  font-family: var(--font-impact);
  font-size: clamp(52px, 6vw, 80px);
  color: var(--black);
  letter-spacing: 2px;
  line-height: 1;
}

.contact-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: var(--gap-md);
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--black);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-links a:hover {
  color: var(--red);
}

.contact-icon {
  width: 52px;
  height: 52px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 26px;
  height: 26px;
  color: var(--white);
}

.contact-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.contact-video-small {
  width: 300px;
  height: 400px;
  object-fit: cover;
  display: block;
}

.contact-video-banner {
  width: 100%;
  margin-top: var(--gap-xl);
}

.contact-video-banner video {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

@media (max-width: 700px) {
  .contact-top {
    flex-direction: column;
    padding: 40px 24px;
    gap: 40px;
  }
  .contact-right {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .contact-video-small {
    width: 60%;
    height: auto;
  }
  .contact-video-banner video {
    height: 260px;
  }
}
