html, body.landing { margin: 0; padding: 0; background: #000; }
.hero {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 100vh;
  background:
    linear-gradient(to top, #000 0%, rgba(0,0,0,.8) 16%, rgba(0,0,0,.12) 40%, transparent 60%),
    url("/img/hero.jpg") center top / cover no-repeat;
}
.logo {
  position: absolute;
  top: 20px; left: 26px;
  z-index: 4;
  color: #fff;
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  font-weight: 800;
  text-decoration: none;
  text-shadow: 0 2px 14px rgba(0,0,0,.65);
}
.topnav {
  position: absolute;
  top: 28px; right: 26px;
  z-index: 4;
  display: flex;
  gap: 1.1rem;
}
.topnav a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-size: .86rem;
  opacity: .55;
}
.topnav a:hover { opacity: 1; }
.hero-copy {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0 6% 2.8vh;
}
#wave { width: 100%; height: 72px; display: block; }
.float-wrap { height: 5rem; margin: .15rem 0 .9rem; overflow: hidden; }
.float-line {
  color: #fff;
  font-size: clamp(1.35rem, 2.8vw, 2.05rem);
  font-weight: 600;
  line-height: 1.25;
  text-shadow: 0 2px 18px #000;
  transform: translateY(5rem);
  opacity: 0;
  transition: transform 2.2s cubic-bezier(.16,.8,.3,1), opacity 1.4s ease;
}
.float-line.in { transform: translateY(0); opacity: 1; }
a.btn {
  display: inline-block;
  background: #d4a017;
  color: #fff;
  text-decoration: none;
  padding: .55rem 1.1rem;
  border-radius: 8px;
  font-weight: 400;
}
.rest { min-height: 38vh; background: #000; }
footer {
  background: #000;
  color: #8a8a8a;
  padding: 2.2rem 8% 2.8rem;
  border-top: 1px solid #222;
  font-size: .88rem;
}
footer strong { color: #fff; display: block; margin-bottom: .35rem; }
footer nav { margin: 1rem 0; display: flex; flex-wrap: wrap; gap: .9rem 1.3rem; }
footer a { color: #9a9a9a; text-decoration: none; }
footer a:hover { color: #fff; }
footer .copy { margin: 0; opacity: .7; }
