*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #640e0d;
  color: #fff;
  font-family: "begum", sans-serif;
  font-weight: 400;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo {
  width: 60px;
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease both;
}

.container {
  max-width: 720px;
  width: 100%;
  padding: 23vh 24px 20vh;
  padding: 23dvh 24px 20dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

footer {
  width: 100%;
  padding: 40px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  animation: fadeUp 0.8s ease 1.2s both;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  width: 160px;
}

.footer-col {
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-col--center {
  text-align: center;
}

.footer-col--right {
  text-align: right;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 30px;
  animation: fadeUp 0.8s ease 0.3s both;
}

.blurb {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 48px;
  animation: fadeUp 0.8s ease 0.6s both;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px 14px 32px;
  border: 3px solid #fff;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
  animation: fadeUp 0.8s ease 0.9s both;
}

.cta-arrow {
  transition: transform 0.3s ease;
}

.cta:hover {
  border-color: #edb63b;
  color: #edb63b;
}

.cta:hover .cta-arrow {
  transform: translateX(5px);
}

@media (max-width: 680px) {
  .container {
    padding-top: 10vh !important;
    padding-bottom: 60px !important;
    padding-inline: 20px !important;
  }
  h1 {
    font-size: 1.6rem;
  }
  .blurb {
    font-size: 1.2rem;
  }
  footer {
    border-top: unset !important;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .footer-col--right {
    order: 2;
    text-align: center;
    max-width: 400px;
  }
  .footer-col--center {
    order: 3;
    text-align: center;
    max-width: 400px;
  }
}
