@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,300;0,400;0,500;0,600;1,400;1,500&display=swap');
/* ============================================================
   lapplandguld.se v2. Gemensam CSS.
   Förebild: Lundin Mining, Boliden, Lundin Gold. Minimalistisk
   corporate IR-portal. Inget överflödigt.

   Forest-tema från brandkitet. Inter + JetBrains Mono.
   Gold som accent, aldrig som brödtext-färg.
   Skapad 2026-05-18.
   ============================================================ */

:root {
  /* Bakgrund */
  --bg: #1B3028;
  --bg-deep: #142822;
  --surface: #243B32;
  --surface-up: #2D4A3E;

  /* Text */
  --text: #E8E5E0;
  --text-mid: rgba(232,225,200,0.62);
  --text-dim: rgba(232,225,200,0.74);
  --text-low: rgba(232,225,200,0.50);
  --white: #FFFFFF;

  /* Accent */
  --gold: #C5A059;
  --gold-dark: #9E7C3D;
  --gold-light: #D4B87A;

  /* Linjer */
  --line: rgba(232,225,200,0.10);
  --line-strong: rgba(232,225,200,0.20);

  /* Status */
  --positive: #4A8C5E;
  --alert: #B84A42;

  /* Typografi */
  --sans: 'Inter', -apple-system, system-ui, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
  --wm-font: 'Archivo', 'Inter', sans-serif;
  --wm-top-weight: 600;

  /* Layout */
  --max-w: 1240px;
  --max-w-narrow: 880px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'kern' 1, 'liga' 1;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.18s; }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.num { font-family: var(--mono); font-feature-settings: 'tnum' 1, 'zero' 1; letter-spacing: 0; }

.skip-link {
  position: absolute; top: -100px; left: 24px;
  background: var(--gold); color: var(--bg);
  padding: 8px 18px; z-index: 200; font-weight: 600;
  border-radius: 3px; font-size: 0.84rem;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: var(--max-w-narrow); margin: 0 auto; padding: 0 32px; }

/* ============================================================
   NAV. Sticky topp-nav. Flyter över hero med subtil top-gradient
   som ger text-läsbarhet utan att dölja bilden. Opak vid scroll.
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  /* Skarp Apple-style: subtil svart gradient + lätt frost, ingen saturate-tvätt, ingen mask-luddig kant */
  background: linear-gradient(180deg,
    rgba(0,0,0,0.42) 0%,
    rgba(0,0,0,0.18) 70%,
    rgba(0,0,0,0.0) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid transparent;
  transition: background 0.30s ease, backdrop-filter 0.30s ease, border-bottom-color 0.30s ease;
}
.nav.scrolled {
  background: rgba(20,40,34,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  -webkit-mask-image: none;
          mask-image: none;
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.nav-brand { display: flex; align-items: center; gap: 15px; color: var(--white); }
.nav-brand img { height: 46px; width: auto; }
.nav-logo { height: 46px; width: auto; display: block; filter: drop-shadow(0 1px 8px rgba(0,0,0,0.45)); }
.nav.scrolled .nav-logo { filter: none; }
.footer-logo { height: 48px; width: auto; display: block; margin-bottom: 16px; }
/* Wordmark: justerad tva-radslasning. Lappland over en width-matchad descriptor.
   Exakt bredd-matchning satts av nav.js (justifyWordmark). Typsnitt styrs av --wm-font. */
.nav-brand-text {
  display: inline-flex; flex-direction: column; line-height: 1.0; color: var(--white);
  font-family: var(--wm-font, var(--sans));
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}
.nav-brand-text .wm-top {
  font-weight: var(--wm-top-weight, 600); font-size: 1.5rem; letter-spacing: -0.012em;
}
.nav-brand-text .wm-sub {
  font-weight: 500; font-size: 0.60rem; text-transform: uppercase;
  letter-spacing: 0.2em; color: rgba(232,225,200,0.84); margin-top: 4px; white-space: nowrap;
}
.nav.scrolled .nav-brand-text { text-shadow: none; }
.nav.scrolled .nav-brand-text .wm-sub { color: rgba(232,225,200,0.72); }

/* Press-filter (pm-filter) · forest-tinted i palett */
.pm-filter {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  margin-bottom: 18px;
}
.pm-filter-lbl {
  font-family: var(--mono, 'JetBrains Mono', monospace);
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(232,225,200,0.55); font-weight: 600;
  margin-right: 8px;
}
.pm-filter-btn, .pm-filter-yr-btn {
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 500;
  padding: 8px 18px;
  background: rgba(232,225,200,0.06);
  color: rgba(232,225,200,0.78);
  border: 1px solid rgba(232,225,200,0.18);
  border-radius: 100px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.pm-filter-btn:hover, .pm-filter-yr-btn:hover {
  background: rgba(197,160,89,0.10);
  border-color: rgba(197,160,89,0.40);
  color: var(--white);
}
.pm-filter-btn.active, .pm-filter-yr-btn.active {
  background: #C5A059;
  color: #0E1614;
  border-color: #C5A059;
  font-weight: 600;
}
.pm-filter-btn:focus-visible, .pm-filter-yr-btn:focus-visible {
  outline: 2px solid #C5A059;
  outline-offset: 2px;
}

.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.84rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--white); padding: 6px 0;
  border-bottom: 1px solid transparent;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55), 0 0 1px rgba(0,0,0,0.55);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a[aria-current="page"] { color: var(--gold); border-bottom-color: var(--gold); }
.nav.scrolled .nav-links a { text-shadow: none; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-light); padding: 9px 18px;
  border: 1px solid rgba(197,160,89,0.48);
  background: transparent; /* Designjustering 2026-06-03: svart platta upplevdes tung, guldkontur racker */
  border-radius: 100px;
  transition: background 0.20s, color 0.20s, border-color 0.20s, transform 0.18s;
  text-shadow: 0 1px 4px rgba(0,0,0,0.50);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.nav-cta:hover { background: var(--gold); color: #0E1614; border-color: var(--gold); text-shadow: none; transform: translateY(-1px); }
.nav.scrolled .nav-cta { background: transparent; text-shadow: none; color: var(--gold); }

.hamburger {
  display: none; background: none; border: none; color: var(--white);
  font-size: 1.6rem; cursor: pointer; padding: 4px 8px;
}
@media (max-width: 960px) {
  .nav-links {
    display: none; position: fixed; top: 74px; left: 0; right: 0;
    flex-direction: column; gap: 0; padding: 20px 32px 36px;
    background: rgba(20,40,34,0.98); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    max-height: calc(100vh - 74px); overflow-y: auto;
    -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-cta { display: none; }
  .hamburger { display: block; }
}

/* Investerare som expanderbar undermeny (accordion) i mobilmenyn. */
.nav-caret { display: none; }
.nav-sub { list-style: none; margin: 0; padding: 0; }
@media (min-width: 961px) { .nav-sub { display: none; } .nav-caret { display: none; } }
@media (max-width: 960px) {
  /* Expandera/minimera-pil pa Investerare-raden. Flex centrerar den lodratt. */
  .nav-has-sub > a { display: flex; align-items: center; justify-content: space-between; }
  .nav-caret {
    display: inline-block; color: var(--gold);
    font-size: 1.4rem; line-height: 1; margin-left: 12px; text-shadow: none;
    transition: transform 220ms ease;
  }
  .nav-has-sub.nav-sub-open .nav-caret { transform: rotate(180deg); }

  /* Undermeny: tydligt sekundar stil mot toppnivans versaler, men fullt lasbar.
     Normal skrivstil (gemener) plus en sammanhallen guldlinje markerar gruppen. */
  .nav-sub { display: none; margin: 2px 0 10px; border-left: 2px solid rgba(197,160,89,0.40); }
  .nav-has-sub.nav-sub-open .nav-sub { display: block; }
  .nav-links .nav-sub li { width: 100%; }
  .nav-links .nav-sub a {
    display: block; padding: 12px 0 12px 20px;
    font-size: 0.95rem; font-weight: 400; letter-spacing: 0.01em; text-transform: none;
    color: var(--text-dim); text-shadow: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links .nav-sub li:last-child a { border-bottom: none; }
  .nav-links .nav-sub a.active { color: var(--gold); font-weight: 500; }
}

/* ============================================================
   HERO. Stor förstaintryck. Bakgrundsbild + minimal text.
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 88px 0 0;
  overflow: hidden;
  background: var(--bg-deep);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.72) saturate(1.02) contrast(0.94);
  animation: heroBreathe 64s ease-in-out infinite alternate;
  transform-origin: center;
  will-change: transform;
}
@keyframes heroBreathe {
  0% { transform: scale(1.00); }
  100% { transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(20,40,34,0.0) 0%,
      rgba(20,40,34,0.20) 32%,
      rgba(20,40,34,0.44) 58%,
      rgba(20,40,34,0.70) 78%,
      rgba(20,40,34,0.94) 100%),
    linear-gradient(90deg,
      rgba(20,40,34,0.36) 0%,
      rgba(20,40,34,0.10) 40%,
      rgba(20,40,34,0.0) 72%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
  width: 100%; flex: 0 0 100%;
}
.hero-credit {
  position: absolute; bottom: 26px; right: 32px; z-index: 3;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  text-align: right; line-height: 1.6;
}
.hero-credit .place { color: rgba(255,255,255,0.85); font-weight: 500; }
.hero-kicker {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: clamp(10.5px, 0.95vw, 12px);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.45);
}
.hero-h1 {
  font-size: clamp(3.8rem, 9.5vw, 8.5rem); /* Designpaket 2: dämpad från 11vw/10.5rem för institutionellt register */
  font-weight: 360;
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--white);
  margin: 0 0 4px;
  max-width: 14ch;
  text-shadow: 0 2px 34px rgba(0,0,0,0.34), 0 1px 4px rgba(0,0,0,0.30);
}
.hero-h1 em { font-style: normal; color: var(--gold); font-weight: 400; text-shadow: 0 2px 30px rgba(0,0,0,0.30), 0 1px 3px rgba(0,0,0,0.28); }
.hero-sub {
  display: flex; align-items: center; gap: 20px;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-weight: 300;
  line-height: 1.1;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.005em;
  margin: 22px 0 0;
  text-shadow: 0 1px 14px rgba(0,0,0,0.34);
}
.hero-rule {
  display: inline-block; flex: none;
  width: clamp(40px, 5vw, 66px); height: 2px;
  background: var(--gold);
}

/* ============================================================
   SECTION. Generell sektions-container.
   ============================================================ */
.section { padding: 96px 0; }
.section + .section { border-top: 1px solid var(--line); }
.section-head { margin-bottom: 48px; max-width: var(--max-w-narrow); }
.kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  font-weight: 200;
  line-height: 1.10;
  letter-spacing: -0.024em;
  color: var(--white);
  margin: 0;
  max-width: 22ch;
}
.h2 em { font-style: normal; color: var(--gold); font-weight: 300; }
.h3 {
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.lede {
  font-size: 1.06rem;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 64ch;
  margin-top: 18px;
}
.body-text {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 64ch;
}
.body-text p + p { margin-top: 18px; }
.body-text strong { color: var(--text); font-weight: 500; }

/* ============================================================
   CARD. Forest-surface, minimal hover.
   ============================================================ */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 8px 24px -8px rgba(0,0,0,0.22);
  transition: border-color 0.24s, transform 0.24s, box-shadow 0.24s;
}
.card:hover {
  border-color: rgba(197,160,89,0.32);
  transform: translateY(-3px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.14), 0 18px 38px -10px rgba(0,0,0,0.32);
}
.card-link { display: block; color: inherit; position: relative; }
.card-link:hover { color: inherit; }
.card-link::after {
  content: "\2192"; /* HÖGERPIL */
  position: absolute; top: 28px; right: 28px;
  font-family: var(--mono); font-size: 1.15rem; font-weight: 400;
  color: var(--gold); opacity: 0.55;
  transition: transform 0.22s ease, opacity 0.22s ease;
  pointer-events: none;
}
.card-link:hover::after { opacity: 1; transform: translateX(5px); }
@media (max-width: 640px) {
  .card-link::after { top: 22px; right: 22px; font-size: 1.05rem; }
}
.card-label {
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.card-h {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.card-t {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.62;
}

/* Grid */
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================================
   STAT. Stora siffror, monospace.
   ============================================================ */
.stat {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.10), 0 8px 24px -10px rgba(0,0,0,0.18);
}
.stat-label {
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.stat-value {
  font-family: var(--mono); /* v1.7-justering 2026-06-17: KPI-tal i JetBrains Mono, konsekvent med chart-card och alla andra siffror */
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
}
.stat-value .num { font-family: var(--mono); }
.stat-unit {
  font-family: var(--sans);
  font-size: 0.4em;
  font-weight: 500;
  color: var(--text-dim);
  margin-left: 7px;
  letter-spacing: 0;
}
.stat-sub {
  font-size: 0.86rem;
  color: var(--text-dim);
  line-height: 1.55;
  margin-top: 16px;
}

/* ============================================================
   IMG FIGURE. Inramad bild med mjuka hörn + caption.
   ============================================================ */
.img-figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 12px 32px -10px rgba(0,0,0,0.28);
}
.img-figure img { width: 100%; height: auto; display: block; }
.img-figure figcaption {
  padding: 14px 18px 16px;
  font-size: 0.84rem; line-height: 1.55;
  color: var(--text-dim);
  border-top: 1px solid var(--line);
  background: rgba(20,40,34,0.42);
}
.img-figure figcaption strong { color: var(--text); font-weight: 500; }
.img-figure figcaption .cap-meta {
  display: block; margin-top: 4px;
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.04em; color: var(--text-low);
  text-transform: uppercase;
}
.img-portrait {
  border-radius: 10px; overflow: hidden;
  background: var(--surface); aspect-ratio: 1 / 1;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 8px 24px -10px rgba(0,0,0,0.22);
}
.img-portrait img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   ROW LIST. Minimalistisk rad per item.
   För rapporter, PM, kalender.
   ============================================================ */
.row-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 28px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.row:hover { background: rgba(197,160,89,0.025); }
.row-date {
  font-family: var(--mono);
  font-size: 0.80rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.row-title {
  font-size: 0.98rem;
  color: var(--white);
  font-weight: 400;
  line-height: 1.5;
}
.row-title a { color: inherit; }
.row-title a:hover { color: var(--gold-light); }
.row-meta {
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--text-low);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn-pdf {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 14px;
  border: 1px solid rgba(197,160,89,0.34);
  border-radius: 2px;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
.btn-pdf::after {
  content: "\2192";
  font-size: 1.0em;
  font-weight: 400;
  transition: transform 0.18s ease;
}
.btn-pdf:hover { background: var(--gold); color: var(--bg); }
.btn-pdf:hover::after { transform: translateX(3px); }
@media (max-width: 640px) {
  .row { grid-template-columns: 1fr; gap: 4px; }
  .row-date { order: -1; }
}

/* ============================================================
   IR SHELL. Sidebar-navigation för IR-sektion.
   ============================================================ */
.ir-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  max-width: var(--max-w);
  margin: 0 auto;
  min-height: calc(100vh - 74px);
  padding-top: 74px;
}
.ir-sidebar {
  position: sticky;
  top: 74px;
  align-self: start;
  height: calc(100vh - 74px);
  padding: 48px 24px 32px 32px;
  border-right: 1px solid var(--line);
  overflow-y: auto;
}
.ir-sidebar-label {
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.ir-sidebar-ticker {
  font-size: 0.92rem;
  color: var(--white);
  margin-bottom: 28px;
}
.ir-sidebar-ticker strong { display: block; font-weight: 600; letter-spacing: 0.02em; }
.ir-sidebar-ticker span { font-size: 0.78rem; color: var(--text-low); }
.ir-nav { list-style: none; padding: 0; margin: 0; }
.ir-nav li { margin: 0; }
.ir-nav a {
  display: flex; align-items: baseline; gap: 14px;
  padding: 11px 14px;
  font-size: 0.92rem;
  color: var(--text-dim);
  border-radius: 3px;
  transition: background 0.15s, color 0.15s;
}
.ir-nav a:hover { background: rgba(197,160,89,0.06); color: var(--white); }
.ir-nav a.active {
  background: rgba(197,160,89,0.08);
  color: var(--white);
  border-left: 2px solid var(--gold);
  padding-left: 12px;
}
.ir-nav-num {
  font-family: var(--mono);
  font-size: 0.66rem;
  color: var(--text-low);
  letter-spacing: 0.06em;
}

.ir-content { padding: 56px 56px 96px; min-width: 0; }
.ir-breadcrumb {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-low);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.ir-breadcrumb a { color: var(--text-dim); }
.ir-breadcrumb a:hover { color: var(--gold); }
.ir-h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.4rem);
  font-weight: 200;
  line-height: 1.08;
  letter-spacing: -0.028em;
  color: var(--white);
  margin-bottom: 18px;
}
.ir-h1 em { font-style: normal; color: var(--gold); font-weight: 300; }
.ir-intro {
  font-size: 1.06rem;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 60ch;
  margin-bottom: 56px;
}
.ir-sect { margin-bottom: 64px; }
.ir-sect-head {
  display: flex; align-items: baseline; gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.ir-sect-num {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--gold-dark);
  letter-spacing: 0.06em;
}
.ir-sect-title {
  font-size: 1.32rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--white);
  margin: 0;
}

/* Mobil IR-drawer */
.ir-mobile-bar {
  display: none;
  position: sticky; top: 74px; z-index: 50;
  padding: 14px 32px;
  background: rgba(20,40,34,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 960px) {
  .ir-shell { grid-template-columns: 1fr; }
  .ir-sidebar {
    position: fixed; top: 74px; left: -100%;
    width: 86%; max-width: 320px;
    height: calc(100vh - 74px);
    background: var(--bg-deep);
    transition: left 0.25s ease;
    z-index: 90; padding: 32px 24px;
  }
  .ir-sidebar.open { left: 0; }
  .ir-mobile-bar { display: flex; justify-content: space-between; align-items: center; }
  .ir-content { padding: 32px 24px 72px; }
}

/* ============================================================
   FOOTER. Asymmetrisk arkitektur. Signatur-band med mantra.
   ============================================================ */
.footer {
  padding: 0 0 40px;
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}

/* Signatur-band: stort mantra som spänner sektionen */
.footer-signature {
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 56px;
}
.footer-signature .wrap-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: end;
}
.footer-mantra {
  font-size: clamp(2.0rem, 5vw, 3.6rem);
  font-weight: 200;
  line-height: 1.05;
  letter-spacing: -0.028em;
  color: var(--text);
  margin: 0;
  max-width: 18ch;
}
.footer-mantra em { font-style: normal; color: var(--gold); font-weight: 300; }
.footer-mantra-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-low);
  line-height: 1.7;
}
.footer-mantra-meta strong { color: var(--text-dim); font-weight: 500; }

/* Sitemap-grid med asymmetri: brand bredare, kolumner smala */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer-brand img { height: 32px; margin-bottom: 18px; opacity: 0.9; }
.footer-brand-name {
  font-weight: 500;
  color: var(--white);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.footer-brand-org {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-low);
  line-height: 1.85;
  letter-spacing: 0.02em;
  margin: 0;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 5px 0; }
.footer-col a { color: var(--text-dim); font-size: 0.88rem; transition: color 0.18s; }
.footer-col a:hover { color: var(--white); }

/* Disclaimer + meta-rad i botten */
.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--text-low);
  line-height: 1.7;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 84ch;
  margin: 0;
}
.footer-meta {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--text-low);
  letter-spacing: 0.10em;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}

@media (min-width: 720px) {
  .footer-signature .wrap-inner {
    grid-template-columns: 1.6fr 1fr;
    gap: 64px;
  }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; }
}
@media (max-width: 720px) {
  .footer-signature { padding: 56px 0 48px; margin-bottom: 40px; }
  .footer-meta { flex-direction: column; gap: 4px; }
}

/* ============================================================
   PRINT. Cream-papper för utskrift.
   ============================================================ */
@media print {
  :root {
    --bg: #FDFBF6; --bg-deep: #FDFBF6;
    --surface: #F5F3EF; --surface-up: #FFFFFF;
    --text: #111111; --text-dim: #3D3D3D; --text-low: #6B6B6B;
    --line: #E8E5E0; --line-strong: #D4D1CC;
  }
  body { background: var(--bg); color: var(--text); }
  .nav, .hero-bg, .footer, .ir-sidebar, .ir-mobile-bar, .nav-cta, .hamburger { display: none; }
  .hero { min-height: auto; padding: 0 0 28px; }
  .hero::after, .hero-bg { display: none; }
  .hero-h1, .h2, .h3, .ir-h1, .stat-value, .card-h, .row-title { color: var(--text); }
  .hero-sub, .lede, .body-text, .ir-intro, .stat-sub, .card-t, .row-date { color: var(--text-dim); }
  .card, .stat { background: var(--surface); border-color: var(--line); }
  .ir-shell { grid-template-columns: 1fr; padding-top: 0; }
  .ir-content { padding: 16mm; }
  a { color: var(--gold-dark); }
}

/* ============================================================
   CHART. Kursgraf på ir-aktien. Lyft från originalet 2026-05-18.
   ============================================================ */
.chart-card { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 28px 28px 22px; margin-bottom: 14px; box-shadow: 0 1px 3px rgba(0,0,0,0.10), 0 8px 24px -10px rgba(0,0,0,0.20); }
.chart-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 22px; flex-wrap: wrap; }
.ticker-code { font-family: var(--mono); font-size: 0.86rem; font-weight: 500; letter-spacing: 0.04em; color: var(--white); }
.ticker-venue { font-size: 0.72rem; color: var(--text-dim); margin-top: 4px; }
.ticker-tag { font-size: 0.66rem; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; margin-top: 6px; }
.chart-price { text-align: right; }
.price-latest { display: flex; align-items: baseline; gap: 8px; justify-content: flex-end; }
.price-num { font-size: 2.3rem; font-weight: 400; color: var(--white); line-height: 1; letter-spacing: -0.02em; font-family: var(--mono); }
.price-cur { font-size: 0.82rem; color: var(--text-dim); font-weight: 500; }
.price-delta { font-size: 0.78rem; color: var(--gold); margin-top: 6px; font-weight: 500; font-family: var(--mono); }
.price-delta.neg { color: var(--alert); }
.chart-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 0 -28px 24px; }
.cs { background: var(--surface); padding: 14px 20px; }
.cs-lbl { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 7px; font-family: var(--mono); }
.cs-val { font-size: 1.05rem; font-weight: 500; color: var(--white); letter-spacing: -0.005em; font-family: var(--mono); }
.cs-unit { font-size: 0.62em; color: var(--text-dim); margin-left: 4px; font-weight: 400; }
.chart-tabs { display: flex; gap: 2px; margin-bottom: 10px; }
.chart-tabs button { font-family: var(--mono); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.06em; background: transparent; color: var(--text-dim); border: 1px solid transparent; padding: 7px 14px; cursor: pointer; border-radius: 3px; transition: all 0.15s; }
.chart-tabs button:hover { color: var(--text); border-color: var(--line); }
.chart-tabs button.active { color: var(--gold); border-color: rgba(197,160,89,0.30); background: rgba(197,160,89,0.08); }
.chart-wrap { position: relative; width: 100%; }
.chart-svg { width: 100%; height: auto; display: block; }
.chart-svg .grid-line { stroke: var(--line); stroke-width: 1; }
.chart-svg .grid-line-solid { stroke: rgba(232,225,200,0.12); stroke-width: 1; }
.chart-svg .axis-label { font-family: var(--mono); font-size: 10.5px; fill: var(--text-dim); font-weight: 400; }
.chart-svg .axis-label-bright { font-family: var(--mono); font-size: 10.5px; fill: var(--gold); font-weight: 500; }
.chart-svg .price-line { fill: none; stroke: var(--gold); stroke-width: 1.6; stroke-linejoin: round; stroke-linecap: round; }
.chart-svg .price-area { fill: url(#priceGrad); }
.chart-svg .current-dot { fill: var(--gold); stroke: var(--bg); stroke-width: 2; }
.chart-svg .xhair-line { stroke: rgba(232,225,200,0.30); stroke-width: 1; stroke-dasharray: 2 3; pointer-events: none; }
.chart-svg .xhair-dot { fill: var(--gold); stroke: var(--bg); stroke-width: 1.5; pointer-events: none; }
.chart-svg .range-hi, .chart-svg .range-lo { font-family: var(--mono); font-size: 10px; fill: var(--text-dim); font-weight: 500; }
.chart-tooltip { position: absolute; background: var(--surface-up); border: 1px solid var(--line); border-radius: 4px; padding: 8px 14px; font-size: 0.78rem; pointer-events: none; z-index: 5; white-space: nowrap; box-shadow: 0 4px 18px rgba(0,0,0,0.40); transform: translate(-50%, calc(-100% - 10px)); }
.chart-tooltip .tt-date { color: var(--text-dim); font-size: 0.64rem; letter-spacing: 0.04em; margin-bottom: 3px; font-family: var(--mono); }
.chart-tooltip .tt-price { color: var(--white); font-weight: 500; font-size: 0.92rem; font-family: var(--mono); }
.chart-tooltip[hidden] { display: none; }

/* Ägartabell */
.agare-tbl { width: 100%; border-collapse: collapse; font-size: 0.88rem; margin-top: 8px; }
.agare-tbl th { text-align: left; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase; color: var(--text-dim); padding: 10px 8px; border-bottom: 1px solid var(--line-strong); font-family: var(--mono); }
.agare-tbl th.n, .agare-tbl td.n { text-align: right; font-family: var(--mono); font-feature-settings: 'tnum' 1, 'zero' 1; }
.agare-tbl td { padding: 11px 8px; border-bottom: 1px solid var(--line); color: var(--text); }
.agare-tbl tr.total td { font-weight: 600; color: var(--white); border-top: 2px solid var(--line-strong); padding-top: 14px; }
.agare-tbl tr.other td { color: var(--text-dim); border-top: 1px solid var(--line); }
.agare-tbl td.votes { color: var(--white); font-weight: 600; }


/* ============================================================
   Flyttat från index.html 2026-05-29 (P1-9: CSS centraliserad).
   Startsidans sektioner: triggers, pitch, ms-channels, verksamhet, ways.
   ============================================================ */
/* Mal grupps-kanaler under tidslinjen */
    .ms-channels {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
      margin-top: 36px; padding-top: 32px;
      border-top: 1px solid var(--line);
    }
    @media (max-width: 880px) { .ms-channels { grid-template-columns: 1fr; } }
    .ms-ch {
      display: flex; flex-direction: column;
      padding: 18px 22px; background: transparent;
      border: 1px solid var(--line); border-radius: 6px;
      text-decoration: none; transition: all 0.18s;
    }
    .ms-ch:hover { border-color: var(--gold); background: rgba(197,160,89,0.04); }
    .ms-ch-roll {
      font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--text-low); margin-bottom: 6px;
    }
    .ms-ch-where {
      color: var(--text); font-size: 1rem; font-weight: 500;
    }

.triggers { padding: 56px 0 24px; }
      .triggers-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
      .triggers-kicker { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 18px; }
      .triggers-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
      .trigger { display: block; padding: 22px 24px; background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: 6px; text-decoration: none; transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease; }
      .trigger:hover { transform: translateY(-2px); background: rgba(197,160,89,0.04); border-color: rgba(197,160,89,0.32); border-left-color: var(--gold-light); }
      .t-when { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 8px; font-variant-numeric: tabular-nums; }
      .t-h { font-size: 1.05rem; font-weight: 500; color: var(--text); margin-bottom: 6px; letter-spacing: -0.01em; line-height: 1.3; }
      .t-meta { font-size: 0.86rem; color: var(--text-dim); line-height: 1.55; }
      @media (min-width: 880px) {
        .triggers-wrap { padding: 0 32px; }
        .triggers-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
      }

.pitch { padding: 96px 0 80px; }
      .pitch-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
      .pitch-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
      .pitch-text { max-width: none; }
      .pitch-kicker { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 22px; }
      .pitch-lead { font-size: clamp(1.20rem, 2.2vw, 1.55rem); font-weight: 300; line-height: 1.55; color: var(--text); letter-spacing: -0.012em; max-width: 48ch; margin: 0; }
      .pitch-lead em { font-style: normal; color: var(--gold); font-weight: 400; }
      .pitch-data { margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 0; }
      .pitch-row { padding: 18px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr; gap: 6px; }
      .pitch-row:first-child { border-top: 1px solid var(--line); }
      .pitch-row dt { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-low); margin: 0; }
      .pitch-row dd { margin: 0; color: var(--text); font-size: 1rem; font-weight: 400; display: flex; flex-direction: column; gap: 3px; }
      .pitch-row dd .meta { font-family: var(--mono); font-size: 10.5px; color: var(--text-low); letter-spacing: 0.02em; }
      @media (min-width: 900px) {
        .pitch-wrap { padding: 0 32px; }
        .pitch-grid { grid-template-columns: 60fr 40fr; gap: 80px; align-items: start; }
      }

.verksamhet-section { padding: 112px 0 96px; }
      .vk-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
      .vk-flagship { display: block; background: var(--surface); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; text-decoration: none; transition: border-color 0.24s, transform 0.24s; position: relative; }
      .vk-flagship:hover { border-color: rgba(197,160,89,0.35); transform: translateY(-2px); }
      .vk-flagship-img { aspect-ratio: 16 / 9; overflow: hidden; background: #1B3028; }
      .vk-flagship-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
      .vk-flagship:hover .vk-flagship-img img { transform: scale(1.02); }
      .vk-flagship-body { padding: 30px 32px 32px; }
      .vk-label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 14px; }
      .vk-h { font-size: clamp(1.5rem, 2.6vw, 1.95rem); font-weight: 300; color: var(--text); letter-spacing: -0.018em; line-height: 1.2; margin: 0 0 14px; }
      .vk-text { font-size: 1rem; color: var(--text-dim); line-height: 1.65; margin: 0; max-width: 56ch; }
      .vk-secondary { display: flex; flex-direction: column; }
      .vk-side { display: block; padding: 22px 0; background: transparent; border: none; border-bottom: 1px solid var(--line); text-decoration: none; transition: padding-left 0.22s ease; position: relative; }
      .vk-side:first-child { border-top: 1px solid var(--line); }
      .vk-side:hover { padding-left: 8px; }
      .vk-h-side { font-size: 1.12rem; font-weight: 400; color: var(--text); margin: 6px 0 8px; letter-spacing: -0.01em; line-height: 1.25; }
      .vk-text-side { font-size: 0.9rem; color: var(--text-dim); line-height: 1.55; margin: 0; max-width: 36ch; }
      .vk-flagship::after, .vk-side::after { display: none !important; }
      @media (min-width: 980px) {
        .vk-grid { grid-template-columns: 2fr 1fr; gap: 48px; align-items: stretch; }
        .vk-secondary { justify-content: flex-start; padding-top: 0; }
        .vk-side { padding: 26px 0; }
        .vk-side:first-child { border-top: none; }
      }

.ways-section { padding: 72px 0 96px; background: transparent; }
      .ways-head { max-width: var(--max-w); margin: 0 auto 32px; padding: 0 24px; }
      .ways-kicker { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
      .ways-h { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 200; color: var(--text); letter-spacing: -0.022em; margin: 0; }
      .ways-list { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
      .way-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 22px 36px 22px 0;
        border-top: 1px solid var(--line);
        text-decoration: none;
        position: relative;
        transition: padding-left 0.22s ease;
      }
      .way-row:last-child { border-bottom: 1px solid var(--line); }
      .way-row:hover { padding-left: 10px; background: linear-gradient(90deg, rgba(197,160,89,0.04) 0%, transparent 60%); }
      .way-roll { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.20em; text-transform: uppercase; color: var(--text-low); }
      .way-dest { font-size: 1.4rem; font-weight: 300; color: var(--text); letter-spacing: -0.018em; line-height: 1.2; }
      .way-meta { font-size: 0.92rem; color: var(--text-dim); line-height: 1.5; margin-top: 4px; }
      .way-arrow { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-family: var(--mono); font-size: 1.3rem; color: var(--gold); opacity: 0.5; transition: opacity 0.22s, transform 0.22s; }
      .way-row:hover .way-arrow { opacity: 1; transform: translateY(-50%) translateX(5px); }
      @media (min-width: 880px) {
        .ways-head { padding: 0 32px; }
        .ways-list { padding: 0 32px; }
        .way-row {
          grid-template-columns: 1fr 1.4fr 1.4fr;
          gap: 32px;
          align-items: baseline;
          padding: 26px 48px 26px 0;
        }
        .way-meta { margin-top: 0; }
      }


/* ===== Designpaket 1, Codex designgenomgang 2026-06-03, Magnus-godkant. Motionbas, reveal, hero-entrance, hover, konsekvens. ===== */
:root {
  --motion-fast: 160ms;
  --motion-medium: 320ms;
  --motion-slow: 540ms;
  --ease-lgold: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Diskret scroll-reveal. Klassen .reveal satts av nav.js (progressiv forbattring: utan JS visas allt direkt). */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity var(--motion-slow) var(--ease-lgold), transform var(--motion-slow) var(--ease-lgold); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Hero-entrance: en mjuk intoning av kicker, rubrik, lede. */
@keyframes lgoldHeroIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.hero-content > *, .sth-hero-content > *, .press-hero .wrap > *, .karta-text > *, .ob-hero .ob-wrap > *, .kt-hero .kt-wrap > * {
  animation: lgoldHeroIn 540ms var(--ease-lgold) both;
}
.hero-content > *:nth-child(2), .sth-hero-content > *:nth-child(2), .press-hero .wrap > *:nth-child(2), .karta-text > *:nth-child(2), .ob-hero .ob-wrap > *:nth-child(2), .kt-hero .kt-wrap > *:nth-child(2) { animation-delay: 70ms; }
.hero-content > *:nth-child(3), .sth-hero-content > *:nth-child(3), .press-hero .wrap > *:nth-child(3), .karta-text > *:nth-child(3), .ob-hero .ob-wrap > *:nth-child(3), .kt-hero .kt-wrap > *:nth-child(3) { animation-delay: 140ms; }

/* Standardiserad hover: liten forflyttning, svag opacity. */
.card-link, .way-row, .vk-side, .row, .bildbank-item, .dok-card {
  transition: opacity var(--motion-fast) var(--ease-lgold), transform var(--motion-fast) var(--ease-lgold), border-color var(--motion-fast) var(--ease-lgold);
}
.card-link:hover, .way-row:hover, .vk-side:hover, .row:hover, .bildbank-item:hover, .dok-card:hover {
  opacity: 0.96; transform: translateY(-1px);
}

/* IR-ton pa kort: 8px radius, lagre lyft. */
.card, .stat, .chart-card, .tillstand-card, .tales-card, .bildbank-item, .dok-card, .st-person, .em-card, .kt-card, .ob-mal-card {
  border-radius: 8px;
}
.card:hover, .stat:hover, .tillstand-card:hover, .bildbank-item:hover, .tales-card:hover, .dok-card:hover {
  transform: translateY(-2px);
}

/* Aktiv navmarkering med subtil bakgrund. */
.nav-links a[aria-current="page"] {
  color: var(--gold);
  background: rgba(197,160,89,0.08);
  padding-left: 10px; padding-right: 10px;
  border-radius: 4px;
}

/* Footerluft pa mobil. */
@media (max-width: 720px) {
  .footer-signature { padding: 48px 0 40px; margin-bottom: 32px; }
  .footer-grid { gap: 30px; margin-bottom: 38px; }
}

/* Gemensam mono-rytm for datum. */
.row-date, .st-arc-year, .em-card .date, .rap-date {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

/* Reducerad motion: fullgott statiskt lage. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-bg { animation: none; }
  .hero-content > *, .sth-hero-content > *, .press-hero .wrap > *, .karta-text > *, .ob-hero .ob-wrap > *, .kt-hero .kt-wrap > * { animation: none; }
  .reveal, .reveal.is-visible { opacity: 1; transform: none; transition: none; }
  .card-link, .way-row, .vk-side, .row, .bildbank-item, .dok-card, .card, .stat, .tillstand-card, .tales-card { transition: none; }
}

/* ===== Designpaket 2 (2026-06-03): kursgrafens entre ===== */
/* Dampat intrade for grafen vid sidladdning. Animerar containern, inte datapunkterna. */
/* "both" ger statisk slutbild om animationer inte stods. */
.chart-svg { animation: lgoldChartIn var(--motion-slow) var(--ease-lgold) both; }
@keyframes lgoldChartIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .chart-svg { animation: none; }
}

/* ===== Brand v1.7: Spectral rubrikröst (utrullad 2026-06-17) ===== */
h1, h2, h3, .hero-headline, .hero-title, .sec-title, .section-title {
  font-family: 'Spectral', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -.005em;
}
.hero-headline, .hero-title { font-weight: 400; }
h1 strong, h2 strong, .hero-headline strong { font-weight: 600; }
h1 em, h2 em, .hero-headline em, .hero-title em { font-style: italic; color: var(--gold-light, #D4B87A); }

/* v1.7: display-rubriker som är div/klass (inte h-tagg) till Spectral. Siffer-element (.stat-value) är JetBrains Mono sedan 2026-06-17, konsekvent med chart-card och alla andra tal. */
.hero-h1, .h2, .ir-h1, .footer-mantra { font-family: 'Spectral', Georgia, 'Times New Roman', serif; }
