*{box-sizing:border-box}
:root{--accent:#ef7d00;--dark:#1f2937;--light:#f9fafb}
html,body{margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,'Helvetica Neue',Arial,'Noto Sans',sans-serif;color:var(--dark);background:var(--light);}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:1100px;margin:0 auto;padding:1rem}
.nav{display:flex;gap:1rem;align-items:center;justify-content:space-between;padding:0.5rem 1rem;background:#fff;box-shadow:0 1px 6px rgba(0,0,0,.06);position:sticky;top:0;z-index:5}
.brand{display:flex;align-items:center;gap:.5rem;font-weight:800;letter-spacing:.2px}
.brand img{height:36px;width:auto;border-radius:6px;box-shadow:0 1px 4px rgba(0,0,0,.12)}
.navlinks a{margin:0 .5rem}
.navlinks .icon{display:inline-flex;align-items:center;justify-content:center;width:32px;height:32px;border-radius:999px;background:#e7f0ff}
.navlinks .icon svg{width:16px;height:16px}
.hero{display:grid;grid-template-columns:1.15fr 1fr;gap:2rem;align-items:center;padding:2rem 1rem}
.hero img{width:100%;border-radius:14px;box-shadow:0 6px 24px rgba(0,0,0,.12);}
.hero h1{margin:0 0 .5rem 0;font-size:2.2rem}
.cta{display:inline-block;background:var(--accent);color:#fff;padding:.8rem 1rem;border-radius:10px;font-weight:700;margin-right:.5rem}
.section{padding:2rem 1rem}
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1rem}
.card{background:#fff;border-radius:12px;padding:1rem;box-shadow:0 6px 18px rgba(0,0,0,.06)}
.footer{padding:2rem 1rem;background:#fff;border-top:1px solid #eee;font-size:.95rem}
.badge{display:inline-block;padding:.25rem .6rem;border-radius:999px;background:#ffedd5;color:#7c2d12;font-weight:700;font-size:.8rem}
.gallery{columns:1 300px;column-gap:1rem}
.gallery img{width:100%;margin:0 0 1rem;border-radius:10px;box-shadow:0 4px 14px rgba(0,0,0,.08)}
ul,ol{padding-left:1.25rem}
h2{margin-top:0.2rem}
.notice{background:#fff7ed;border:1px dashed #f59e0b;padding:1rem;border-radius:10px}
.small{opacity:.8}
@media (max-width:850px){
  .hero{grid-template-columns:1fr}
}