*{ margin:0; padding:0; box-sizing:border-box; }
html,body{ height:100%; }

body{
  font-family:'Inter',sans-serif;
  background-image:
    linear-gradient(180deg, rgba(7,21,34,0.6) 0%, rgba(7,21,34,0.72) 55%, rgba(7,21,34,0.88) 100%),
    url('../images/hero-valley.jpg');
  background-size: cover;
  background-position: 56% 40%;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
}

.logo{
  height: 110px;
  width: auto;
  margin-bottom: 44px;
}

h1{
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(30px, 5vw, 46px);
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h1 em{
  font-style: italic;
  color: #7FCBF2;
  font-weight: 400;
}

p.sub{
  margin-top: 22px;
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow{
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #F5A94D;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact{
  margin-top: 40px;
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.contact a{
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: border-color .2s ease, color .2s ease;
}

.contact a:hover{
  color: #F5A94D;
  border-color: #F5A94D;
}
