:root {
  --footer-bg: #ebebee;
  --footer-text: #1c1c1c;
  --footer-muted: #667562;
  --call-bg: #06a900;
  --footer-border: rgba(0, 0, 0, 0.08);
}

.site-footer {
  position: relative;
  background: var(--footer-bg);
  color: var(--footer-text);
  border-top: 1px solid var(--footer-border);
  padding: 30px 24px;
}

.footer-inner {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1.2fr;
  gap: 26px;
  align-items: start;
}

.footer-brand {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand .brand-text {
  font-size: clamp(48px, 4.6vw, 74px);
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 0.9;
  background: linear-gradient(90deg, #efd6c7 0%, #d69f7f 48%, #3a3c46 49%, #4e5059 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-tagline {
  margin-top: 8px;
  font-size: clamp(14px, 1.2vw, 20px);
  letter-spacing: 7px;
  text-transform: lowercase;
  color: #464646;
}

.footer-col p {
  margin: 0 0 8px;
  font-size: clamp(15px, 1.35vw, 22px);
  line-height: 1.42;
}

.footer-label {
  color: var(--footer-muted);
  font-weight: 700;
}

.call-fab {
  position: absolute;
  right: 24px;
  bottom: 20px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--call-bg);
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(6, 169, 0, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.call-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(6, 169, 0, 0.35);
}

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

  .call-fab {
    width: 74px;
    height: 74px;
    font-size: 16px;
  }
}

@media (max-width: 700px) {
  .site-footer {
    padding: 22px 16px 18px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .call-fab {
    position: static;
    width: 64px;
    height: 64px;
    font-size: 14px;
    margin: 6px 0 0 auto;
  }
}
