.footer-curve {
  position: relative;
  line-height: 0;
  margin-bottom: -1px;
  background: var(--section-contact-bg);
}

.footer-curve svg {
  display: block;
  width: 100%;
  height: 140px;
}

.footer-curve path {
  fill: var(--section-footer-bg);
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 32px 24px 28px;
  background: var(--section-footer-bg);
  color: #fff;
}

.footer::before {
  content: "";
  position: absolute;
  inset: auto auto -120px -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 26, 0.2), transparent 68%);
  pointer-events: none;
}

.footer-shell {
  display: grid;
  gap: 28px;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  color: #fff;
  text-decoration: none;
}

.footer-brand-wordmark {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1;
  font-weight: 1000;
  letter-spacing: -2px;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.74);
  font-size: var(--text-sm);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1.2px;
  transition: color var(--transition-base), transform var(--transition-base);
}

.footer-nav a:hover {
  color: #ffc76b;
  transform: translateY(-1px);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition:
    color var(--transition-base),
    border-color var(--transition-base),
    background-color var(--transition-base),
    transform var(--transition-base);
}

.footer-social-link:hover {
  color: #12100d;
  background: #ffc76b;
  border-color: #ffc76b;
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-bottom p {
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0;
}

@media (max-width: 900px) {
  .footer-main,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-actions {
    justify-content: flex-start;
  }

  .footer-nav {
    justify-content: flex-start;
    gap: 18px 24px;
  }
}

@media (max-width: 620px) {
  .footer-curve svg {
    height: 92px;
  }

  .footer {
    padding: 40px 18px 24px;
  }

  .footer-shell {
    gap: 22px;
  }

  .footer-brand {
    gap: 14px;
  }

  .footer-brand-wordmark {
    font-size: clamp(28px, 9vw, 38px);
  }

  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
