/*==========================================================
  ORIGAMI — Site Footer
==========================================================*/

.site-footer {
  background: #060810;
  border-top: 1px solid rgba(230,126,34,0.12);
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(230,126,34,0.5) 30%,
    rgba(240,180,41,0.5) 50%,
    rgba(230,126,34,0.5) 70%,
    transparent 100%
  );
}

/* ── FOOTER TOP — 4 columns ──────────────────────────────── */
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 5.6rem;
  padding: 6.4rem 8rem 5.6rem;
  max-width: 160rem;
  margin: 0 auto;
}

/* ── BRAND COLUMN ────────────────────────────────────────── */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}
.footer-logo img { height: 3.6rem; width: auto; }
.footer-logo span {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.2rem;
  background: linear-gradient(135deg, #E67E22, #CF711F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 1.45rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.38);
  max-width: 30rem;
  margin-bottom: 2.8rem;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social-btn {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.15s;
}
.footer-social-btn svg { width: 1.6rem; height: 1.6rem; }
.footer-social-btn:hover {
  background: rgba(230,126,34,0.18);
  border-color: rgba(230,126,34,0.45);
  color: #E67E22;
  transform: translateY(-3px);
}

/* ── LINK COLUMNS ────────────────────────────────────────── */
.footer-col-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.footer-links a {
  font-size: 1.45rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.18s, padding-left 0.18s;
  display: inline-block;
}
.footer-links a:hover {
  color: #E67E22;
  padding-left: 0.4rem;
}

/* ── ADDRESS COLUMN ──────────────────────────────────────── */
.footer-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.footer-address-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}
.footer-address-item svg {
  stroke: #E67E22;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* ── FOOTER BOTTOM ───────────────────────────────────────── */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2.4rem 8rem;
  max-width: 160rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer-bottom p {
  font-size: 1.35rem;
  color: rgba(255,255,255,0.3);
}
.footer-policies {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.footer-policies a {
  font-size: 1.35rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-policies a:hover { color: #E67E22; }
.footer-policies span { color: rgba(255,255,255,0.15); }
.footer-made { color: rgba(255,255,255,0.25) !important; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-top    { grid-template-columns: 1fr 1fr; gap: 4rem; padding: 5.6rem 5.6rem 4.8rem; }
  .footer-bottom { padding: 2rem 5.6rem; }
}
@media (max-width: 768px) {
  .footer-top    { grid-template-columns: 1fr; gap: 3.2rem; padding: 4.8rem 2.8rem; }
  .footer-bottom { padding: 2rem 2.8rem; flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .footer-made   { display: none; }
}
