.site-footer {
  position: relative;
  z-index: 40;
  color: var(--color-text-light);
  background: var(--color-bg-dark, #07111d);
}
.site-footer .footer__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}
.site-footer .footer__cta-band {
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 199, 86, 0.18),
      transparent 35%
    ),
    linear-gradient(180deg, var(--color-brand-navy-deep) 0%, var(--color-bg-dark) 100%);
  padding: 96px 0 88px;
}
@media (max-width: 991px) {
  .site-footer .footer__cta-band {
    padding: 72px 0;
  }
}
.site-footer .footer__cta-band-inner,
.site-footer .footer__main-inner,
.site-footer .footer__bar-inner {
  width: min(1280px, 100% - var(--section-padding-x) * 2);
  margin: 0 auto;
}
.site-footer .footer__cta-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: start;
}
@media (max-width: 991px) {
  .site-footer .footer__cta-band-inner {
    grid-template-columns: 1fr;
  }
}
.site-footer .footer__cta-copy {
  max-width: 520px;
}
.site-footer .footer__cta-title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  color: var(--color-brand-ivory);
}
.site-footer .footer__cta-text {
  margin: 0;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.8;
}
.site-footer .footer__contact-form {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(247, 246, 243, 0.05);
  backdrop-filter: blur(12px);
}
@media (max-width: 575px) {
  .site-footer .footer__contact-form {
    padding: 18px;
    border-radius: 22px;
  }
}
.site-footer .footer__form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 767px) {
  .site-footer .footer__form-grid {
    grid-template-columns: 1fr;
  }
}
.site-footer .footer__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer .footer__field span {
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.site-footer .footer__field input,
.site-footer .footer__field select,
.site-footer .footer__field textarea {
  width: 100%;
  min-width: 0;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-text-dark, #122439);
  font-family: var(--font-body);
  font-size: 15px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.site-footer .footer__field input:focus,
.site-footer .footer__field select:focus,
.site-footer .footer__field textarea:focus {
  outline: none;
  border-color: rgba(255, 199, 86, 0.8);
  box-shadow: 0 0 0 4px rgba(255, 199, 86, 0.12);
}
.site-footer .footer__field select {
  appearance: none;
}
.site-footer .footer__field textarea {
  min-height: 150px;
  resize: vertical;
}
.site-footer .footer__field--full {
  grid-column: 1/-1;
}
.site-footer .footer__form-actions {
  margin-top: 18px;
}
.site-footer .footer__contact-form--panel {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.site-footer .footer__panel-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.75;
}
.site-footer .footer__panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.site-footer .footer__panel-points {
  display: grid;
  gap: 14px;
}
.site-footer .footer__panel-point {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}
.site-footer .footer__panel-point:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 199, 86, 0.45);
  background: rgba(255, 199, 86, 0.08);
}
.site-footer .footer__panel-point-label {
  font-family: var(--font-secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.54);
}
.site-footer .footer__panel-point-value {
  line-height: 1.6;
}
.site-footer .footer__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--color-brand-gold);
  color: var(--color-brand-navy-deep);
  text-decoration: none;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}
.site-footer .footer__submit:hover {
  transform: translateY(-1px);
  background: var(--color-brand-gold-soft, #ffd67f);
  box-shadow: 0 18px 30px rgba(255, 199, 86, 0.22);
}
.site-footer .footer__main {
  padding: 72px 0 56px;
  background:
    linear-gradient(180deg, rgba(8, 17, 29, 0.4), rgba(8, 17, 29, 0)), #07111d;
}
.site-footer .footer__brand {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 28px;
  padding-bottom: 40px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  .site-footer .footer__brand {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.site-footer .footer__brand-mark {
  width: 120px;
  height: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  background:
    radial-gradient(circle at top, rgba(255, 199, 86, 0.2), transparent 60%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer .footer__brand-mark img {
  width: 78px;
  height: auto;
  object-fit: contain;
}
.site-footer .footer__brand-title {
  margin: 0 0 14px;
  max-width: 620px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  color: var(--color-brand-ivory);
}
.site-footer .footer__brand-text {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
}
.site-footer .footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.9fr;
  gap: 28px;
}
@media (max-width: 991px) {
  .site-footer .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .site-footer .footer__grid {
    grid-template-columns: 1fr;
  }
}
.site-footer .footer__column-title {
  margin: 0 0 16px;
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.54);
}
.site-footer .footer__links,
.site-footer .footer__contact-list {
  display: grid;
  gap: 12px;
}
.site-footer .footer__link,
.site-footer .footer__contact-link,
.site-footer .footer__meta-link,
.site-footer .footer__bar-inner a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}
.site-footer .footer__link:hover,
.site-footer .footer__contact-link:hover,
.site-footer .footer__meta-link:hover,
.site-footer .footer__bar-inner a:hover {
  color: var(--color-brand-gold);
}
.site-footer .footer__link,
.site-footer .footer__contact-link {
  line-height: 1.6;
}
.site-footer .footer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.site-footer .footer__social-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: var(--color-text-light);
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
.site-footer .footer__social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 199, 86, 0.12);
  border-color: rgba(255, 199, 86, 0.55);
  color: var(--color-brand-gold);
}
.site-footer .footer__social-link svg {
  width: 18px;
  height: 18px;
}
.site-footer .footer__social-link--text {
  width: auto;
  min-width: 42px;
  border-radius: 999px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
}
.site-footer .footer__meta-link {
  display: inline-block;
  font-size: 14px;
}
.site-footer .footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--color-bg-dark, #040b13);
  padding: 18px 0;
}
.site-footer .footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}
.site-footer .footer__bar-inner p {
  margin: 0;
}
@media (max-width: 640px) {
  .site-footer .footer__bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
