:root{
  --bg:#0b1220;
  --card:#0f1a33;
  --text:#eaf0ff;
  --muted:#b8c6ff;
  --accent:#5bd6ff;
  --accent2:#7cffb2;
  --border:rgba(255,255,255,.10);
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius:18px;
  --max: 1120px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1000px 700px at 20% -10%, rgba(91,214,255,.18), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(124,255,178,.12), transparent 55%),
    linear-gradient(180deg, #070b14, var(--bg));
  line-height:1.45;
}
a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
header{
  position:sticky; top:0; z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(7,11,20,.65);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px; min-width: 240px;
}
.brand img{
  width:44px; height:44px; border-radius:14px;
  background: rgba(255,255,255,.05);
  border:1px solid var(--border);
  padding:6px;
  object-fit: contain;
}
.brand h1{font-size:15px; margin:0; letter-spacing:.3px}
.brand p{margin:0; font-size:12px; color:var(--muted)}
.links{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}
.links a{
  font-size:13px; color:var(--muted);
  padding:8px 10px; border-radius:12px;
  border:1px solid transparent;
}
.links a:hover{border-color:var(--border); color:var(--text)}
.links a.active{
  border-color: rgba(91,214,255,.35);
  color: var(--text);
  background: rgba(255,255,255,.03);
}
.cta{
  display:flex; gap:10px; align-items:center; flex-wrap:wrap; justify-content:flex-end;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color:var(--text);
  font-weight:700; font-size:13px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  cursor:pointer;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(91,214,255,.45)}
.btn.primary{
  background: linear-gradient(135deg, rgba(91,214,255,.95), rgba(124,255,178,.92));
  color:#04101f; border-color: transparent;
}
.btn.primary:hover{transform: translateY(-1px) scale(1.01)}
.hero{padding:48px 0 22px}
.grid{
  display:grid; gap:18px;
  grid-template-columns: 1.1fr .9fr;
  align-items:stretch;
}
@media (max-width: 920px){
  .grid{grid-template-columns:1fr}
  .brand{min-width:auto}
}
.card{
  background: rgba(15,26,51,.65);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
h2{font-size:38px; margin:0 0 8px; letter-spacing: -0.6px}
p{margin:0 0 12px}
.muted{color:var(--muted)}
.badges{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.badge{
  font-size:12px; color:var(--text);
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  padding:8px 10px; border-radius:999px;
  display:inline-flex; gap:8px; align-items:center;
}
.badge i{
  width:8px; height:8px; border-radius:50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(91,214,255,.12);
  display:inline-block;
}
.section{padding:18px 0}
.section h3{font-size:22px; margin:0 0 10px}
.services{
  display:grid; gap:14px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 920px){ .services{grid-template-columns:1fr} }
.service h4{margin:0 0 6px; font-size:16px}
.service p{margin:0; color:var(--muted); font-size:13px}
.service ul{margin:10px 0 0; padding-left:18px; color:var(--muted); font-size:13px}
.split{display:grid; gap:18px; grid-template-columns: 1fr 1fr}
@media (max-width: 920px){ .split{grid-template-columns:1fr} }
form{display:grid; gap:10px}
label{font-size:12px; color:var(--muted)}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(7,11,20,.55);
  color:var(--text);
  outline:none;
}
textarea{min-height:110px; resize:vertical}
.row{display:grid; gap:10px; grid-template-columns: 1fr 1fr}
@media (max-width: 650px){ .row{grid-template-columns:1fr} }
.fineprint{font-size:12px; color: rgba(184,198,255,.85)}
.notice{
  border-left: 3px solid rgba(91,214,255,.9);
  padding-left:12px;
}
.gallery{
  display:grid; gap:12px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 920px){ .gallery{grid-template-columns:1fr 1fr} }
@media (max-width: 560px){ .gallery{grid-template-columns:1fr} }
.ph{
  aspect-ratio: 4/3;
  border-radius: 16px;
  border:1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.02)),
    radial-gradient(600px 280px at 20% 20%, rgba(91,214,255,.10), transparent 60%);
  display:grid; place-items:center;
  color: rgba(234,240,255,.70);
  font-weight:800;
}
.footer{
  padding:22px 0 36px;
  color: rgba(184,198,255,.85);
  border-top:1px solid var(--border);
  margin-top:18px;
}
.kicker{
  display:flex; gap:12px; flex-wrap:wrap; align-items:center;
  justify-content:space-between;
}
.pill{
  padding:8px 10px; border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  font-size:12px;
}
.small{font-size:12px}

/* FAQ */
details{
  border:1px solid var(--border);
  border-radius:16px;
  background: rgba(255,255,255,.03);
  padding:12px 14px;
}
details summary{
  cursor:pointer;
  font-weight:800;
}
details p{margin:10px 0 0; color:var(--muted); font-size:13px}
.faq{display:grid; gap:12px}
.hero-title{display:flex; flex-direction:column; gap:6px}
.hero-title .tagline{color: rgba(184,198,255,.90); font-weight:800; letter-spacing:.2px}
.hero-title .hours{color: rgba(184,198,255,.85); font-size:12px}
