/* ========================================
   FOOTER SECTION
   ======================================== */
.footer {
  background: #0a0a0a;
  color: #ffffff;
  padding: 120px 60px 0 60px; /* High top padding to account for CTA overlap */
  margin-top: -60px; /* Tucks footer securely under CTA */
  position: relative;
  z-index: 1; /* Below CTA */
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.footer__top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #222222;
  margin-bottom: 24px;
}

.footer__address-link {
  color: #888888;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__address-link:hover {
  color: #ffffff;
}

.footer__top-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #888888;
}

.footer__top-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #888888;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.footer__top-link:hover {
  color: #ffffff;
}

.footer__bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer__address {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #888888;
  text-transform: uppercase;
  text-align: left;
  line-height: 1.8;
  flex: 1;
}

.footer__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  flex: 1;
}

.footer__bottom-credit {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #888888;
  text-align: right;
  flex: 1;
}

.footer__nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: #cccccc;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__nav-link:hover {
  color: #ffffff;
}

.footer__massive-wrapper {
  overflow: hidden;
  height: clamp(30px, 9vw, 150px);
  width: 100%;
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  margin-top: 20px;
}

.footer__massive-text {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.5rem, 11vw, 12rem);
  font-weight: 700;
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.15) !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  text-align: center;
  white-space: nowrap;
  letter-spacing: -0.05em;
  user-select: none;
}

@media (max-width: 768px) {
  .footer {
    padding: 80px 20px 0 20px !important;
  }
  .footer__top {
    flex-direction: column !important;
    gap: 8px !important;
    align-items: center !important;
    text-align: center !important;
  }
  .footer__top-text {
    font-size: 11px !important;
    text-align: center !important;
  }
  .footer__bottom-row {
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
    margin-bottom: 20px !important;
  }
  .footer__address {
    text-align: center !important;
  }
  .footer__nav {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .footer__bottom-credit {
    font-size: 11px !important;
    text-align: center !important;
  }
  .footer__nav-link {
    font-size: 11px !important;
  }
  .footer__massive-text {
    font-size: clamp(2.5rem, 11.5vw, 12rem) !important;
    margin-bottom: 0 !important;
    letter-spacing: -0.05em !important;
    white-space: nowrap !important;
  }
}
