/* Minimal, elegant styling with an animated night-sky lake */
:root{
  --fg: #f2f2f2;
  --muted:#b8b8b8;
  --accent:#9db4ff;
  --panel:#0b0b0bcc; /* frosted glass overlay */
}

*{box-sizing:border-box}
html,body{
  margin:0; padding:0; height:100%;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  color:var(--fg); background:#000;
}

#bg{
  position:fixed; inset:0; width:100%; height:100%;
  display:block; background:#000;
}

.overlay{
  position:relative; min-height:100dvh; display:flex; flex-direction:column; justify-content:flex-start;
}

.hero{
  height:60dvh; display:grid; place-items:center; text-align:center; padding-top:6vh;
}
.hero h1{
  font-family:"Playfair Display", Georgia, serif; 
  font-weight:600; 
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  letter-spacing:.02em;
  margin:0;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}

.contact{
  width:min(860px, 92vw);
  margin:0 auto 8vh auto;
  background:var(--panel);
  backdrop-filter: blur(6px);
  border:1px solid #262626;
  border-radius:20px;
  padding: clamp(16px, 3vw, 28px);
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
}
.contact h2{
  font-family:"Playfair Display", Georgia, serif;
  font-weight:600; 
  text-align:center; 
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  margin: 6px 0 0 0;
}
.sub{
  text-align:center; color:var(--muted); margin:4px 0 22px 0;
}

form{
  display:grid; gap:12px;
}
input, textarea{
  width:100%; border:1px solid #3a3a3a; background:#0e0e10; color:#fff; 
  border-radius:10px; padding:14px 14px; font-size:16px; 
  outline:none; transition:border-color .2s ease, box-shadow .2s ease;
}
input::placeholder, textarea::placeholder{ color:#8f8f8f; }
input:focus, textarea:focus{ border-color:#6f86ff; box-shadow:0 0 0 3px rgba(111,134,255,.25); }
textarea{ min-height:160px; resize:vertical; }

button{
  justify-self:start;
  padding:12px 18px; border-radius:999px; border:0;
  font-weight:600; background:#1a1a1a; color:#fff; 
  border:1px solid #323232; cursor:pointer;
}
button:hover{ filter:brightness(1.08); }
.help{ color:var(--muted); font-size:.9rem; margin:6px 0 0 0 }

.footer{ margin-top:18px; text-align:center; color:#9a9a9a; }

.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; }

/* Responsive tweaks */
@media (max-width: 520px){
  .contact{ padding:16px 14px; border-radius:14px; }
}
