/* ── FOOTER ── */
#footer {
  background: #e85d04;
  padding: 90px 64px 0;
  position: relative;
  overflow: hidden;
  min-height: 520px;
}
.footer-watermark {
  position: absolute;
  bottom: -160px;
  left: 0;
  right: 0;
  font-size: 20vw;
  font-weight: 800;
  color: rgba(255,255,255,0.12);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: center;
  pointer-events: none;
  white-space: nowrap;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  position: relative;
  z-index: 2;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-logo {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
}
.footer-tagline {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 220px;
}
.footer-copy {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-top: 8px;
}
.footer-col-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-link {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-link:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.footer-bottom-copy {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom-dot {
  color: white;
  margin: 0 6px;
}

@media (max-width: 900px) {
  #footer {
    padding: 60px 24px 0;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  #footer {
    padding: 60px 24px 0;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}