/* Site footer — industrial navy, brand blue accent */
.site-footer {
  --ft-navy: #0a1f45;
  --ft-blue: #153f8f;
  --ft-deep: #093480;
  --ft-muted: rgba(255, 255, 255, 0.58);
  --ft-line: rgba(255, 255, 255, 0.12);
  position: relative;
  margin: 0;
  padding: 0;
  background: linear-gradient(165deg, #0c244f 0%, #0a1f45 48%, #081833 100%);
  color: var(--ft-muted);
  font-family: "Barlow", "Segoe UI", sans-serif;
}

.site-footer::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #1a4fa8 18%, #4a7fd4 50%, #1a4fa8 82%, transparent 100%);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus {
  color: #9ec5ff;
  text-decoration: none;
}

.site-footer__inner {
  padding-top: 52px;
  padding-bottom: 16px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 1.3fr;
  gap: 36px 40px;
}

.site-footer__title {
  display: inline-block;
  margin: 0 0 18px;
  padding-bottom: 10px;
  font-family: "Barlow Condensed", "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 2px solid rgba(74, 127, 212, 0.55);
}

.site-footer__links p {
  margin: 0 0 8px;
}

.site-footer__links a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.site-footer__text {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ft-muted);
  max-width: 34em;
}

.site-footer__form-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--ft-line);
  border-radius: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.site-footer__form-row .form-control {
  flex: 1 1 auto;
  height: 44px;
  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  color: #fff;
  font-size: 14px;
  padding: 10px 14px;
}

.site-footer__form-row .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.site-footer__form-row .form-control:focus {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.08);
}

.site-footer__submit {
  flex: 0 0 auto;
  height: 44px;
  margin: 0;
  padding: 0 20px;
  border: none;
  border-radius: 0;
  background: linear-gradient(180deg, #1a4fa8 0%, var(--ft-blue) 100%);
  color: #fff;
  font-family: "Barlow Condensed", "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.site-footer__submit:hover,
.site-footer__submit:focus {
  background: #2a63c0;
  color: #fff;
}

.site-footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.5;
}

.site-footer__contact-list i {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(74, 127, 212, 0.18);
  color: #9ec5ff;
  font-size: 12px;
  margin-top: 1px;
}

.site-footer__contact-list strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  margin-right: 4px;
}

.site-footer__contact-list span {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--ft-muted);
}

.site-footer__sns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 12px 0 0;
  padding: 10px 0 0;
  line-height: 1;
  min-height: 0;
  border-top: 1px solid var(--ft-line);
}

.site-footer__sns-link {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--ft-line);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 12px;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-footer__sns-link:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ft-blue) !important;
  transform: translateY(-2px);
}

.site-footer__sns-link .icon-x {
  width: 12px;
  height: 12px;
}

/* Copyright bar */
.site-footer-bar.footer-bar {
  margin: 0;
  padding: 12px 0;
  background: #061229;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.45);
  font-family: "Barlow", "Segoe UI", sans-serif;
  font-size: 13px;
  text-align: center;
}

.site-footer-bar a {
  color: rgba(255, 255, 255, 0.55);
}

.site-footer-bar a:hover {
  color: #9ec5ff;
  text-decoration: none;
}

.site-footer-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
}

.site-footer-bar__map {
  font-family: "Barlow Condensed", "Barlow", sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
}

.site-footer-bar__links {
  margin-top: 6px;
  text-align: center;
}

.site-footer-bar__links a {
  margin: 0 6px;
}

@media screen and (max-width: 991px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__contact {
    grid-column: 1 / -1;
  }
}

@media screen and (max-width: 767px) {
  .site-footer__inner {
    padding-top: 40px;
    padding-bottom: 12px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__nav {
    display: none;
  }

  .site-footer__form-row {
    flex-direction: column;
  }

  .site-footer__submit {
    width: 100%;
  }

  .site-footer-bar.footer-bar {
    margin-bottom: 56px;
  }
}
