html, body {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
}

main {
  flex: 1;
}

.page-width {
  margin: 0 auto;
  padding: 3rem 2rem;
  max-width: 1400px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-width p {
  line-height: 1.3;
}

.hero-header {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.hero-inner {
  display: flex;
  align-items: center;
  max-width: 1400px;
  padding: 0 5rem;
  gap: 5rem;
}

.hero-logo {
  padding: .5rem;
}

.hero-logo img {
  display: block;
  height: 20rem;
  width: 20rem;
}

.hero-social {
  position: absolute;
  right: 0%;
  top: 0%;
}

.hero-social svg {
  width: 34px;
  height: 34px;
  fill: black;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero-text-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1rem;
  font-style: italic;
  margin: 0;
  opacity: 0.8;
  margin-top: 0.3rem;
}

.site-footer {
  background: #000000d6;
  color: #fff;
  padding: 3rem 1.5rem 1rem;
  font-size: 0.9rem;
  position: relative;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 3rem;
}

.footer-left {
  text-align: left;
}

.footer-center {
  text-align: center;
}

.footer-center .custom-logo {
  height: 12rem;
  width: 12rem;
  filter: invert(1);
}

.footer-right {
  text-align: right;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-subtitle {
  font-weight: 600;
  margin: 1rem 0 0.4rem;
}

.footer-description {
  line-height: 1.5;
  opacity: 0.9;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.3rem;
}

.site-footer a {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.8rem;
  opacity: 0.8;
}

.footer-inner.footer-grid p {
  text-wrap-style: balance;
}

.hero-badge-single {
  position: absolute;
  right: 2%;
  top: -12%;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-badge-single:hover {
  transform: scale(1.1) rotate(2deg);
}

.hero-social:hover svg {
  transform: scale(1.1);
  opacity: 0.8;
}

@media (max-width: 799px) and (min-width: 769px) {
  .hero-inner {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .page-width {
    padding: 1.2rem;
  }

  .hero-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-social {
    right: 0%;
    top: 0%;
    margin: 0;
    padding: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0;
  }

  .footer-left,
  .footer-right {
    text-align: center;
  }

  .hero-logo {
    display: flex;
    justify-content: center;
  }

  .page-width p {
    text-align: justify;
  }

  .hero-badge-single {
    position: relative;
    display: block;
    text-align: center;
    margin: 1rem auto;
    right: auto;
    top: auto;
  }

  .hero-text-group {
    width: 100%;
  }
}