
:root{--bg:#2f3337;--panel:#3a3f45;--text:#e5e7eb;--accent:#f97316;}
*{box-sizing:border-box} body{margin:0;font-family:Arial,Helvetica,sans-serif;background:var(--bg);color:var(--text)}
.header{background:#fff;padding:10px 20px;display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap}
.logo img{height:92px;max-width:520px;object-fit:contain}
.nav{display:flex;flex-wrap:wrap;justify-content:flex-end}
.nav a{margin:6px 12px;color:#111;font-weight:700;text-decoration:none}
.nav a:hover{color:var(--accent)}
.hero{background:url('../img/hero.jpg') center/cover no-repeat;min-height:440px;display:flex;align-items:center;justify-content:center;position:relative}
.hero:before{content:'';position:absolute;inset:0;background:rgba(0,0,0,.55)}
.hero .inner{position:relative;text-align:left;max-width:960px;padding:0 20px}
.hero h1{font-size:46px;line-height:1.05;margin:0 0 10px}
.hero p{font-size:18px;opacity:.95;margin:0 0 18px}
.btn{background:var(--accent);color:#111;padding:12px 18px;border-radius:10px;font-weight:800;display:inline-block;text-decoration:none}
.section{padding:44px 20px;max-width:1100px;margin:0 auto}
.grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:14px}
.grid img{width:100%;height:200px;object-fit:cover;border-radius:12px;cursor:pointer;border:1px solid rgba(255,255,255,.08)}
.footer{background:#111;padding:22px;text-align:center;color:#aaa;font-size:14px}
@media(max-width:900px){.logo img{height:76px;max-width:100%}.hero{min-height:340px}.hero h1{font-size:34px}}
