:root{
  --bg:#0b1220;
  --card:#111a2e;
  --text:#e8eefc;
  --muted:#b8c2dd;
  --brand:#ffd000;
  --brand2:#ffb100;
  --line:rgba(255,255,255,.12);
  --shadow: 0 12px 30px rgba(0,0,0,.35);
  --radius:18px;
  --max:1100px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1000px 600px at 20% -10%, rgba(255,208,0,.18), transparent 55%),
              radial-gradient(900px 600px at 110% 10%, rgba(255,177,0,.14), transparent 50%),
              var(--bg);
  color: var(--text);
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}
.container{max-width:var(--max);margin:0 auto;padding:0 18px}
.badge{
  display:inline-flex;align-items:center;gap:10px;
  padding:8px 12px;border:1px solid var(--line);
  border-radius:999px;background:rgba(17,26,46,.55);
  color:var(--muted);font-size:14px
}
.badge b{color:var(--text);font-weight:700}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:10px;
  padding:12px 16px;border-radius:14px;
  border:1px solid var(--line);
  background:rgba(17,26,46,.7);
  box-shadow:var(--shadow);
  font-weight:700;
}
.btn.primary{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#1a1a1a;
  border:none;
}
.btn.ghost{background:transparent;box-shadow:none;}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0px)}
.small{font-size:14px;color:var(--muted)}
header{
  position:sticky;top:0;z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.65);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;
  position:relative;
}
.brand{
  display:flex;align-items:center;gap:12px;
  font-weight:900; letter-spacing:.3px;
}
.brand .logo{
  width:38px;height:38px;border-radius:12px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  display:grid;place-items:center;
  overflow:hidden;
}
.brand .logo img{width:100%;height:100%;object-fit:cover}
.navlinks{display:flex;gap:16px;align-items:center;}
.navlinks a{
  padding:8px 10px;border-radius:12px;
  color:var(--muted);
}
.navlinks a.active,
.navlinks a:hover{background: rgba(255,255,255,.06);color:var(--text);}
.menu-btn{display:none}
.hero{padding:54px 0 28px;}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:stretch;
}
.hero h1{font-size:44px;line-height:1.1;margin:14px 0 10px;}
.hero p{color:var(--muted);font-size:18px;margin:0 0 18px}
.hero-card{
  background: linear-gradient(180deg, rgba(17,26,46,.92), rgba(17,26,46,.68));
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.hero-card .stat{
  display:flex;justify-content:space-between;gap:12px;
  padding:12px 0;border-bottom:1px solid rgba(255,255,255,.08);
}
.hero-card .stat:last-child{border-bottom:none}
.hero-card .stat span{color:var(--muted)}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:16px}
.section{padding:34px 0}
.section h2{margin:0 0 10px;font-size:28px}
.section p.lead{margin:0 0 18px;color:var(--muted)}
.grid-3{display:grid;grid-template-columns: repeat(3, 1fr);gap:16px}
.grid-2{display:grid;grid-template-columns: repeat(2, 1fr);gap:16px}
.card{
  background: rgba(17,26,46,.72);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:16px;
}
.card h3{margin:0 0 6px}
.card p{margin:0;color:var(--muted)}
.icon{
  width:44px;height:44px;border-radius:14px;
  background: rgba(255,208,0,.14);
  border:1px solid rgba(255,208,0,.22);
  display:grid;place-items:center;
  margin-bottom:10px;
  font-weight:900;color:var(--brand);
}
.kicker{
  display:flex;align-items:center;justify-content:space-between;
  gap:14px;flex-wrap:wrap;
}
.kicker .right{display:flex;gap:12px;flex-wrap:wrap}
.footer{
  padding:30px 0;
  border-top:1px solid rgba(255,255,255,.08);
  color:var(--muted);
}
.footer a{color:var(--text)}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr .6fr .8fr;
  gap:16px;
}
.footer small{display:block;margin-top:10px}
.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.gallery .ph{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  height:180px;
  display:grid;place-items:center;
  color:var(--muted);
}
.form{display:grid;gap:12px;}
.input{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(5,10,20,.35);
  color: var(--text);
}
textarea.input{min-height:120px;resize:vertical}
.notice{
  padding:12px 14px;
  border-radius:14px;
  background: rgba(255,208,0,.10);
  border:1px solid rgba(255,208,0,.20);
  color: var(--muted);
}
.success{
  padding:12px 14px;
  border-radius:14px;
  background: rgba(0, 255, 140, .10);
  border:1px solid rgba(0, 255, 140, .20);
  color: var(--muted);
}
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr 1fr}
}
@media (max-width: 680px){
  .navlinks{display:none}
  .menu-btn{display:inline-flex}
  .hero h1{font-size:36px}
  .gallery{grid-template-columns:1fr}
}

.gallery .ph img{width:100%;height:100%;object-fit:cover}
