/* Reset & base */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #f2eee9;
  background: #0f0e0d; /* mørk, varm base */
  line-height: 1.6;
}

.container { width: min(1100px, 92%); margin: 0 auto; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 20; backdrop-filter: saturate(1.1) blur(6px); background: rgba(15,14,13,0.6); border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { color: #fff; font-weight: 800; letter-spacing: 0.2px; text-decoration: none; font-size: 20px; }
.logo span { color: #d6b17a; }
nav a { color: #dedad6; text-decoration: none; margin-left: 18px; font-weight: 600; }
nav a.cta { padding: 8px 12px; border: 1px solid #d6b17a; border-radius: 8px; }
.nav-toggle { display: none; }
.burger { display: none; cursor: pointer; }
.burger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; }

/* Hero */
.hero { position: relative; min-height: 70vh; display: grid; place-items: center; }
.hero picture, .hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .overlay { position: absolute; inset: 0; 
  background: radial-gradient(60% 60% at 40% 40%, rgba(15,14,13,0.3), rgba(15,14,13,0.92) 60%), 
              linear-gradient(180deg, rgba(15,14,13,0.45), rgba(15,14,13,0.92)); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 84px 0 46px; }
.hero h1 { font-size: clamp(34px, 5vw, 54px); margin: 0 0 10px; text-shadow: 0 2px 12px rgba(0,0,0,0.45); }
.hero-subtext { margin: 10px auto 12px; max-width: 760px; color: #e2d9cc; text-shadow: 0 1px 8px rgba(0,0,0,0.35); }
.badges { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px; }
.badges span { border: 1px solid rgba(214,177,122,0.4); color: #efe6d9; padding: 6px 10px; border-radius: 999px; font-size: 13px; background: rgba(15,14,13,0.35); backdrop-filter: blur(2px); }
.hero-actions { display: inline-flex; gap: 12px; }

/* Buttons */
.btn { display: inline-block; padding: 12px 16px; border-radius: 10px; text-decoration: none; font-weight: 700; border: 1px solid transparent; }
.btn.primary { background: #d6b17a; color: #111; }
.btn.ghost { background: transparent; color: #f2eee9; border-color: rgba(255,255,255,0.35); }

.section { padding: 64px 0; }
.section.alt { background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.0)); }
.section h2 { font-size: 28px; margin: 0 0 12px; }
.intro { color: #d0cbc6; }

/* Products */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product { display: grid; grid-template-rows: 180px 1fr; border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; overflow: hidden; background: rgba(255,255,255,0.03); }
.product img { width: 100%; height: 180px; object-fit: cover; }
.p-content { padding: 16px; display: grid; gap: 10px; }
.p-content h3 { margin: 0; }
.p-content ul { margin: 0; padding-left: 18px; color: #d0cbc6; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step { border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 16px; background: rgba(255,255,255,0.03); }
.step .nr { display: inline-flex; width: 28px; height: 28px; border-radius: 999px; align-items: center; justify-content: center; background: #d6b17a; color: #111; font-weight: 800; margin-bottom: 8px; }

/* Grid & cards */
.grid-2 { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 28px; }
.card { border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 20px; background: rgba(255,255,255,0.03); }
.specs { display: grid; grid-template-columns: auto 1fr; gap: 10px 14px; }
.specs dt { color: #b9b3ad; }
.specs dd { margin: 0; }

.checks { list-style: none; padding: 0; margin: 14px 0 0; }
.checks li { position: relative; padding-left: 26px; margin: 8px 0; }
.checks li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #d6b17a; font-weight: 900; }

/* Contact */
.contact .contact-lines p { margin: 6px 0; }
.contact-form { display: grid; gap: 12px; }
.contact-form label { display: grid; gap: 6px; }
.contact-form input, .contact-form textarea {
  border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.03);
  color: #fff; border-radius: 10px; padding: 12px 12px;
}
.form-note { font-size: 12px; color: #b9b3ad; }

.site-footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0 40px; color: #b9b3ad; }
.micro { font-size: 12px; color: #a9a39d; margin-top: 6px; }

@media (max-width: 980px) {
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  nav { position: fixed; inset: 60px 16px auto 16px; background: #161412; padding: 14px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.06); display: none; }
  .burger { display: block; }
  .nav-toggle:checked + .burger + nav { display: grid; gap: 8px; }
}
