:root {
  --bg: #0b0d10;
  --bg-alt: #12151a;
  --card: #171b21;
  --border: #262b33;
  --text: #eef0f2;
  --text-muted: #9aa2ad;
  --accent: #ff6a1a;
  --accent-hover: #ff8642;
  --accent-dark: #c94f0f;
  --radius: 10px;
  --font-head: 'Rajdhani', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.1;
  text-transform: uppercase;
}

h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }

a { color: inherit; text-decoration: none; }

.eyebrow {
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}

.section { padding: 96px 0; }
.section-sub { color: var(--text-muted); margin-bottom: 2.5rem; max-width: 560px; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 14px 30px;
  border-radius: var(--radius);
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary {
  background: var(--accent);
  color: #12151a;
  box-shadow: 0 0 0 rgba(255,106,26,0.4);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,106,26,0.25); }
.btn-outline {
  border: 2px solid var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-full { width: 100%; text-align: center; border: none; cursor: pointer; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,13,16,0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 1px;
}
.logo span { color: var(--accent); }
.main-nav { display: flex; gap: 32px; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--text); }
.nav-cta { margin-left: 16px; }
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--text);
  margin: 0 auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,106,26,0.16), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(255,106,26,0.08), transparent 50%),
    linear-gradient(180deg, #0b0d10 0%, #12151a 100%);
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); margin-bottom: 1.2rem; }
.hero-sub { color: var(--text-muted); font-size: 1.1rem; max-width: 560px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 16px; margin-bottom: 3.5rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; }
.hero-stats strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--accent);
}
.hero-stats span { color: var(--text-muted); font-size: 0.85rem; }

/* Strip */
.strip { background: var(--accent); padding: 14px 0; }
.strip-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  color: #12151a;
}

/* Tjänster */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.service-icon {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.service-card p { color: var(--text-muted); }

/* Om oss */
.om-oss { background: var(--bg-alt); }
.om-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.om-media-placeholder {
  aspect-ratio: 4/3;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 20px;
}
.om-text p { color: var(--text-muted); margin-bottom: 1.4rem; }
.checklist { list-style: none; display: grid; gap: 12px; }
.checklist li {
  color: var(--text);
  padding-left: 28px;
  position: relative;
  font-weight: 500;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--accent);
  border-radius: 3px;
}

/* Galleri */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Kontakt */
.kontakt { background: var(--bg-alt); }
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.kontakt-info p { color: var(--text-muted); margin-bottom: 1.5rem; }
.kontakt-list { list-style: none; display: grid; gap: 10px; }
.kontakt-list li { color: var(--text-muted); }
.kontakt-list strong { color: var(--text); margin-right: 6px; }
.kontakt-list [data-fill] { color: var(--accent); font-style: italic; }

.kontakt-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  gap: 16px;
}
.form-row { display: grid; gap: 6px; }
.form-row label { font-size: 0.85rem; color: var(--text-muted); }
.form-row input,
.form-row textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  resize: vertical;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-note { font-size: 0.85rem; color: var(--accent); min-height: 1em; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 8px;
}

/* Responsive */
@media (max-width: 860px) {
  .card-grid { grid-template-columns: 1fr; }
  .om-grid, .kontakt-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 28px; }
}

@media (max-width: 720px) {
  .main-nav, .nav-cta { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 18px;
  }
  .burger { display: flex; }
  .strip-inner { justify-content: flex-start; gap: 24px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
