/* Enkel, snabb och responsiv stil */
:root {
  --bg: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --brand: #0ea5e9;      /* Byt till din profilfärg */
  --brand-2: #0369a1;    /* Mörkare variant för hover */
  --surface: #f8fafc;
  --border: #e5e7eb;
  --radius: 12px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1100px, 92vw); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.site-header nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--text); }
.brand img { border-radius: 6px; }
.nav { list-style: none; display: flex; gap: 18px; margin: 0; padding: 0; }
.nav a { color: var(--text); font-weight: 600; }
.nav a:hover { color: var(--brand-2); }
.hero { position: relative; background: var(--surface); }
.hero-media img { width: 100%; height: clamp(220px, 42vw, 420px); object-fit: cover; }
.hero-content { position: relative; margin-top: -80px; background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(16px, 3vw, 28px); box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
.lead { font-size: clamp(1.05rem, 2.2vw, 1.25rem); color: var(--muted); margin-top: 6px; }
.cta { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.btn { display: inline-block; padding: 10px 16px; border-radius: 10px; background: var(--brand); color: white; font-weight: 700; text-decoration: none; }
.btn:hover { background: var(--brand-2); text-decoration: none; }
.btn-secondary { background: transparent; color: var(--brand); border: 2px solid var(--brand); }
.btn-secondary:hover { color: white; background: var(--brand-2); border-color: var(--brand-2); }
.section { padding: clamp(28px, 6vw, 54px) 0; }
.section-alt { background: var(--surface); }
.cards { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; padding: 0; margin: 16px 0 0 0; }
.card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }
.gallery { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); align-items: start; }
.gallery figure { margin: 0; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; background: white; }
.gallery figcaption { padding: 8px 10px; color: var(--muted); font-size: 0.95rem; }
.contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer { border-top: 1px solid var(--border); background: #fff; padding: 18px 0; color: var(--muted); }
.site-footer .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.social { list-style: none; display: flex; gap: 12px; padding: 0; margin: 0; }
