:root{
  --bg:#fcfbf8;
  --muted:#6b7280;
  --accent:#c65a00; /* hunter orange */
  --accent-2:#f59e0b;
  --max-width:1100px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{margin:0;background:var(--bg);color:#0f172a;font-family:Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,'Helvetica Neue',Arial;line-height:1.6;-webkit-font-smoothing:antialiased}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:var(--max-width);margin:0 auto;padding:0 1rem}

/* Header */
.site-header{background:#fff;border-bottom:1px solid #eee}
.site-header .container{display:flex;align-items:center;gap:1rem;padding:1rem 1rem}
.site-logo{display:flex;align-items:center;gap:0.6rem}
.site-logo .site-title{font-weight:700;font-size:1.125rem;color:#111}
.logo-img{width:44px;height:44px;display:block}
.nav{margin-left:auto;display:flex;gap:1rem}
.nav a{color:#334155;padding:0.4rem 0.6rem;border-radius:6px;font-weight:500}
.nav a:hover{background:rgba(198,90,0,0.06);color:var(--accent)}

/* Hero */
.hero{padding:3.5rem 0;border-bottom:1px solid #f1f5f9}
.hero{background-image:linear-gradient(rgba(3,7,18,0.55),rgba(3,7,18,0.28)), url('/images/20241009_155320.jpg');background-size:cover;background-position:center;color:#fff}
.hero h1{font-size:2rem;margin:0 0 0.5rem;text-shadow:0 3px 18px rgba(2,6,23,0.6)}
.hero p{color:rgba(255,255,255,0.98);max-width:60ch;text-shadow:0 2px 8px rgba(2,6,23,0.45)}
.cta{display:inline-block;margin-top:1rem;background:var(--accent);color:#fff;padding:0.6rem 1rem;border-radius:8px;font-weight:700;box-shadow:0 6px 18px rgba(198,90,0,0.18)}
.cta:hover{filter:brightness(0.95)}
.secondary{background:transparent;border:1px solid rgba(255,255,255,0.18);color:#fff;padding:0.5rem 0.9rem;border-radius:8px;margin-left:0.5rem}
.secondary:hover{background:rgba(255,255,255,0.06);border-color:rgba(198,90,0,0.9);color:#fff}

/* Content */
h1,h2{color:#0b1220}
.lead{color:var(--muted);max-width:70ch}

/* Updates list */
.post-list{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1rem;padding:1rem 0}
.post-card{background:#fff;border:1px solid #eef2ff;padding:1rem;border-radius:10px;box-shadow:0 1px 2px rgba(2,6,23,0.03)}
.post-card a{font-weight:600;color:#0f172a}
.post-date{color:var(--muted);font-size:0.95rem;margin-top:0.5rem}

/* Footer */
.site-footer{background:#fff;border-top:1px solid #eee;padding:2rem 0;margin-top:2rem}
.site-footer .grid{display:flex;flex-wrap:wrap;gap:1rem;align-items:center}
.site-footer .small{color:var(--muted);font-size:0.95rem}

@media (min-width:800px){
  .hero h1{font-size:2.75rem}
}

/* Hero image layout */
.hero-inner{display:flex;gap:1.25rem;align-items:center}
.hero-illustration{width:260px;border-radius:12px;flex-shrink:0;box-shadow:0 8px 20px rgba(2,6,23,0.08)}

@media (max-width:720px){
  .hero-inner{flex-direction:column}
  .hero-illustration{width:100%;max-width:420px}
}
