/* ===================================================================
   Renovering — designtokens
   =================================================================== */

:root {
  --orange: #E8632C;
  --orange-dark: #C94E1B;
  --orange-pale: #FCE7DB;
  --ink: #201C18;
  --white: #FFFFFF;
  --bg-alt: #FBF5EF;
  --border: #EFE6DC;
  --text: #2A2521;
  --text-muted: #6B6259;
  --text-soft: #A29A90;

  --shadow-sm: 0 2px 14px -6px rgba(32, 28, 24, 0.16);
  --shadow-md: 0 18px 38px -18px rgba(32, 28, 24, 0.26);
  --shadow-lg: 0 30px 60px -22px rgba(32, 28, 24, 0.32);

  --font-display: "Barlow", "Helvetica Neue", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1160px;
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

html, body { overflow-x: hidden; }

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

p { margin: 0; color: var(--text-muted); }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
section { padding: 104px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange-dark); margin-bottom: 16px;
}
.eyebrow-dot { width: 6px; height: 6px; background: var(--orange); display: inline-block; }

.section-head { max-width: 620px; margin: 0 auto 54px; text-align: center; }
.section-head h2 { font-size: clamp(30px, 3.4vw, 42px); margin-bottom: 16px; }
.section-lead { font-size: 16.5px; }

/* ===== Buttons ===== */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; font-size: 15px; font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}
.btn-primary { background: var(--orange); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--ink); }

/* ===== Header ===== */

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 28px; }
.logo { display: flex; align-items: center; gap: 11px; }
.logo-text { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--ink); }
.main-nav ul { display: flex; align-items: center; gap: 32px; }
.main-nav a { font-size: 14.5px; font-weight: 600; color: var(--text); transition: color 0.2s ease; }
.main-nav a:hover { color: var(--orange-dark); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ===== Hero ===== */

.hero { padding: 92px 0 96px; background: var(--bg-alt); position: relative; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero-inner h1 { font-size: clamp(36px, 4.6vw, 54px); margin-bottom: 22px; }
.hero-inner h1 span { color: var(--orange); }
.hero-lead { font-size: 17.5px; max-width: 460px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-visual svg { width: 100%; max-width: 380px; }

/* ===== Tjänster ===== */

.services { background: var(--white); }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.svc-card { background: var(--bg-alt); border-radius: var(--radius-md); padding: 32px 26px; transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: var(--white); border: 1px solid var(--border); }
.svc-icon { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--orange-pale); color: var(--orange-dark); margin-bottom: 20px; }
.svc-card h3 { font-size: 19px; margin-bottom: 8px; }
.svc-card p { font-size: 14.5px; }

/* ===== Process ===== */

.process { background: var(--bg-alt); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.process-step { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 30px 26px; }
.process-number { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--orange); color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 15px; margin-bottom: 18px; }
.process-step h3 { font-size: 17.5px; margin-bottom: 8px; }
.process-step p { font-size: 14px; }

/* ===== Om oss ===== */

.about { background: var(--white); }
.about-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.about-visual svg { width: 100%; }
.about-content p { margin-bottom: 16px; font-size: 16px; }
.about-content p:last-child { margin-bottom: 0; }
.about-stats { display: flex; gap: 44px; margin-top: 30px; }
.about-stat-num { display: block; font-family: var(--font-display); font-size: 32px; color: var(--ink); font-weight: 700; }
.about-stat-label { font-size: 12.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-soft); }

/* ===== CTA ===== */

.cta-band { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 14px; font-size: clamp(28px, 3.4vw, 38px); }
.cta-band p { color: rgba(255,255,255,0.88); margin-bottom: 30px; font-size: 16.5px; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.cta-band .btn-primary { background: var(--white); color: var(--orange-dark); }
.cta-band .btn-primary:hover { background: var(--ink); color: var(--white); }
.cta-band .btn-ghost { color: var(--white); border-color: rgba(255,255,255,0.4); }
.cta-band .btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ===== Footer ===== */

.site-footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 36px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-inner .logo-text { color: var(--white); }
.footer-copy { font-size: 13px; }

/* ===== Reveal ===== */

.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */

@media (max-width: 980px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .hero-inner, .about-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 280px; margin: 0 auto; }
  .main-nav { display: none; width: 100%; }
  .main-nav.is-open {
    display: block; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md);
  }
  .main-nav.is-open ul { flex-direction: column; align-items: flex-start; gap: 4px; padding: 12px 28px 20px; }
  .main-nav.is-open a { display: block; padding: 10px 0; }
  .header-inner { position: relative; }
  .nav-toggle { display: flex; }
}

@media (max-width: 560px) {
  .svc-grid, .process-grid { grid-template-columns: 1fr; }
  section { padding: 72px 0; }
}
