/* Hakastar – Footer (uusi, ammattimainen ilme) */

.hk-footer {
  background: #ffffff;
  color: #002648;
  font-family: Montserrat, sans-serif;
  padding: 70px 0 28px;
  border-top: 1px solid #e6e8ec;
}

.hk-footer-container {
  width: 100%;
  padding: 0 32px;
}

/* Top: logo + slogan */
.hk-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
}

.hk-footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.hk-footer-logo {
  height: 90px;
  width: auto;
  display: block;
}

.hk-footer-slogan {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #002648;
  white-space: nowrap;
}

.hk-footer-contact-name {
  font-weight: 400;
  color: #002648;
  margin-bottom: 4px;
}

/* Language flags */
.hk-flags {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.hk-flags--above-button {
  margin-top: 24px;
  margin-bottom: 6px;
}

.hk-flag {
  display: inline-block;
  width: 22px;
  height: 14px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.hk-flag--fi {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 11'%3E%3Crect width='18' height='11' fill='%23ffffff'/%3E%3Crect y='4' width='18' height='3' fill='%23003580'/%3E%3Crect x='5' width='3' height='11' fill='%23003580'/%3E%3C/svg%3E");
}

.hk-flag--se {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 10'%3E%3Crect width='16' height='10' fill='%23006AA7'/%3E%3Crect y='4' width='16' height='2' fill='%23FECC00'/%3E%3Crect x='5' width='2' height='10' fill='%23FECC00'/%3E%3C/svg%3E");
}

.hk-flag--gb {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3Crect width='60' height='30' fill='%23012169'/%3E%3Cpath d='M0,0 L60,30 M60,0 L0,30' stroke='%23ffffff' stroke-width='6'/%3E%3Cpath d='M0,0 L60,30 M60,0 L0,30' stroke='%23C8102E' stroke-width='3'/%3E%3Cpath d='M30,0 v30 M0,15 h60' stroke='%23ffffff' stroke-width='10'/%3E%3Cpath d='M30,0 v30 M0,15 h60' stroke='%23C8102E' stroke-width='6'/%3E%3C/svg%3E");
}

#hakaset-naulaimet,
#pakkaaminen {
  scroll-margin-top: 110px;
}

.hk-footer-divider {
  height: 1px;
  width: 100%;
  background: #d8dde3;
  margin: 0 0 56px;
}

/* Grid columns */
.hk-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}

.hk-footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hk-footer-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #002648;
  margin-bottom: 8px;
}

.hk-footer-col p,
.hk-footer-col a,
.hk-footer-col span {
  font-size: 14.5px;
  line-height: 1.6;
  color: #4a5664;
  margin: 0;
}

.hk-footer-col a {
  text-decoration: none;
  transition: color 0.2s ease;
  width: fit-content;
}

.hk-footer-col a:hover {
  color: #a65e2e;
}

.hk-footer-contact-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hk-footer-contact-row svg {
  flex-shrink: 0;
  color: #a65e2e;
}

/* Bottom bar */
.hk-footer-bottom {
  border-top: 1px solid #e6e8ec;
  padding-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.hk-footer-credit-row {
  display: flex;
  justify-content: center;
  text-align: center;
}

.hk-footer-bottom > .hk-footer-legal {
  justify-self: end;
}

.hk-footer-copy {
  font-size: 13px;
  color: #6d7278;
}

.hk-footer-legal {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hk-footer-legal a {
  font-size: 13px;
  color: #6d7278;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hk-footer-legal a:hover {
  color: #a65e2e;
}

.hk-footer-credit {
  font-size: 13px;
  color: #6d7278;
}

.hk-footer-credit a {
  font-weight: 400;
  color: #002648;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hk-footer-credit a:hover {
  color: #a65e2e;
}

.hk-footer-credit a em {
  font-style: italic;
}

.hk-footer-credit a strong {
  font-weight: 700;
}

/* Tablet */
@media (max-width: 991px) {
  .hk-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .hk-footer-divider {
    margin-bottom: 40px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hk-footer {
    padding: 48px 0 24px;
  }

  .hk-footer-container {
    padding: 0 16px;
  }

  .hk-footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 22px;
  }

  .hk-footer-logo {
    height: 70px;
  }

  .hk-footer-divider {
    margin-bottom: 32px;
  }

  .hk-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 36px;
  }

  .hk-footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 12px;
  }

  .hk-footer-bottom > .hk-footer-legal {
    justify-self: start;
  }

  .hk-footer-credit-row {
    justify-content: flex-start;
    text-align: left;
  }

  .hk-footer-slogan {
    font-size: 14px;
  }
}
