/* ========================================
   Footer
======================================== */
.site-footer {
  position: relative;
  padding: 56px 0 32px;
  background: #000;
  color: #fff;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ff771d 0%, #ffe875 50%, #ff771d 100%);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 320px 1fr 260px;
  align-items: center;
  gap: 48px;
}

.site-footer__logo {
  display: inline-block;
}

.site-footer__logo img {
  display: block;
  width: 280px;
  height: auto;
}

.site-footer__address {
  margin-top: 28px;
  font-style: normal;
  font-size: 14px;
  line-height: 1.9;
}

.site-footer__address p {
  margin: 0;
}

.site-footer__address a {
  color: #fff;
  text-decoration: none;
}

.site-footer__menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__menu li {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.site-footer__menu li:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.site-footer__menu a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 128px;
  padding: 0 22px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}

.site-footer__menu img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 16px;
}

.site-footer__menu span {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.site-footer__menu em {
  margin-top: 8px;
  color: #ff8809;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-footer__cta {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 260px;
  height: 72px;
  background: #ff771d;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.site-footer__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}

.site-footer__cta:hover {
  background: #ff8f33;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 119, 29, 0.28);
}

.site-footer__cta:hover::before {
  left: 150%;
}

.site-footer__cta img,
.site-footer__cta span,
.site-footer__cta i {
  position: relative;
  z-index: 1;
}

.site-footer__cta img,
.site-footer__cta i {
  transition: transform 0.35s ease;
}

.site-footer__cta:hover img,
.site-footer__cta:hover i {
  transform: translateX(4px);
}

.site-footer__cta img {
  width: 24px;
  height: auto;
}

.site-footer__cta i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.site-footer__copyright {
  margin-top: 44px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-align: center;
  letter-spacing: 0.04em;
}

/* ========================================
   Footer Menu Hover Animation
======================================== */
.site-footer__menu a {
  position: relative;
  overflow: hidden;
}

.site-footer__menu a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.06);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.site-footer__menu a:hover::before {
  transform: scaleX(1);
}

.site-footer__menu img,
.site-footer__menu span,
.site-footer__menu em {
  position: relative;
  z-index: 1;
}

.site-footer__menu img {
  transition: transform 0.35s ease;
}

.site-footer__menu span {
  transition: color 0.35s ease;
}

.site-footer__menu em {
  transition: color 0.35s ease, letter-spacing 0.35s ease;
}

.site-footer__menu a:hover img {
  transform: translateY(-4px);
}

.site-footer__menu a:hover span {
  color: #fff;
}

.site-footer__menu a:hover em {
  color: #ffe875;
  letter-spacing: 0.12em;
}

/* Tablet */
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .site-footer__company {
    text-align: center;
  }
  .site-footer__logo img {
    margin: 0 auto;
    width: 280px;
    height: auto;
  }
  .site-footer__menu {
    max-width: 720px;
    margin: 0 auto;
  }
  .site-footer__cta-wrap {
    text-align: center;
  }
  .site-footer__cta {
    margin: 0 auto;
  }
}
/* Smartphone */
@media screen and (max-width: 767px) {
  .site-footer {
    padding: 44px 0 28px;
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .site-footer__logo img {
    width: 220px;
  }
  .site-footer__address {
    margin-top: 24px;
    font-size: 13px;
  }
  .site-footer__menu {
    grid-template-columns: 1fr;
  }
  .site-footer__menu li,
  .site-footer__menu li:last-child {
    border-left: none;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .site-footer__menu li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
  .site-footer__menu a {
    min-height: auto;
    padding: 16px 0;
    flex-direction: row;
    justify-content: flex-start;
  }
  .site-footer__menu img {
    width: 30px;
    height: 30px;
    margin: 0 16px 0 0;
  }
  .site-footer__menu em {
    margin-top: 0;
    margin-left: 12px;
  }
  .site-footer__cta {
    width: 100%;
    height: 58px;
  }
  .site-footer__copyright {
    margin-top: 36px;
    font-size: 12px;
  }
}/*# sourceMappingURL=footer.css.map */