/* Footer [NEW] — 669:24461: три полосы, фон #262b31 */
.ftn { background: #262b31; display: flex; flex-direction: column; }
.ftn__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 80px var(--gutter);
  background: var(--ink);
}
.ftn__cta-text {
  font-size: clamp(22px, 1.7708vw, 34px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--white);
}
.ftn__cta-btn {
  flex: 0 0 auto;
  padding: 20px 32px;
  border-radius: var(--r-pill);
  background: var(--gold-grad);
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  color: var(--ink);
  white-space: nowrap;
  transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 240ms cubic-bezier(0.4, 0, 0.2, 1);
}
.ftn__cta-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(184, 138, 52, 0.35); }

.ftn__cols {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 70px var(--gutter);
}
.ftn__brand { width: 380px; display: flex; flex-direction: column; gap: 16px; }
.ftn__logo { font-size: 20px; font-weight: 900; line-height: normal; letter-spacing: 1px; color: var(--gold); }
.ftn__about { width: min(320px, 100%); font-size: 13px; line-height: 1.5; color: rgba(255, 255, 255, 0.5); }
.ftn__col { display: flex; flex-direction: column; gap: 14px; }
.ftn__head { font-size: 13px; font-weight: 700; line-height: normal; letter-spacing: 0.5px; color: var(--gold); }
.ftn__col ul { display: flex; flex-direction: column; gap: 14px; }
.ftn__col li { font-size: 13px; line-height: normal; color: rgba(255, 255, 255, 0.55); }
.ftn__col a { color: inherit; transition: color 240ms cubic-bezier(0.4, 0, 0.2, 1); }
.ftn__col a:hover { color: var(--paper); }

.ftn__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px var(--gutter);
  background: var(--gold);
  font-size: 12.5px;
  font-weight: 500;
  line-height: normal;
}
.ftn__bar p { color: var(--ink); }
.ftn__bar a { color: rgba(24, 29, 36, 0.75); }
.ftn__bar a:hover { color: var(--ink); }

@media (max-width: 1023px) {
  .ftn__cta { flex-direction: column; align-items: flex-start; padding-block: 48px; }
  .ftn__cols { flex-wrap: wrap; gap: 32px 40px; padding-block: 48px; }
  .ftn__brand { width: 100%; }
}
@media (max-width: 599px) {
  .ftn__col { width: 100%; }
  .ftn__bar { flex-direction: column; align-items: flex-start; gap: 8px; }
}
