:root{
  --bg:#faf7f3;
  --accent:#2b2b2b;
  --muted:#666;
}
*{box-sizing:border-box}
body{font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; margin:0; background:var(--bg); color:var(--accent);}
.site-header{display:flex;align-items:center;justify-content:space-between;padding:1rem 2rem;border-bottom:1px solid rgba(0,0,0,0.05);background:#fff}
.brand{display:flex;align-items:center;gap:1rem}
.logo{height:56px;width:auto;border-radius:8px;object-fit:cover}
.title{font-weight:700;font-size:1.25rem}
.main-nav a{margin-left:1rem;color:var(--muted);text-decoration:none}
.content{max-width:900px;margin:2rem auto;padding:0 1rem}
.hero{background:linear-gradient(90deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));padding:1.5rem;border-radius:12px;box-shadow:0 6px 18px rgba(30,30,30,0.04)}
.hero h2{margin:0 0 .5rem}
.recent, .preview-gallery{margin-top:1.25rem}
.gallery-link{display:inline-block;margin-top:.5rem;padding:.5rem .75rem;background:var(--accent);color:#fff;border-radius:8px;text-decoration:none}
.site-footer{text-align:center;padding:2rem 1rem;color:var(--muted);font-size:.9rem}

@media (max-width:640px){.site-header{padding:1rem}.logo{height:44px}}
