@font-face {
  font-family: 'BrandonRegular';
  src: url('../fonts/HvDTrial_Brandon_Grotesque_regular-BF64a625c9311e1.otf') format('opentype');
}
@font-face {
  font-family: 'BrandonBold';
  src: url('../fonts/HvDTrial_Brandon_Grotesque_bold-BF64a625c9151d5.otf') format('opentype');
}

/* ===== RESET ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'BrandonRegular', sans-serif;
}

/* ===== PROMO BAR ===== */
.promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 6vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #8EAD52;
  color: #fff;
  font-family: 'BrandonBold', sans-serif;
  font-size: 1.1rem;
  padding: 0 1vw;
  text-align: center;
}

/* ===== SITE HEADER ===== */
.site-header {
  width: 100%;
  background: #FFF0D7;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2vh 0;
  padding-top: 8vh;
}
.site-logo {
  width: 7vw;
  height: auto;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: url('../images/banner.jpg') center / cover no-repeat;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
}
.hero-heading {
  margin-bottom: 2vh;
  font-family: 'BrandonBold', sans-serif;
  font-size: 50px;
  text-transform: uppercase;
}
.hero-btn {
  padding: 0.5em 1.5em;
  font-size: 1.55rem;
  border: none;
  background: #8EAD52;
  color: #fff;
  cursor: pointer;
  border-radius: 3rem;
  transition: background 0.3s;
}
.hero-btn:hover {
  background: #556b1f;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #fcf6ed;
}
.footer-meta {
  padding: 3vh 8vw;
  font-size: 1rem;
}
.footer-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2vh;
  color: #937a7a;
}

/* ===== POLICY BAR ===== */
.policy-bar {
  height: 7vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  background: #000;
}
.policy-link {
  color: #fff;
  text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .promo-bar {
    letter-spacing: 0.1rem;
  }
  .hero {
    height: 65vh;
    background-image: url('../images/mobile-banner.png');
  }
  .hero-content {
    width: 95%;
  }
  .hero-heading {
    font-size: 2.1rem;
    line-height: 2.7rem;
  }
  .hero-btn {
    font-size: 1.7rem;
  }
  .site-logo {
    width: 20vw;
  }
  .footer-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .policy-bar {
    font-size: 1.2rem;
  }
}