/* =========================
   LANDING HERO
========================= */

.landing-hero{
  min-height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

  padding: 44px 20px 34px;
  text-align: center;
  color: #fff;

  /* overlay provided (stacked backgrounds) */
  background-image:
     
 
    var(--landing-hero-bg);
  background-blend-mode: normal, multiply, normal;

  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
}

.landing-hero *{ box-sizing: border-box; }

.landing-hero__top{
  width: 100%;
  display: flex;
  justify-content: center;
  flex-flow: column;
  gap: 10px;
}

.landing-hero__logo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.landing-hero__logo img{
  max-width: min(720px, 92vw);
  height: auto;
  display: block;
}

.landing-hero__center{
  width: 100%;
  max-width: 1100px;
  padding: 18px 0 10px;
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
}

.landing-hero__founded{
  margin: 0 0 26px;
  color: #FFF;
  font-family: Archivo, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 22px;
  text-transform: uppercase;
}

.landing-hero__kicker{
  margin: 0 0 0px;
  color: #FFF;
  font-family: Archivo, sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 16.8px;
}

.landing-hero__title{
  margin: 0;
  color: #FFF;
  font-family: Archivo, sans-serif;
  font-size: 52px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}

.landing-hero__bottom{
  width: 100%;
  display: flex;
  justify-content: center;
}

.landing-hero__meta{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  padding-top: 18px;
  padding-bottom: 80px;
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
}

.landing-hero__meta-item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.landing-hero__meta-text{
  color: #FFF;
  font-family: Archivo, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* icons sizing (cnm-icon uses SVG mask in your system; keep simple) */
.landing-hero__meta-item .cnm-icon{
  display: inline-block;
  width: 22px;
  height: 22px;
}
.menu {
    display: none;
}

footer.site-footer {
    display: none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px){
  .landing-hero{ padding: 36px 18px 28px; }

  .landing-hero__founded{
    font-size: 18px;
    letter-spacing: 14px;
    margin-bottom: 22px;
  }

  .landing-hero__kicker{
    font-size: 26px;
    letter-spacing: 10px;
  }

  .landing-hero__title{
    font-size: 44px;
  }

  .landing-hero__meta-text{
    font-size: 20px;
  }
}

@media (max-width: 520px){
  .landing-hero{ padding: 28px 16px 22px; }

  .landing-hero__logo img{
    max-width: 86vw;
  }

  .landing-hero__founded{
    font-size: 14px;
    letter-spacing: 8px;
    margin-bottom: 18px;
  }

  .landing-hero__kicker{
    font-size: 24px;
    letter-spacing: 6px;
    margin-bottom: 8px;
  }

  .landing-hero__title{
    font-size: 35px;
  }

  .landing-hero__meta{
    gap: 14px 22px;
  }

  .landing-hero__meta-text{
    font-size: 18px;
  }
}
