:root{
  --bg:#354779;
  --white:#ffffff;
  --accent:#F68921;
}

*{box-sizing:border-box;}

html,body{height:100%;}

body{
  margin:0;
  background:var(--bg);
  color:var(--white);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}

.page{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:48px 20px;
}

.hero{
  width:100%;
  max-width:1100px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.lush-logo{
  width:min(880px, 92vw);
  height:auto;
  margin-bottom:32px;
}

.master-row{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  margin:6px 0 18px;
}

.master-line{
  height:2px;
  width:min(260px, 22vw);
  background:var(--accent);
  border-radius:2px;
  opacity:0.95;
}

.master-img{
  height:24px;
  width:auto;
}

.brand-logos{
  width:min(740px, 90vw);
  height:auto;
  margin:4px 0 56px;
}

.contact{
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:center;
}

.contact .kicker{
  margin:0;
  font-size:28px;
  font-weight:500;
  color:var(--accent);
  letter-spacing:0.2px;
}

.contact .name{
  margin:0;
  font-size:26px;
  font-weight:500;
}

.contact .line{
  margin:0;
  font-size:22px;
  font-weight:400;
}

.contact a{
  color:var(--white);
  text-decoration:underline;
  font-weight:500;
  transition:opacity .2s ease;
}

.contact a:hover{
  opacity:0.75;
}

.address{ margin-top:6px; }

@media (max-width:520px){
  .lush-logo{ margin-bottom:24px; }
  .brand-logos{ margin-bottom:42px; }
  .contact .kicker{ font-size:22px; }
  .contact .name{ font-size:22px; }
  .contact .line{ font-size:18px; }
  .master-row{ gap:14px; }
  .master-img{ height:20px; }
}
