/* (c) 2026 Sentys Inc. All rights reserved. */





.site-footer {
  background: linear-gradient(180deg, #8a8986 0%, #4a4946 40%, #2a2a28 100%);
  color: rgba(255,255,255,0.85);
  margin-top: 0;
}


.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 48px 36px;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}

.footer-brand-logo {
  height: 24px;
  margin-bottom: 18px;
  opacity: 0.9;
  ;
}

.footer-brand-tagline {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-brand-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #B0D237;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-brand-cta:hover {
  opacity: 0.75;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-contact {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.footer-contact a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-contact__address {
  margin-top: 16px;
  color: rgba(255,255,255,0.4);
  font-size: 0.74rem;
  line-height: 1.6;
}


.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 48px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}


@media (max-width: 900px) {

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 32px 24px 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 16px 24px;
  }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}


.footer-legal { margin-left: 14px; }
.footer-legal a { color: inherit; opacity: 0.75; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.25); }
.footer-legal a:hover { opacity: 1; }


.consent {
  position: fixed; left: 20px; bottom: 20px; z-index: 9000;
  max-width: 380px; padding: 18px 20px;
  background: #1a1a19; color: #eee;
  border-radius: 6px; box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  font-family: var(--font-body); font-size: 0.85rem; line-height: 1.55;
}
.consent__text { margin: 0 0 12px; }
.consent__text a { color: #B0D237; text-decoration: none; border-bottom: 1px solid rgba(176,210,55,0.5); }
.consent__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.consent__btn { font: 500 0.82rem/1 var(--font-body); padding: 10px 16px; border-radius: 48px; border: 1px solid rgba(255,255,255,0.35); background: transparent; color: #eee; cursor: pointer; }
.consent__btn--accept { background: #B0D237; border-color: #B0D237; color: #1a1a19; }
@media (max-width: 480px) { .consent { left: 12px; right: 12px; bottom: 12px; max-width: none; } }
