/* Wesson Property Partners — Splash Page styles */
:root{
  --bg: #F2F5E2;
  --text: #1C2C44;
  --muted: #3f525f;
  --accent: #2E6F78;
  --card: #ffffff;
  --border: #e7ebe3;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.wrap{
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 16px;
}

.card{
  text-align:center;
  background: var(--card);
  border:1px solid var(--border);
  border-radius: 20px;
  padding: 28px 22px;
  width: min(960px, 100%);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.hero-logo{
  width: min(780px, 100%);
  height: auto;
  display:block;
  margin: 0 auto 6px auto;
}

.tagline{
  margin: 6px 0 4px 0;
  font-weight: 700;
  letter-spacing: 0.8px;
  font-size: clamp(16px, 2.6vw, 22px);
  color: var(--text);
}

.launch{
  margin: 4px 0 14px 0;
  color: var(--muted);
  font-size: 15px;
}

.form{
  display:flex;
  justify-content:center;
  gap:10px;
  margin: 0 0 10px 0;
  flex-wrap:wrap;
}

.form input[type="email"]{
  flex: 1 1 360px;
  max-width: 420px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfd9cd;
  outline: none;
}

.form input::placeholder{ color:#91a0a9 }

.btn{
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  background: var(--accent);
  color: white;
  font-weight: 700;
  cursor: pointer;
}

.btn:focus{ outline:2px solid #2b77ff; outline-offset:2px }

.contact{
  margin: 6px 0 0 0;
  color: var(--muted);
  font-size: 14px;
}

a{ color: #2E6F78; text-decoration:none }
a:hover{ text-decoration:underline }

.foot{
  margin-top: 16px;
  text-align:center;
  color:#6a7b85;
  font-size:12px;
}

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

@media (max-width:480px){
  .btn, .form input[type="email"]{ width:100% }
}
