/* =========================================================================
   KAMINVED — STYLE.CSS
   Skånsk eldstadsmodernism: papperslik bakgrund, sotgrå text, glödorange accent
   ========================================================================= */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Färger */
  --bark: #1C1815;
  --bark-soft: #2A2520;
  --soot: #161310;
  --paper: #F4ECE0;
  --paper-warm: #EFE5D4;
  --birch: #E8DCC8;
  --line: #C9B89A;
  --line-soft: #D9CAB0;
  --ember: #D9531E;
  --ember-deep: #B43F12;
  --bark-brown: #5B3A24;
  --moss: #3B4A2F;

  /* Typografi */
  --font-display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --font-body: 'Inter Tight', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Skuggor & radier */
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;
  --shadow-soft: 0 1px 2px rgba(28, 24, 21, 0.04), 0 8px 24px rgba(28, 24, 21, 0.06);
  --shadow-stamp: 0 2px 0 rgba(28, 24, 21, 0.08), 0 18px 40px rgba(28, 24, 21, 0.12);

  /* Mått */
  --container: 1200px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--bark);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Pappers-textur subtilt på hela bakgrunden */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(91, 58, 36, 0.025) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(91, 58, 36, 0.02) 0, transparent 35%);
}

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

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

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- TYPOGRAFI ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--bark);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 600; }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.15rem; letter-spacing: 0; }

h1 em, h2 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--bark-brown);
}

p { max-width: 60ch; }
.lead { font-size: 1.15rem; color: var(--bark-soft); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ember);
  margin-bottom: 1.5rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--line);
}
.eyebrow--light { color: var(--ember); border-bottom-color: rgba(217, 83, 30, 0.4); }

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 1;
}

.section {
  padding-block: clamp(4rem, 9vw, 7rem);
  position: relative;
}

.section--paper { background: var(--paper-warm); }
.section--dark { background: var(--bark); color: var(--paper); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--paper); }
.section--dark .lead { color: rgba(244, 236, 224, 0.78); }
.section--soot { background: var(--soot); color: var(--paper); }
.section--soot h2, .section--soot h3, .section--soot h4 { color: var(--paper); }
.section--soot .lead { color: rgba(244, 236, 224, 0.78); }

.section__intro { max-width: 720px; margin-bottom: 3rem; }
.section__intro--centered { text-align: center; margin-inline: auto; }
.section__intro--centered .eyebrow { display: inline-block; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.grid-2--reverse > *:first-child { order: 2; }
@media (max-width: 820px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2--reverse > *:first-child { order: 0; }
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 236, 224, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--bark);
}
.logo__mark { width: 42px; height: 42px; }
.logo__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
}

.nav__list {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav__list a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--bark);
  position: relative;
  padding-block: 0.25rem;
  transition: color 0.2s;
}
.nav__list a:hover { color: var(--ember); }
.nav__list a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav__list a:not(.nav__cta):hover::after { transform: scaleX(1); }

.nav__cta {
  background: var(--ember);
  color: var(--paper) !important;
  padding: 0.6rem 1.1rem !important;
  border-radius: var(--r-md);
  font-weight: 600 !important;
  transition: background 0.2s;
}
.nav__cta:hover { background: var(--ember-deep); color: var(--paper) !important; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bark);
  transition: transform 0.25s, opacity 0.25s;
}

@media (max-width: 880px) {
  .nav__toggle { display: flex; }
  .nav__list {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--paper);
    border-bottom: 1px solid var(--line-soft);
    padding: 1.5rem var(--gutter);
    gap: 1.25rem;
    align-items: flex-start;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }
  .nav__list.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: transform 0.15s ease, background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn--lg { padding: 1.05rem 1.85rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--ember);
  color: var(--paper);
}
.btn--primary:hover { background: var(--ember-deep); }

.btn--ghost {
  background: transparent;
  color: var(--bark);
  border: 1.5px solid var(--bark);
}
.btn--ghost:hover { background: var(--bark); color: var(--paper); }
.section--dark .btn--ghost, .section--soot .btn--ghost {
  color: var(--paper);
  border-color: var(--paper);
}
.section--dark .btn--ghost:hover, .section--soot .btn--ghost:hover {
  background: var(--paper); color: var(--bark);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding-block: clamp(4rem, 8vw, 7rem) clamp(4rem, 9vw, 8rem);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(217, 83, 30, 0.08), transparent 60%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(91, 58, 36, 0.06), transparent 60%);
}
.hero__grain {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(28, 24, 21, 0.012) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(28, 24, 21, 0.012) 0 1px, transparent 1px 3px);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; }
}

.hero__title {
  margin-block: 1rem 1.5rem;
  font-weight: 600;
}
.hero__lead {
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  color: var(--bark-soft);
  max-width: 38ch;
  margin-bottom: 2.25rem;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero__trust {
  font-size: 0.92rem;
  color: var(--bark-soft);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  max-width: 40ch;
  line-height: 1.7;
}

/* Stamp – sidans visuella signatur */
.hero__stamp { position: relative; }
.stamp {
  background: var(--paper-warm);
  border: 1.5px solid var(--bark);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem 2.5rem;
  position: relative;
  box-shadow: var(--shadow-stamp);
  transform: rotate(-1.5deg);
}
.stamp::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px dashed var(--line);
  border-radius: calc(var(--r-lg) - 6px);
  pointer-events: none;
}
.stamp__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-block: 0.75rem;
  border-bottom: 1px dotted var(--line);
}
.stamp__row:last-of-type { border-bottom: 0; }
.stamp__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bark-brown);
}
.stamp__value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
}
.stamp__row--accent .stamp__value { color: var(--ember); }
.stamp__seal {
  position: absolute;
  bottom: -22px; right: -22px;
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--ember);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transform: rotate(8deg);
  box-shadow: 0 6px 16px rgba(217, 83, 30, 0.3);
  border: 2px solid var(--paper);
}

/* ---------- STRAP (värdesats) ---------- */
.strap {
  background: var(--birch);
  border-block: 1px solid var(--line);
  padding-block: 2rem;
}
.strap__line {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  font-weight: 500;
  text-align: center;
  max-width: 50ch;
  margin-inline: auto;
  color: var(--bark);
}
.strap__line em {
  color: var(--ember);
  font-style: italic;
}

/* ---------- FACTS ---------- */
.facts {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.facts li {
  padding: 1.5rem;
  background: var(--paper-warm);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  transition: transform 0.2s, border-color 0.2s;
}
.facts li:hover { transform: translateY(-3px); border-color: var(--ember); }
.facts__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--bark);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.facts__label {
  font-size: 0.92rem;
  color: var(--bark-soft);
  line-height: 1.45;
}

/* ---------- SUITED ---------- */
.suited {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(3rem, 5vw, 4rem);
  border-top: 1px solid var(--line-soft);
}
.suited h3 { margin-bottom: 2rem; }
.suited__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 760px) { .suited__grid { grid-template-columns: 1fr; } }
.suited__card {
  padding: 1.75rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: var(--paper);
  transition: border-color 0.2s, transform 0.2s;
}
.suited__card:hover { border-color: var(--ember); transform: translateY(-3px); }
.suited__card .icon {
  width: 48px; height: 48px;
  color: var(--bark);
  margin-bottom: 1rem;
}
.suited__card h4 { margin-bottom: 0.5rem; }
.suited__card p { font-size: 0.95rem; color: var(--bark-soft); }

/* ---------- DEKLARATION ---------- */
.declaration {
  background: var(--paper);
  color: var(--bark);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 880px;
  margin-inline: auto;
  margin-top: 3rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
}
.declaration::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--ember) 0 25%, var(--bark) 25% 50%, var(--bark-brown) 50% 75%, var(--moss) 75% 100%);
}
.declaration__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--bark);
  gap: 1rem;
}
.declaration__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.85rem;
  letter-spacing: -0.02em;
  line-height: 1;
}
.declaration__sub {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bark-brown);
  margin-top: 0.4rem;
}
.declaration__seal {
  background: var(--ember);
  color: var(--paper);
  padding: 0.6rem 1rem 0.7rem;
  border-radius: var(--r-sm);
  text-align: center;
  min-width: 80px;
}
.declaration__sealLabel {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.9;
}
.declaration__sealGrade {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
}

.declaration__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: 2rem;
}
@media (max-width: 600px) { .declaration__grid { grid-template-columns: 1fr; } }
.declaration__cell {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.declaration__cell:nth-child(even) { border-right: 0; }
.declaration__cell:nth-last-child(-n+2) { border-bottom: 0; }
@media (max-width: 600px) {
  .declaration__cell { border-right: 0; }
  .declaration__cell:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .declaration__cell:last-child { border-bottom: 0; }
}
.declaration__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bark-brown);
  margin-bottom: 0.35rem;
}
.declaration__value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
}
.declaration__value--placeholder {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--bark-brown);
  background: var(--birch);
  padding: 0.2rem 0.5rem;
  border-radius: var(--r-sm);
  display: inline-block;
}

.declaration__formula {
  background: var(--birch);
  padding: 1.75rem;
  border-radius: var(--r-md);
}
.declaration__formula h3 { font-size: 1.15rem; margin-bottom: 1.25rem; }
.formula {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.formula__frac {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.formula__num {
  padding: 0.25rem 0.75rem;
  border-bottom: 2px solid var(--bark);
}
.formula__den {
  padding: 0.25rem 0.75rem;
  font-size: 0.85rem;
}
.formula__inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 500px) { .formula__inputs { grid-template-columns: 1fr; } }
.formula__inputs > div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted var(--line);
  padding-block: 0.4rem;
}
.formula__inputs dt {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bark-brown);
}
.formula__inputs dd {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--bark);
}
.declaration__note {
  font-size: 0.9rem;
  color: var(--bark-brown);
  line-height: 1.5;
  padding-left: 1rem;
  border-left: 2px solid var(--ember);
}

/* Deklarations-resultat */
.declaration__result {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.1rem 1.25rem;
  margin-block: 1.5rem;
  background: var(--bark);
  color: var(--paper);
  border-radius: var(--r-sm);
  font-family: var(--font-mono);
}
.declaration__resultCalc {
  font-size: 0.95rem;
  color: rgba(244, 236, 224, 0.7);
}
.declaration__resultEq {
  color: var(--ember);
  font-weight: 600;
  font-size: 1.1rem;
}
.declaration__resultValue {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ember);
  letter-spacing: -0.01em;
  margin-left: auto;
}
@media (max-width: 520px) {
  .declaration__result { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .declaration__resultValue { margin-left: 0; }
}

/* ---------- COMPARE ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 760px) { .compare { grid-template-columns: 1fr; } }
.compare__col {
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper-warm);
}
.compare__col--primary {
  background: var(--bark);
  color: var(--paper);
  border-color: var(--bark);
}
.compare__col--primary h3 { color: var(--paper); }
.compare__col header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid currentColor;
  border-color: var(--line);
  gap: 1rem;
}
.compare__col--primary header { border-color: rgba(244, 236, 224, 0.2); }
.compare__tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  background: var(--ember);
  color: var(--paper);
  border-radius: 999px;
  white-space: nowrap;
}
.compare__tag--alt {
  background: transparent;
  color: var(--bark-brown);
  border: 1px solid var(--bark-brown);
}
.compare__col ul { list-style: none; }
.compare__col li {
  padding: 0.65rem 0 0.65rem 1.5rem;
  position: relative;
  font-size: 0.97rem;
  line-height: 1.5;
}
.compare__col li::before {
  content: '';
  position: absolute;
  left: 0; top: 1rem;
  width: 8px; height: 8px;
  background: var(--ember);
  border-radius: 1px;
  transform: rotate(45deg);
}
.compare__col--primary li::before { background: var(--ember); }

.callout {
  background: var(--birch);
  border-left: 4px solid var(--ember);
  padding: 1.5rem 1.75rem;
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.callout p { font-size: 1.05rem; max-width: 75ch; }

/* ---------- TOPFIRE ---------- */
.topfire {
  background: var(--bark);
  color: var(--paper);
  padding: 2rem;
  border-radius: var(--r-md);
  position: relative;
}
.topfire::before {
  content: '🔥';
  position: absolute;
  top: -22px; right: 20px;
  width: 44px; height: 44px;
  background: var(--ember);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(217, 83, 30, 0.35);
}
.topfire__steps {
  list-style: none;
  counter-reset: none;
}
.topfire__steps li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.85rem;
  border-bottom: 1px solid rgba(244, 236, 224, 0.12);
  font-size: 0.98rem;
}
.topfire__steps li:last-child { border-bottom: 0; }
.topfire__steps li span {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1.5px solid var(--ember);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ember);
}

/* ---------- PLACES ---------- */
.places {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-block: 2.5rem;
}
.places a {
  display: inline-block;
  padding: 0.75rem 1.4rem;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--bark);
  transition: all 0.2s;
}
.places a:hover {
  background: var(--ember);
  color: var(--paper);
  border-color: var(--ember);
  transform: translateY(-2px);
}

.local-seo {
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--birch);
  border-radius: var(--r-md);
}
.local-seo h3 { margin-bottom: 0.75rem; }
.local-seo p { max-width: 75ch; line-height: 1.75; }
.local-seo strong { color: var(--ember); font-weight: 600; }
.local-seo a { color: var(--ember); text-decoration: none; border-bottom: 1px solid currentColor; font-weight: 600; }

/* ---------- BOKA / FORM ---------- */
.boka__list {
  list-style: none;
  margin-top: 1.5rem;
}
.boka__list li {
  padding: 0.6rem 0 0.6rem 1.75rem;
  position: relative;
  color: rgba(244, 236, 224, 0.85);
}
.boka__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 1.05rem;
  width: 14px; height: 2px;
  background: var(--ember);
}

.form {
  background: var(--paper);
  color: var(--bark);
  padding: 2rem;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-stamp);
}
.form__row { margin-bottom: 1.1rem; }
.form__row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 500px) { .form__row--split { grid-template-columns: 1fr; } }
.form label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bark-brown);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 1rem;
  color: var(--bark);
  background: var(--paper-warm);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color 0.2s, background 0.2s;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 0;
  border-color: var(--ember);
  background: var(--paper);
}
.form textarea { resize: vertical; min-height: 100px; }
.form__note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--bark-brown);
  text-align: center;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin-inline: auto;
  margin-top: 1rem;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding-block: 0.5rem;
}
.faq summary {
  cursor: pointer;
  padding: 1.1rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--bark);
  transition: color 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  flex-shrink: 0;
  width: 16px; height: 16px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s, color 0.2s;
}
.faq details[open] summary { color: var(--ember); }
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq summary:hover { color: var(--ember); }
.faq p {
  padding: 0 0 1.25rem;
  color: var(--bark-soft);
  font-size: 1rem;
  max-width: 70ch;
}

/* ---------- OM-CARD ---------- */
.om-card {
  background: var(--bark);
  color: var(--paper);
  padding: 2rem;
  border-radius: var(--r-md);
  align-self: start;
}
.om-card__row {
  padding-block: 1rem;
  border-bottom: 1px dotted rgba(244, 236, 224, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.om-card__row:last-child { border-bottom: 0; }
.om-card__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ember);
}
.om-card__value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--bark);
  color: rgba(244, 236, 224, 0.75);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: 2rem;
  font-size: 0.92rem;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 820px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .site-footer__inner { grid-template-columns: 1fr; }
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.site-footer__brand .logo__mark { width: 36px; height: 36px; }
.site-footer__brand > span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--paper);
}
.site-footer__brand p { font-size: 0.92rem; max-width: 28ch; }
.site-footer__col h4 {
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  font-weight: 500;
}
.site-footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.site-footer__col a {
  color: rgba(244, 236, 224, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer__col a:hover { color: var(--ember); }

.site-footer__base {
  padding-top: 2rem;
  border-top: 1px solid rgba(244, 236, 224, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 1rem; left: 1rem; right: 1rem;
  z-index: 100;
  background: var(--bark);
  color: var(--paper);
  border-radius: var(--r-md);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  padding: 1.25rem 1.5rem;
  max-width: 720px;
  margin-inline: auto;
}
.cookie-banner__inner {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-banner__text { flex: 1; min-width: 240px; }
.cookie-banner__text strong { color: var(--paper); display: block; margin-bottom: 0.25rem; }
.cookie-banner__text p { font-size: 0.9rem; color: rgba(244, 236, 224, 0.8); max-width: 50ch; }
.cookie-banner__buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-banner .btn {
  padding: 0.65rem 1.25rem;
  font-size: 0.92rem;
}
.cookie-banner .btn--ghost {
  color: var(--paper);
  border-color: rgba(244, 236, 224, 0.4);
}
.cookie-banner .btn--ghost:hover {
  background: rgba(244, 236, 224, 0.1);
  color: var(--paper);
}

/* ---------- ANIMATIONS ---------- */
@media (prefers-reduced-motion: no-preference) {
  .hero__content > *,
  .hero__stamp {
    opacity: 0;
    animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  }
  .hero__content > *:nth-child(1) { animation-delay: 0.05s; }
  .hero__content > *:nth-child(2) { animation-delay: 0.15s; }
  .hero__content > *:nth-child(3) { animation-delay: 0.25s; }
  .hero__content > *:nth-child(4) { animation-delay: 0.35s; }
  .hero__content > *:nth-child(5) { animation-delay: 0.45s; }
  .hero__stamp { animation-delay: 0.3s; }

  @keyframes rise {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* ---------- KÖP KAMINVED ---------- */
.kop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 920px) { .kop-grid { grid-template-columns: 1fr; } }

/* Pris-block i toppen av varje köp-kort */
.kop-card__price {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-bottom: 1rem;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid var(--line);
}
.kop-card__priceNum {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 3vw, 2.25rem);
  line-height: 1;
  color: var(--bark);
  letter-spacing: -0.02em;
}
.kop-card--feature .kop-card__priceNum {
  color: var(--ember);
}
.kop-card__priceUnit {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bark-brown);
}
.kop-card__priceSave {
  display: inline-block;
  margin-top: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--moss);
  background: rgba(59, 74, 47, 0.12);
  padding: 0.25rem 0.55rem;
  border-radius: var(--r-sm);
  width: fit-content;
}
@media (max-width: 920px) { .kop-grid { grid-template-columns: 1fr; } }

.kop-card {
  position: relative;
  background: var(--paper);
  color: var(--bark);
  padding: 2rem 1.75rem 1.75rem;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.kop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
.kop-card--feature {
  background: var(--paper-warm);
  border-color: var(--ember);
  box-shadow: 0 8px 24px rgba(217, 83, 30, 0.15);
}
/* Tvinga mörk text i kortet även när sektionen är mörk */
.section--soot .kop-card h3,
.section--dark .kop-card h3,
.kop-card h3 {
  color: var(--bark) !important;
  font-size: 1.5rem;
  margin-top: 0.5rem;
}
.kop-card__badge {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--bark);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.7rem;
  border-radius: var(--r-sm);
}
.kop-card--feature .kop-card__badge {
  background: var(--ember);
}
.kop-card__lead {
  color: var(--bark-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}
.kop-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px dotted var(--line);
  margin-top: auto;
}
.kop-card__meta > div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.kop-card__meta dt {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bark-brown);
}
.kop-card__meta dd {
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--bark);
}
.kop-card__meta dd a {
  color: var(--ember);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.kop-card__meta dd a:hover { color: var(--ember-deep); }

/* Knappar inuti korten ska se rätt ut oavsett sektionsfärg */
.kop-card .btn {
  margin-top: 0.5rem;
  align-self: flex-start;
}
.section--soot .kop-card .btn--ghost,
.section--dark .kop-card .btn--ghost {
  color: var(--bark);
  border-color: var(--bark);
  background: transparent;
}
.section--soot .kop-card .btn--ghost:hover,
.section--dark .kop-card .btn--ghost:hover {
  background: var(--bark);
  color: var(--paper);
}

.kop-strap {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(244, 236, 224, 0.85);
  padding: 1.5rem;
  border-top: 1px solid rgba(244, 236, 224, 0.15);
  margin-top: 1rem;
}
.kop-strap strong {
  color: var(--paper);
  display: block;
  margin-bottom: 0.4rem;
}
.kop-strap a {
  color: var(--ember);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.boka__list--light li { color: var(--bark-soft); }
.boka__list--light li::before { background: var(--ember); }

.hero__trust a {
  color: var(--ember);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.hero__trust a:hover { color: var(--ember-deep); }

/* ---------- REVEAL (IntersectionObserver) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================================
   ELDNINGSGUIDE — /elda-ratt/
   ========================================================================= */
.guide-hero {
  padding-block: clamp(4rem, 8vw, 7rem) clamp(2rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(217, 83, 30, 0.07), transparent 60%);
}
.guide-hero__title {
  margin-block: 1rem 1.5rem;
  max-width: 16ch;
}
.guide-hero__lead {
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  color: var(--bark-soft);
  max-width: 55ch;
}

.guide-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 880px) { .guide-layout { grid-template-columns: 1fr; } }

.guide-diagram__sticky {
  position: sticky;
  top: 100px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.5rem;
  text-align: center;
}
.guide-diagram svg { width: 100%; height: auto; max-width: 260px; margin-inline: auto; }
.guide-diagram__caption {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bark-brown);
  margin-top: 1rem;
}

.guide-steps {
  list-style: none;
  counter-reset: none;
  display: flex;
  flex-direction: column;
}
.guide-steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--line-soft);
}
.guide-steps li:first-child { padding-top: 0; }
.guide-steps li:last-child { border-bottom: 0; }
.guide-steps__num {
  width: 48px;
  height: 48px;
  background: var(--bark);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.guide-steps li:nth-child(6) .guide-steps__num {
  background: var(--ember);
}
.guide-steps h3 { margin-bottom: 0.5rem; }
.guide-steps p { color: var(--bark-soft); }

/* Big quote */
.big-quote {
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
  padding-block: 2rem;
  position: relative;
}
.big-quote__mark {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0.6;
  color: var(--ember);
  display: block;
  margin-bottom: 0.5rem;
}
.big-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--paper);
  max-width: none;
}
.big-quote p em {
  font-style: italic;
  color: var(--ember);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* Do / Don't */
.dodont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 720px) { .dodont { grid-template-columns: 1fr; } }
.dodont__col {
  padding: 2rem;
  border-radius: var(--r-md);
  background: var(--paper-warm);
  border: 1px solid var(--line);
}
.dodont__col h3 {
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--bark);
}
.dodont__col--do { border-color: var(--moss); }
.dodont__col--do h3 { border-bottom-color: var(--moss); color: var(--moss); }
.dodont__col--dont { border-color: var(--ember); }
.dodont__col--dont h3 { border-bottom-color: var(--ember); color: var(--ember); }
.dodont__col ul { list-style: none; }
.dodont__col li {
  padding: 0.6rem 0 0.6rem 1.75rem;
  position: relative;
  font-size: 0.97rem;
  border-bottom: 1px dotted var(--line);
}
.dodont__col li:last-child { border-bottom: 0; }
.dodont__col--do li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0.55rem;
  color: var(--moss);
  font-weight: 700;
}
.dodont__col--dont li::before {
  content: '✕';
  position: absolute;
  left: 0; top: 0.55rem;
  color: var(--ember);
  font-weight: 700;
}

/* Guide CTA */
.guide-cta {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}
.guide-cta h2 { margin-bottom: 1rem; }
.guide-cta p { margin-inline: auto; margin-bottom: 2rem; color: var(--bark-soft); font-size: 1.1rem; }
.guide-cta > div {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- PRINT ---------- */
@media print {
  .site-header, .site-footer, .cookie-banner, .nav__toggle, .hero__cta, .form { display: none; }
  body { background: white; color: black; }
}
