/* ============================================================
   BILLACKERINGEN - design system
   Referens: Polestar (typografisk disciplin, ghost-knappar,
   vänsterställda heroes) + Koenigsegg (mörk, filmisk värld).
   ============================================================ */

:root {
  --bg: #0c0c0d;
  --bg-2: #121214;
  --ink: #f5f3ef;
  --ink-dim: #b9b6ae;
  --muted: #8a877f;
  --line: rgba(245, 243, 239, 0.14);
  --line-strong: rgba(245, 243, 239, 0.45);
  --accent: #ff3d00;
  --accent-ink: #c33000;
  --content-max: 1760px;
  --paper: #f4f2ee;
  --paper-ink: #111112;
  --paper-muted: #6f6c66;
  --paper-line: rgba(17, 17, 18, 0.14);
  --font-sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "SF Mono", Menlo, monospace;
  --pad: clamp(20px, 4vw, 64px);
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--accent); color: #111112; }

img { display: block; max-width: 100%; }

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

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--accent);
  color: #111112;
  font-weight: 600;
  padding: 12px 20px;
}

.skip-link:focus {
  left: 0;
}

/* ---------- typografi ---------- */

.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 14px;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
  flex: none;
}

.light .kicker { color: var(--paper-muted); }

.display {
  font-weight: 800;
  font-stretch: 115%;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 0.94;
}

h1.display { font-size: clamp(2.3rem, 8.4vw, 8rem); }
h2.display { font-size: clamp(1.6rem, 6.4vw, 4.4rem); }

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 34em;
}

.light .lede { color: var(--paper-muted); }

/* ---------- knappar ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid var(--ink);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn .arr { transition: transform 0.25s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }

.btn-solid { background: var(--ink); color: #0c0c0d; }
.btn-solid:hover { background: var(--accent); border-color: var(--accent); color: #0c0c0d; }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); }

.light .btn-solid { background: var(--paper-ink); color: var(--paper); border-color: var(--paper-ink); }
.light .btn-solid:hover { background: var(--accent); border-color: var(--accent); color: #0c0c0d; }
.light .btn-ghost { color: var(--paper-ink); border-color: rgba(17,17,18,0.35); }
.light .btn-ghost:hover { border-color: var(--paper-ink); }

/* ---------- header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(var(--pad), calc((100% - var(--content-max)) / 2));
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled,
body.menu-open .site-header {
  background: rgba(12, 12, 13, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.wordmark {
  font-weight: 800;
  font-stretch: 125%;
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 102;
}

.wordmark .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-dim);
  transition: color 0.2s;
  position: relative;
}

.site-nav a:hover { color: var(--ink); }

.site-nav a.active { color: var(--ink); }

.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--accent);
}

.site-nav .btn {
  padding: 11px 22px;
  font-size: 14px;
}

.burger {
  display: none;
  z-index: 102;
  width: 44px;
  height: 44px;
  position: relative;
}

.burger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }

body.menu-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobilmeny */

body.menu-open { overflow: hidden; }

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

body.menu-open .menu-overlay { opacity: 1; visibility: visible; }

.menu-overlay nav { display: flex; flex-direction: column; gap: 6px; }

.menu-overlay nav a {
  font-weight: 800;
  font-stretch: 115%;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 10vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 16px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.2s;
}

.menu-overlay nav a:hover { color: var(--accent); }

.menu-overlay nav a i {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.1em;
}

body.menu-open .menu-overlay nav a { opacity: 1; transform: none; }
body.menu-open .menu-overlay nav a:nth-child(1) { transition-delay: 0.08s; }
body.menu-open .menu-overlay nav a:nth-child(2) { transition-delay: 0.14s; }
body.menu-open .menu-overlay nav a:nth-child(3) { transition-delay: 0.2s; }
body.menu-open .menu-overlay nav a:nth-child(4) { transition-delay: 0.26s; }

.menu-overlay .menu-meta {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.menu-overlay .menu-meta a { color: var(--ink-dim); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(12, 12, 13, 0.94) 0%, rgba(12, 12, 13, 0.35) 45%, rgba(12, 12, 13, 0.25) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 max(var(--pad), calc((100% - var(--content-max)) / 2)) clamp(56px, 9vh, 110px);
}

.hero .kicker { margin-bottom: 26px; color: var(--ink-dim); }

.hero h1 { max-width: 11em; }

.hero .lede { margin-top: 26px; color: var(--ink-dim); }

.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  right: var(--pad);
  bottom: clamp(56px, 9vh, 110px);
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 56px;
  background: var(--line-strong);
  animation: scrollPulse 2.2s var(--ease) infinite;
  transform-origin: top;
}

@keyframes scrollPulse {
  0% { transform: scaleY(0); }
  45% { transform: scaleY(1); }
  100% { transform: scaleY(1); opacity: 0; }
}

/* under-heroes på undersidor */

.page-hero {
  position: relative;
  min-height: 62vh;
  min-height: 62svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero .hero-inner { padding-bottom: clamp(44px, 7vh, 80px); }

/* ---------- marquee ---------- */

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  background: var(--bg);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee 32s linear infinite;
}

.marquee-track span {
  font-weight: 800;
  font-stretch: 115%;
  text-transform: uppercase;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  letter-spacing: 0.06em;
  color: var(--ink-dim);
  padding-right: 18px;
  white-space: nowrap;
}

.marquee-track span i {
  font-style: normal;
  color: var(--accent);
  padding-left: 18px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- sektioner ---------- */

.section {
  padding: clamp(80px, 12vh, 150px) var(--pad);
  padding-inline: max(var(--pad), calc((100% - var(--content-max)) / 2));
}

.section.tight { padding-top: clamp(56px, 8vh, 100px); padding-bottom: clamp(56px, 8vh, 100px); }

.light {
  background: var(--paper);
  color: var(--paper-ink);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(28px, 5vw, 90px);
  align-items: end;
  margin-bottom: clamp(48px, 7vh, 90px);
}

.section-head .kicker { margin-bottom: 22px; }

.section-head .aside {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 30em;
  justify-self: end;
}

.light .section-head .aside { color: var(--paper-muted); }

/* intro / manifest */

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 100px);
  align-items: start;
}

.intro-grid h2 {
  font-weight: 800;
  font-stretch: 110%;
  font-size: clamp(1.7rem, 3.2vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-transform: none;
}

.intro-grid h2 em {
  font-style: normal;
  color: var(--accent);
}

.intro-copy p { color: var(--paper-muted); max-width: 34em; }
.intro-copy p + p { margin-top: 1.2em; }

.stats {
  margin-top: clamp(56px, 9vh, 100px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--paper-line);
}

.stat {
  padding: 30px clamp(16px, 2.5vw, 40px) 6px 0;
  border-right: 1px solid var(--paper-line);
}

.stat:last-child { border-right: 0; }

.stat b {
  display: block;
  font-weight: 800;
  font-stretch: 115%;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat b sup {
  font-size: 0.45em;
  color: var(--accent);
  font-stretch: 100%;
  vertical-align: super;
}

.stat span {
  display: block;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-muted);
}

/* ---------- tjänste-rader (startsidan) ---------- */

.service-rows { border-top: 1px solid var(--line); }

.service-row {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) minmax(0, 420px) 60px;
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
  padding: clamp(26px, 4vh, 44px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding-left 0.35s var(--ease);
}

.service-row:hover { padding-left: 14px; }

.service-row .idx {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.service-row h3 {
  font-weight: 800;
  font-stretch: 115%;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 2.9vw, 2.5rem);
  line-height: 1;
  letter-spacing: -0.01em;
  transition: color 0.25s;
}

.service-row:hover h3 { color: var(--accent); }

.service-row p {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 30em;
}

.service-row .go {
  justify-self: end;
  font-size: 1.6rem;
  color: var(--muted);
  transition: transform 0.3s var(--ease), color 0.25s;
}

.service-row:hover .go { transform: translateX(8px); color: var(--ink); }

/* ---------- process ---------- */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line);
}

.process-step {
  border-right: 1px solid var(--line);
  padding: clamp(24px, 3vw, 44px);
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.process-step .num {
  font-weight: 800;
  font-stretch: 120%;
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--line-strong);
  margin-bottom: auto;
}

.process-step h3 {
  margin-top: 40px;
  font-weight: 700;
  font-stretch: 110%;
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.process-step p {
  margin-top: 12px;
  font-size: 0.94rem;
  color: var(--muted);
}

/* ---------- kulör ---------- */

.kulor {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 90px);
  align-items: center;
}

.kulor-copy .kicker { margin-bottom: 22px; }

.kulor-copy h2 { margin-bottom: 22px; }

.kulor-copy p { color: var(--muted); max-width: 30em; }

.swatches {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.swatch {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  padding: 0;
  position: relative;
  transition: transform 0.25s var(--ease), border-color 0.25s;
}

.swatch:hover { transform: scale(1.12); }

.swatch:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  transform: scale(1.12);
}

.swatch.active { border-color: var(--ink); }

.swatch.active::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid var(--accent);
  border-radius: 50%;
}

.kulor-panel {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  transition: background 0.6s var(--ease);
}

.kulor-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0) 38%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
}

.kulor-panel::after {
  content: "";
  position: absolute;
  left: -30%;
  top: -60%;
  width: 70%;
  height: 220%;
  background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.14) 50%, rgba(255,255,255,0) 100%);
  transform: rotate(12deg);
  pointer-events: none;
}

.kulor-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(12, 12, 13, 0.6);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 10px 14px;
}

.kulor-label b { font-size: 15px; letter-spacing: 0.08em; }

/* ---------- statement-band ---------- */

.band {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.band-media,
.band-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.band-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 13, 0.62);
}

.band-inner {
  position: relative;
  z-index: 2;
  padding: clamp(80px, 12vh, 140px) max(var(--pad), calc((100% - var(--content-max)) / 2));
  max-width: 1400px;
}

.band-inner blockquote {
  font-weight: 800;
  font-stretch: 110%;
  font-size: clamp(1.7rem, 3.6vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.band-inner cite {
  display: block;
  margin-top: 28px;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ---------- cta ---------- */

.cta { text-align: left; }

.cta .display { max-width: 9em; }

.cta-row {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-tel {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--paper-muted);
}

.cta-tel a { border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.cta-tel a:hover { color: var(--accent-ink); }

/* ---------- media-split (om oss m.m.) ---------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 100px);
  align-items: center;
}

.split.reverse .split-media { order: 2; }

.split-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.split-media.wide { aspect-ratio: 16 / 11; }

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.split-media:hover img { transform: scale(1.04); }

.split-media .tag {
  position: absolute;
  left: 18px;
  bottom: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(12,12,13,0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 8px 12px;
}

.split-copy .kicker { margin-bottom: 22px; }
.split-copy h2 { margin-bottom: 24px; }
.split-copy p { color: var(--muted); max-width: 32em; }
.split-copy p + p { margin-top: 1.1em; }
.light .split-copy p { color: var(--paper-muted); }
.split-copy .btn { margin-top: 34px; }

/* checklista */

.checklist {
  margin-top: 28px;
  list-style: none;
  display: grid;
  gap: 0;
}

.checklist li {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-dim);
  font-size: 0.98rem;
}

.light .checklist li { border-color: var(--paper-line); color: var(--paper-muted); }

.checklist li::before {
  content: "→";
  color: var(--accent);
  flex: none;
}

/* ---------- tjänstesida: lista ---------- */

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 90px);
  padding: clamp(64px, 9vh, 120px) 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.service-detail:last-child { border-bottom: 0; }

.service-detail.reverse .sd-media { order: 2; }

.sd-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
}

.sd-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.service-detail:hover .sd-media img { transform: scale(1.04); }

.sd-copy .idx {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 18px;
}

.sd-copy h2 {
  font-weight: 800;
  font-stretch: 115%;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3.6vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.sd-copy p { color: var(--muted); max-width: 32em; }

.sd-facts {
  margin-top: 26px;
  list-style: none;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sd-facts li {
  border: 1px solid var(--line);
  padding: 8px 14px;
}

/* ---------- värderingar (om oss) ---------- */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--paper-line);
}

.light .values-grid { border-color: var(--paper-line); }

.value-cell {
  border-right: 1px solid var(--paper-line);
  padding: clamp(24px, 3vw, 44px);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

.value-cell .num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-ink);
  letter-spacing: 0.12em;
}

.value-cell h3 {
  font-weight: 800;
  font-stretch: 112%;
  text-transform: uppercase;
  font-size: 1.35rem;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.value-cell p { font-size: 0.95rem; color: var(--paper-muted); }

/* ---------- kontakt ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
}

.contact-list { list-style: none; display: grid; gap: 0; }

.contact-list > li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 6px;
}

.contact-list .label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-list .value {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
}

.contact-list .value a:hover { color: var(--accent); }

.contact-list .sub { font-size: 0.92rem; color: var(--muted); }

.hours { list-style: none; margin-top: 4px; display: grid; gap: 8px; }

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.98rem;
  color: var(--ink-dim);
  border-bottom: 1px dashed var(--line);
  padding-bottom: 8px;
  max-width: 380px;
}

.hours li b { font-weight: 500; color: var(--ink); }

/* formulär */

.form-card {
  border: 1px solid var(--line);
  padding: clamp(24px, 3.5vw, 48px);
  background: var(--bg-2);
}

.form-card h2 {
  font-weight: 800;
  font-stretch: 112%;
  text-transform: uppercase;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.form-card > p { color: var(--muted); font-size: 0.95rem; margin-bottom: 30px; }

.field { display: grid; gap: 8px; margin-bottom: 22px; }

.field label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field textarea {
  font: inherit;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 10px 2px;
  border-radius: 0;
  transition: border-color 0.25s;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

.field textarea { resize: vertical; min-height: 120px; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.form-card .btn { width: 100%; justify-content: center; margin-top: 8px; }

.map-wrap {
  margin-top: clamp(56px, 8vh, 90px);
  border: 1px solid var(--line);
  position: relative;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(1) contrast(0.92) brightness(0.9);
}

.map-note {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink-dim);
  padding: 8px 12px;
}

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: clamp(64px, 9vh, 110px) var(--pad) 36px;
  padding-inline: max(var(--pad), calc((100% - var(--content-max)) / 2));
  background: var(--bg);
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 60px);
}

.footer-col .label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 18px;
}

.footer-col p,
.footer-col li {
  font-size: 0.97rem;
  color: var(--ink-dim);
  line-height: 1.8;
}

.footer-col ul { list-style: none; }

.footer-col a:hover { color: var(--accent); }

.footer-word {
  margin-top: clamp(64px, 10vh, 120px);
  font-weight: 800;
  font-stretch: 122%;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 7.4vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 243, 239, 0.22);
  white-space: nowrap;
  user-select: none;
}

.footer-base {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.footer-base a:hover { color: var(--ink); }

/* ---------- reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible { opacity: 1; transform: none; }

.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ---------- tack-sida ---------- */

.thanks {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--pad);
}

.thanks .kicker { margin-bottom: 26px; }
.thanks .lede { margin-top: 24px; }
.thanks .btn { margin-top: 40px; align-self: flex-start; }

/* ---------- responsivt ---------- */

@media (max-width: 1080px) {
  .service-row { grid-template-columns: 60px minmax(0, 1fr) 48px; }
  .service-row p { display: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
  .process-step { min-height: 240px; }
  .values-grid { grid-template-columns: 1fr; border-left: 0; border-top: 1px solid var(--paper-line); }
  .value-cell { border-right: 0; border-bottom: 1px solid var(--paper-line); min-height: 0; gap: 24px; }
}

@media (max-width: 860px) {
  .site-nav { display: none; }
  .burger { display: block; }

  .section-head { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .section-head .aside { justify-self: start; }

  .intro-grid,
  .kulor,
  .split,
  .split.reverse,
  .service-detail,
  .service-detail.reverse,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .split.reverse .split-media,
  .service-detail.reverse .sd-media { order: 0; }

  .stats { grid-template-columns: 1fr; border-top: 0; }
  .stat {
    border-right: 0;
    border-top: 1px solid var(--paper-line);
    padding: 22px 0 18px;
  }

  .hero-scroll { display: none; }

  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .field-row { grid-template-columns: 1fr; gap: 0; }

  .map-wrap iframe { height: 320px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 0; }
  .process-step h3 { margin-top: 20px; }
  .process-step .num { margin-bottom: 0; }

  .service-row { grid-template-columns: 40px minmax(0, 1fr) 32px; }
  .service-row h3 {
    font-size: 1.25rem;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .hero-scroll::after { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}
