:root{
  --bg:#0b0f14;
  --card:#0f1621;
  --text:#e8eef7;
  --muted:#b8c4d6;
  --line:rgba(232,238,247,.14);
  --accent:#6ea8fe;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  /* Make the hero image the primary visual layer across the whole page */
  background: url("hero.png") center/cover fixed no-repeat;
  color:var(--text);
  line-height:1.5;
}

/* Global overlay for readability while keeping the image prominent */
body::before{
  content:"";
  position:fixed;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,.18),
    rgba(0,0,0,.38)
  );
  pointer-events:none;
  z-index:0;
}

/* Ensure all page content sits above the overlay */
.site-header,.hero,.contact,.site-footer,.cookie{position:relative;z-index:1;}
.wrap{max-width:920px;margin:0 auto;padding:0 18px}
.site-header{border-bottom:1px solid var(--line);background:rgba(11,15,20,.35);backdrop-filter: blur(10px);position:sticky;top:0;z-index:20}
.brand{display:inline-block;padding:16px 0;color:var(--text);text-decoration:none;font-weight:700;letter-spacing:.2px}
.hero{position:relative;min-height:70vh;display:flex;align-items:center;padding:92px 0 72px;background:transparent;}
.hero::before{content:"";position:absolute;inset:0;background:transparent;}
.hero .wrap{position:relative;text-align:center;}
.hero h1{text-shadow:0 6px 22px rgba(0,0,0,.55)}
.hero h1{margin:0;font-size:clamp(32px,5vw,56px);letter-spacing:-.02em}
.hero .sub{margin:10px 0 0;color:var(--muted);max-width:60ch;margin-left:auto;margin-right:auto}
.contact{padding:22px 0 70px}
.contact h2{margin:0 0 10px;font-size:28px}
.contact hr{border:0;border-top:1px solid var(--line);margin:14px 0 18px}
.contact h3{margin:0 0 18px;color:var(--muted);font-size:18px;font-weight:600}
.form{
  background:linear-gradient(180deg, rgba(15,22,33,.9), rgba(15,22,33,.7));
  border:1px solid var(--line);
  border-radius:16px;
  padding:18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
label{display:block;margin:12px 0}
label span{display:block;margin-bottom:6px;color:var(--muted);font-size:14px}
input[type="text"], input[type="email"], textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(11,15,20,.55);
  color:var(--text);
  outline:none;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus{border-color:rgba(110,168,254,.7);box-shadow:0 0 0 4px rgba(110,168,254,.12)}
textarea{min-height:120px;resize:vertical;}
.req{color:#ffb4b4;margin-left:2px}
.checkbox{display:flex;gap:10px;align-items:flex-start;margin-top:10px}
.checkbox input{margin-top:3px}
button{
  margin-top:8px;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid rgba(110,168,254,.35);
  background:rgba(110,168,254,.18);
  color:var(--text);
  font-weight:700;
  cursor:pointer;
}
button:hover{background:rgba(110,168,254,.26)}
.fineprint{margin:14px 0 0;color:var(--muted);font-size:13px}
.fineprint a{color:var(--accent);text-decoration:none}
.fineprint a:hover{text-decoration:underline}
.status{margin:10px 0 0;min-height:1.2em;color:var(--muted);font-size:14px}
.site-footer{border-top:1px solid var(--line);padding:18px 0;color:var(--muted)}
.site-footer p{margin:6px 0}
.powered{opacity:.7}
.cookie{
  position:fixed;left:0;right:0;bottom:0;
  padding:14px;
  background:rgba(11,15,20,.82);
  border-top:1px solid var(--line);
  display:none;
}
.cookie-inner{max-width:920px;margin:0 auto;display:flex;gap:14px;align-items:center;justify-content:space-between}
.cookie-text p{margin:6px 0 0;color:var(--muted)}
.cookie-btn{white-space:nowrap}
@media (max-width:640px){
  .cookie-inner{flex-direction:column;align-items:stretch}
  .cookie-btn{width:100%}
}
