@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400&family=Source+Sans+3:wght@400;600;700&display=swap");
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: #000; color: #fff; font-family: "Source Sans 3", "Segoe UI", sans-serif; }
.nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.nav.solid { position: static; background: #111; }
.nav-link { color: #fff; text-decoration: none; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.nav-link:hover { opacity: .75; }
.logo img { display: block; width: 60px; height: 60px; background: #fff; }
.hero {
  min-height: 66vh; display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 110px 16px 60px;
  background: linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)), url("/img/hero.jpg") center / cover no-repeat;
}
.hero h1 { font-family: "Playfair Display", Georgia, serif; font-weight: 400; font-size: clamp(1.6rem, 4.2vw, 2.9rem); line-height: 1.3; text-shadow: 0 2px 18px rgba(0,0,0,.4); }
.contact { max-width: 500px; margin: 0 auto; padding: 56px 16px 40px; text-align: center; }
.contact h2 { font-family: "Playfair Display", Georgia, serif; font-weight: 400; font-size: 2rem; color: #aaa; }
.rule { width: 30px; height: 1px; background: #444; margin: 16px auto 22px; }
.lead { font-weight: 600; margin-bottom: 18px; }
form { display: grid; gap: 14px; }
input[type=text], input[type=email], textarea {
  width: 100%; background: #000; color: #fff; border: 1px solid #aaa; border-radius: 3px;
  padding: 10px 10px; font: inherit; font-size: 15px;
}
input:focus, textarea:focus { outline: 2px solid #fff; }
.check { font-size: 14px; color: #ccc; display: flex; gap: 8px; align-items: center; justify-content: center; }
button {
  justify-self: center; background: #fff; color: #000; border: 0; border-radius: 3px;
  padding: 11px 20px; font: inherit; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; cursor: pointer;
}
button:hover { background: #ddd; }
.hp { position: absolute; left: -9999px; }
.foot { max-width: 760px; margin: 0 auto; padding: 40px 16px 48px; font-size: 13px; color: #aaa; text-align: center; }
.msg { max-width: 560px; margin: 0 auto; padding: 80px 16px; text-align: center; }
.msg h1 { font-family: "Playfair Display", Georgia, serif; font-weight: 400; margin-bottom: 14px; }
.msg a { color: #fff; }
