:root{
  --bg:#fff;
  --fg:#1a1a1a;
  --muted:#666;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background:var(--bg);
  color:var(--fg);
}
.site{
  display:flex;flex-direction:column;
  min-height:100vh;
}
.hero{
  flex:1;display:flex;align-items:flex-start;justify-content:center;padding:48px;gap:48px;min-height:100vh;
}
.hero-content{
  flex:0 0 400px;display:flex;flex-direction:column;justify-content:center;max-width:400px;position:sticky;top:50vh;transform:translateY(-50%);
}
.hero-content h1{font-size:2.2rem;margin:0;line-height:1.2}
.hero-content p{color:var(--muted);line-height:1.6;margin:16px 0 0 0}
.gallery{
  flex:1;display:flex;flex-direction:column;gap:16px;width:100%;max-width:600px;align-items:center;
}
.gallery video{
  width:100%;height:auto;object-fit:contain;display:block;border-radius:6px;cursor:pointer;transition:transform .2s, box-shadow .2s;
}
.gallery video:hover{transform:scale(1.02);box-shadow:0 8px 24px rgba(0,0,0,0.2)}
.gallery img{
  width:100%;height:100%;object-fit:cover;display:block;border-radius:6px;cursor:pointer;transition:transform .2s, box-shadow .2s;
}
.gallery img:hover{transform:scale(1.02);box-shadow:0 8px 24px rgba(0,0,0,0.2)}
.thumb{
  width:100%;height:100%;object-fit:cover;display:block;border-radius:6px;cursor:pointer;transition:transform .2s, box-shadow .2s;
}
.thumb:hover{transform:scale(1.02);box-shadow:0 8px 24px rgba(0,0,0,0.2)}

.blog-section{
  padding:48px;max-width:900px;margin:0 auto;width:100%;
}
.blog-section h2{font-size:1.8rem;margin:0 0 32px 0}
.blog-item{margin-bottom:32px}
.blog-item h3{margin:0 0 8px 0;font-size:1.3rem}
.blog-meta{color:var(--muted);font-size:0.9rem;margin-bottom:12px}
.blog-item p{color:var(--muted);line-height:1.6}

.lightbox{position:fixed;inset:0;display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,0.95);z-index:60}
.hidden{display:none}
.lb-content{max-width:92vw;max-height:92vh;padding:20px;display:flex;align-items:center;justify-content:center}
.lb-content img{max-width:100%;max-height:100%;border-radius:4px;box-shadow:0 18px 50px rgba(0,0,0,0.3)}
.lb-close{position:fixed;top:18px;right:18px;background:transparent;border:none;color:var(--fg);font-size:20px;cursor:pointer}
.lb-nav{position:fixed;top:50%;transform:translateY(-50%);background:transparent;border:none;color:var(--fg);font-size:28px;cursor:pointer;padding:12px}
.lb-prev{left:18px}
.lb-next{right:18px}

@media (max-width:1024px){
  .hero{flex-direction:column;padding:32px;align-items:flex-start}
  .hero-content{flex:0 0 auto;max-width:100%;position:static}
  .gallery{max-width:100%}
}
@media (max-width:600px){
  .hero{padding:20px;gap:20px}
  .gallery{grid-template-columns:1fr;grid-auto-rows:180px}
  .blog-section{padding:20px}
  .hero-content h1{font-size:1.8rem}
}
