.brand-logo {
  width: 150px;
  height: auto;
  display: block;
}

.responsive-break {
  display: inline;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.quick-phone {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(214, 192, 165, 0.38);
  border-radius: 4px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.quick-phone svg,
.btn svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.quick-phone svg {
  color: var(--gold, #d6c0a5);
}

.contact-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form.is-submitting button[type="submit"] {
  opacity: 0.68;
  pointer-events: none;
}

.form-status {
  display: none;
  margin-top: 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 16px 18px;
  color: #686a6d;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

.form-status:not(:empty) {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  animation: form-status-pop 220ms ease-out;
}

.form-status:not(:empty)::before {
  content: "";
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border-radius: 50%;
  margin-top: 6px;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(68, 96, 82, 0.12);
}

.form-status[data-status="success"] {
  border-color: rgba(68, 96, 82, 0.28);
  background: #edf5f0;
  color: #446052;
  box-shadow: 0 12px 28px rgba(68, 96, 82, 0.12);
}

.form-status[data-status="error"] {
  border-color: rgba(154, 47, 47, 0.28);
  background: #fbefef;
  color: #9a2f2f;
}

.form-status[data-status="info"] {
  border-color: rgba(155, 122, 84, 0.28);
  background: #fbf7ef;
  color: #9b7a54;
}

@keyframes form-status-pop {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.floating-phone {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214, 192, 165, 0.72);
  border-radius: 50%;
  background: #424242;
  color: #d6c0a5;
  box-shadow: 0 14px 34px rgba(38, 38, 38, 0.28);
}

.floating-phone::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(214, 192, 165, 0.38);
  border-radius: 50%;
  animation: floating-phone-pulse 1900ms ease-out infinite;
}

.floating-phone svg {
  width: 24px;
  height: 24px;
}

.floating-phone:focus {
  outline: none;
}

.floating-phone:focus-visible {
  outline: 3px solid #d6c0a5;
  outline-offset: 4px;
}

@keyframes floating-phone-pulse {
  0% {
    opacity: 0.65;
    transform: scale(0.86);
  }

  100% {
    opacity: 0;
    transform: scale(1.24);
  }
}

.footer {
  background: #424242;
  color: rgba(255, 255, 255, 0.72);
  padding: 28px 0;
  font-size: 13px;
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 700px) {
  .responsive-break {
    display: inline;
  }

  .brand-logo {
    width: 126px;
  }

  .nav-actions {
    gap: 8px;
  }

  .footer-inner {
    width: min(100% - 24px, 1180px);
    align-items: stretch;
    flex-direction: column;
  }

  .floating-phone {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }

  .floating-phone svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  .quick-phone {
    width: 44px;
    padding: 0;
  }

  .quick-phone > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}
