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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #050505;
  color: #ffffff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1150px;
  margin: 0 auto;
}

.site-header {
  background: #050505;
  padding: 24px 0;
  border-bottom: 1px solid rgba(207, 166, 77, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  max-width: 300px;
  height: auto;
}

.main-nav a {
  color: #d8d8d8;
  text-decoration: none;
  margin-left: 28px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.main-nav a:hover {
  color: b8943c;
}

.hero {
  min-height: 60vh;
  background-image:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.68)),
    url("images/spardio-banner.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 90px 0;
}

.hero-logo {
  max-width: 620px;
  width: 90%;
  margin-bottom: 45px;
}

.hero h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero p {
  color: #cfcfcf;
  font-size: 18px;
  max-width: 680px;
  margin: 0 auto 35px;
}

.btn {
  display: inline-block;
  background: #b8943c;
  color: #050505;
  text-decoration: none;
  padding: 14px 30px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: bold;
}

.btn:hover {
  background: #ffffff;
}

.section {
  padding: 60px 0;
  background: #080808;
}

.dark-section {
  background: #111111;
}

.narrow {
  max-width: 780px;
  text-align: center;
}

.section h2 {
  color: #ffffff;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-align: center;
}

.section p {
  color: #c8c8c8;
  font-size: 17px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.card {
  background: #050505;
  border: 1px solid rgba(184, 148, 60, 0.35);
  padding: 34px;
}

.card h3 {
  color: #b8943c;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-section p {
  margin-bottom: 32px;
	}

.contact-section {
  text-align: center;
  background: #050505;
}

.contact-symbol {
  max-width: 160px;
  margin-bottom: 36px;
}

.site-footer {
  background: #000000;
  color: #888888;
  text-align: center;
  padding: 26px;
  font-size: 13px;
}
.hero-symbol {
  display: block;
  max-width: 200px;
  width: 35%;
  height: auto;
  margin: 25px auto 0;
  opacity: 0.95;
}
.brand-banner {
  background-image: url("images/spardio-banner.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 300px;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
  }

  .main-nav {
    margin-top: 18px;
  }

  .main-nav a {
    margin: 0 8px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 16px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .section h2 { 
    font-size: 27px;
  }
}