/* =============================================
   LEGAL HERO
   ============================================= */

.page-wrapper {
  background-color: #aaaaaa;
}

.legal-hero {
  height: 70vh;
  width: 100%;
  position: relative;
  background-image: url("../assets/images/legal-hero-images/2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #aaaaaa;
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.legal-hero__overlay {
  position: absolute;
  inset: 0;
}

.legal-hero__content {
  position: relative;
  z-index: 2;

  width: 60%;

  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-hero__eyebrow {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);

  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.legal-hero__title {
  font-size: 64px;
  line-height: 1.1;
  color: #ffffff;
}

.legal-hero__subtitle {
  font-size: 22px;
  line-height: 1.6;
  color: #ffffff;

  max-width: 900px;
}

/* =============================================
   LEGAL CONTENT
   ============================================= */

.legal-content {
  width: 100%;

  padding: 100px 40px;

  display: flex;
  flex-direction: column;
  gap: 64px;
}

.legal-block {
  width: 70%;

  padding-bottom: 40px;

  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.legal-block__title {
  font-size: 32px;
  color: #000000;

  margin-bottom: 24px;
  line-height: 1.2;
}

.legal-block__text {
  font-size: 18px;
  line-height: 1.9;
  color: #222222;

  margin-bottom: 18px;
}

.legal-updated {
  font-size: 14px;
  color: #555555;

  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =============================================
   FOOTER
   ============================================= */

.footer-split {
  width: 100%;
  min-height: 700px;

  display: flex;
}

.footer-split__left {
  width: 42%;

  background-color: #404742;

  padding: 40px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  gap: 48px;
}

.footer-split__right {
  flex: 1;

  background-image: url("../assets/images/footer/footer-image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: flex-end;

  padding: 40px;
}

.footer-split__cta-title {
  font-size: 48px;
  line-height: 1.15;
  color: #ffffff;
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__title {
  font-size: 48px;
  color: #ffffff;
}

.footer__desc {
  font-size: 22px;
  line-height: 1.6;
  color: #ffffff;
}

.footer__nav {
  display: flex;
  justify-content: space-between;
  gap: 48px;

  flex-wrap: wrap;
}

.footer__contact,
.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__contact-label {
  font-size: 14px;
  font-weight: 600;

  color: #ffffff;

  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__contact-email,
.footer__contact-note {
  font-size: 14px;
  line-height: 1.6;

  color: rgba(255, 255, 255, 0.78);
}

.footer__legal-links {
  list-style: none;

  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__legal-links li a {
  font-size: 14px;
  line-height: 1.5;

  color: rgba(255, 255, 255, 0.78);

  text-decoration: none;

  transition: color 0.2s ease;
}

.footer__legal-links li a:hover {
  color: #ffffff;
}

.footer__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 24px;
}

.footer__logo {
  width: 130px;
  height: auto;
}

.footer__copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
}

.footer__sitemap-links {
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.footer__sitemap-links li a:hover {
  color: #ffffff;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .legal-hero__content,
  .legal-block {
    width: 100%;
  }

  .legal-hero__title {
    font-size: 48px;
  }

  .legal-hero__subtitle {
    font-size: 18px;
  }

  .footer-split {
    flex-direction: column;
  }

  .footer-split__left {
    width: 100%;
  }

  .footer-split__right {
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .legal-hero {
    height: 60vh;

    padding: 24px 20px;
  }

  .legal-hero__content {
    width: 100%;
  }

  .legal-hero__title {
    font-size: 34px;
  }

  .legal-hero__subtitle {
    font-size: 15px;
    line-height: 1.7;
  }

  .legal-content {
    padding: 60px 20px;

    gap: 48px;
  }

  .legal-block {
    width: 100%;
  }

  .legal-block__title {
    font-size: 24px;
  }

  .legal-block__text {
    font-size: 15px;
    line-height: 1.8;
  }

  .footer-split__left {
    padding: 32px 20px;
  }

  .footer-split__right {
    min-height: 220px;

    padding: 24px 20px;
  }

  .footer-split__cta-title {
    font-size: 24px;
  }

  .footer__title {
    font-size: 24px;
  }

  .footer__desc {
    font-size: 14px;
    line-height: 1.7;
  }

  .footer__nav {
    flex-direction: column;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 48px;
  }
}
