:root {
  --orange: #f15a29;
  --black: #101010;
  --white: #ffffff;
  --gray: #6b6b6b;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

img {
  max-width: 100%;
  display: block;
}

/* Header */

.site-header {
  padding: 28px 0;
  border-bottom: 4px solid var(--orange);
}

.logo {
  height: 56px;
  width: auto;
}

/* Hero */

.hero {
  background:
    linear-gradient(rgba(16, 16, 16, 0.72), rgba(16, 16, 16, 0.72)),
    url('images/homepage_banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  flex: 1;
  display: flex;
  align-items: center;
  padding: 120px 0;
}

.hero__inner {
  text-align: center;
}

.hero__eyebrow {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
}

.hero__heading {
  margin: 0;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
}

.hero__rule {
  width: 90px;
  height: 4px;
  background: var(--orange);
  margin: 32px auto;
}

.hero__subheading {
  margin: 0 auto;
  max-width: 640px;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
  color: #e6e6e6;
}

/* Info */

.info {
  padding: 80px 0;
}

.info__inner {
  text-align: center;
}

.info__heading {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info__text {
  margin: 0 0 28px;
  font-size: 17px;
  color: var(--gray);
}

.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 20px;
  font-weight: 600;
}

.contact__item {
  color: var(--black);
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
  transition: color 0.2s ease-in-out;
}

.contact__item:hover {
  color: var(--orange);
}

.contact__divider {
  color: var(--orange);
}

/* Footer */

.site-footer {
  border-top: 1px solid #e5e5e5;
  padding: 32px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__logo {
  height: 32px;
  width: auto;
}

.footer__copy {
  margin: 0;
  font-size: 14px;
  color: var(--gray);
}

/* Responsive */

@media (max-width: 640px) {
  .hero {
    padding: 80px 0;
  }

  .hero__heading {
    font-size: 40px;
  }

  .hero__subheading {
    font-size: 17px;
  }

  .info {
    padding: 60px 0;
  }

  .contact {
    flex-direction: column;
    gap: 10px;
  }

  .contact__divider {
    display: none;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}
