/* Simple responsive styles for NZ Dairy Farmers site */
:root{
  --bg:#ffffff;
  --muted:#6b6b6b;
  --accent:#1b6ca8;
  --max-width:1100px;
}
*{box-sizing:border-box}
body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;margin:0;background:var(--bg);color:#111}
.container{max-width:var(--max-width);margin:0 auto;padding:1rem}
.site-header{background:#f8fbff;border-bottom:1px solid #e6eef6}
.header-inner{display:flex;align-items:center;justify-content:space-between}
.logo{display:flex;align-items:center;gap:0.5rem;color:var(--accent);text-decoration:none;font-weight:600}
.nav a{margin-left:1rem;color:#0b3b56;text-decoration:none}
.hero{padding:3rem 0;background:linear-gradient(180deg,#f0f8ff,transparent)}
.hero h1{font-size:2rem;margin:0 0 .5rem}
.btn{display:inline-block;background:var(--accent);color:#fff;padding:.5rem 1rem;border-radius:6px;text-decoration:none}
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1rem;margin-top:1.5rem}
.card{background:#fff;border:1px solid #eef6fb;padding:1rem;border-radius:8px}
.site-footer{border-top:1px solid #e6eef6;padding:1rem 0;margin-top:2rem;color:var(--muted)}
@media(min-width:800px){.hero h1{font-size:2.6rem}}
