:root {
  --bg: #0d0f14;
  --paper: #161922;
  --ink: #f4f1ea;
  --mute: #a4abb6;
  --line: #2a303a;
  --red: #e23a2c;
  --red-deep: #c02414;
  --dark: #07080c;
  --dark-2: #1c202a;
  --light: #ffffff;
  --max: 80rem;
  --sans: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  --shadow-hot: 0 14px 30px rgba(226, 58, 44, 0.32);
  --radius: 1.15rem;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  height: 100%;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

#innehall {
  flex: 1 0 auto;
}

.foot {
  flex-shrink: 0;
  margin-top: auto;
}

body.lb-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input { font: inherit; }

.visually-hidden,
.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 50;
  background: var(--ink);
  color: #fff;
  padding: 0.5rem 0.8rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}
.eyebrow--light { color: #f0c2b6; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0 1.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: none;
  color: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn--solid {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-hot);
}
.btn--solid:hover,
.btn--solid:focus-visible {
  background: #ff4d3d;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255, 77, 61, 0.4);
}
.btn--ghost {
  border-color: rgba(255, 255, 255, 0.62);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: #fff;
  color: #111318;
  border-color: #fff;
  transform: translateY(-2px);
}

.more {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ff6a5c;
}
.more:hover,
.more:focus-visible { color: #fff; }
.more--light { color: #f0c2b6; }
.more--light:hover { color: #fff; }

/* Header */
.mast {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(20, 22, 28, 0.04);
}
.mast__bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 5.5rem;
  padding: 0.55rem clamp(1.1rem, 3.5vw, 3rem);
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  gap: 0.32rem;
  line-height: 1;
  text-decoration: none;
}
img.brand__word {
  display: block;
  height: 2.42rem;
  width: auto;
  max-width: min(14.5rem, 52vw);
}
.brand:hover .brand__word,
.brand:focus-visible .brand__word {
  filter: brightness(1.12);
}
.brand__tag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.22rem 0.42rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b8bfc9;
}
.brand__tag span + span::before {
  content: "·";
  margin-right: 0.42rem;
  color: #ff6a5c;
  letter-spacing: 0;
}
.nav { margin-left: auto; }
.nav .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav .menu > li { position: relative; }
.nav .menu > li > a {
  display: flex;
  align-items: center;
  padding: 0.85rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #f4f1ea;
}
.nav .menu > li > a:hover,
.nav .menu > li > a:focus-visible { color: #ff6a5c; }
.has-panel > a::after {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  margin-left: 0.4rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-0.12rem) rotate(45deg);
  opacity: 0.9;
}

.mast__tools {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.tool {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}
.tool:hover { color: var(--red); }
.burger {
  display: none;
  border: 0;
  background: none;
  padding: 0.4rem 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f4f1ea;
  cursor: pointer;
}
.burger:hover { color: #ff6a5c; }

.mega {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  width: min(52rem, 86vw);
  grid-template-columns: 1.35fr 0.85fr;
  background: #1a1e28;
  border: 1px solid #3a4150;
  border-radius: 1rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  z-index: 45;
}
.has-panel:hover > .mega,
.has-panel:focus-within > .mega { display: grid; }

.mega__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.1rem 1.4rem;
  padding: 1.3rem 1.4rem;
  max-height: 26rem;
  overflow: auto;
}
.mega__links a {
  display: block;
  padding: 0.38rem 0;
  font-size: 0.95rem;
  text-decoration: none;
  color: #f4f1ea;
}
.mega__links a:hover { color: #ff6a5c; }
.mega__art {
  margin: 0;
  position: relative;
  min-height: 16rem;
  overflow: hidden;
}
.mega__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mega__art figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(transparent, rgba(7, 9, 13, 0.72));
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 5.5rem);
  color: #fff;
  overflow: hidden;
}
.hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}
.hero__slide.is-on {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.hero__media,
.hero__veil { position: absolute; inset: 0; }
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero__slide.is-on img { transform: scale(1); }
.hero__veil {
  background:
    linear-gradient(105deg, rgba(7, 9, 13, 0.8) 0%, rgba(7, 9, 13, 0.34) 48%, rgba(7, 9, 13, 0.1) 100%),
    linear-gradient(180deg, rgba(7, 9, 13, 0.12) 30%, rgba(7, 9, 13, 0.58) 100%);
}
.hero__copy {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 5rem 0 5.4rem;
  max-width: 46rem;
  margin-left: clamp(1.2rem, 6vw, 6rem);
}
.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(3.2rem, 8vw, 6.6rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.9;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.hero__lead {
  max-width: 34rem;
  margin: 0 0 1.8rem;
  font-size: 1.12rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.hero__ui {
  position: absolute;
  right: clamp(1rem, 4vw, 2.4rem);
  bottom: 1.5rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.hero__arrow,
.hero__dot {
  border: 0;
  cursor: pointer;
  color: #fff;
}
.hero__arrow {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  font-size: 1.5rem;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}
.hero__arrow:hover,
.hero__arrow:focus-visible { background: #ff4d3d; }
.hero__dots { display: flex; gap: 0.4rem; }
.hero__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  padding: 0;
  transition: width 0.2s ease, background 0.2s ease;
}
.hero__dot:hover { background: #fff; }
.hero__dot.is-on {
  width: 1.35rem;
  background: #fff;
}

/* Page hero */
.page-hero {
  position: relative;
  min-height: 62vh;
  color: #fff;
  display: flex;
  align-items: flex-end;
}
.page-hero__media,
.page-hero__veil { position: absolute; inset: 0; }
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__veil {
  background: linear-gradient(180deg, rgba(7, 9, 13, 0.05) 20%, rgba(7, 9, 13, 0.72) 100%);
}
.page-hero__copy {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 3.5rem 0 2.6rem;
}
.page-hero h1 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.page-plain {
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 3.6rem 0 1.2rem;
}
.page-plain h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}
.page-plain .lead,
.page-plain .meta {
  max-width: 38rem;
  margin: 1rem 0 0;
  color: var(--mute);
}

/* Bands */
.band {
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 5rem 0 4.4rem;
}
.band--flush { padding-top: 1.2rem; }
.band--end { padding-bottom: 2.2rem; }
.band--dark {
  width: 100%;
  max-width: none;
  padding-left: max(1.2rem, calc((100% - var(--max)) / 2));
  padding-right: max(1.2rem, calc((100% - var(--max)) / 2));
  background: var(--dark);
  color: #f4f2ee;
}
.band__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.4rem;
  margin-bottom: 1.1rem;
}
.band h2,
.intro h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.98;
}
.band__dek {
  margin: 0 0 1.8rem;
  max-width: 36rem;
  color: var(--mute);
}

.intro { padding-top: 5.4rem; }
.intro h2 { max-width: 14ch; margin-bottom: 1.8rem; }
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  max-width: 52rem;
  color: var(--mute);
  font-size: 1.08rem;
}
.intro__grid p { margin: 0; }

/* Mosaic / tiles */
.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.8rem;
}
.tile {
  position: relative;
  grid-column: span 4;
  min-height: 17.5rem;
  overflow: hidden;
  background: #d7dbe2;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.mosaic:not(.mosaic--even) > .tile:nth-child(1) {
  grid-column: span 7;
  min-height: 30rem;
}
.mosaic:not(.mosaic--even) > .tile:nth-child(2) {
  grid-column: span 5;
  min-height: 30rem;
}
.mosaic--even > .tile {
  grid-column: span 4;
  min-height: 18.5rem;
}
.tile__hit {
  display: block;
  height: 100%;
  text-decoration: none;
  color: #fff;
}
.tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.tile:hover img { transform: scale(1.05); }
.tile__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(7, 9, 13, 0.78) 100%);
}
.tile__name {
  position: absolute;
  left: 1rem;
  right: 3.2rem;
  bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.tile__zoom {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.3rem;
  height: 2.3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 9, 13, 0.38);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}
.tile__zoom:hover,
.tile__zoom:focus-visible { background: #ff4d3d; }

.mosaic--plain {
  grid-template-columns: repeat(2, 1fr);
  margin: 1.8rem 0;
}
.mosaic--plain .mosaic__shot {
  display: block;
  overflow: hidden;
  background: #d7dbe2;
  min-height: 14rem;
}
.mosaic--plain img {
  width: 100%;
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
}

/* Spotlight */
.spotlight {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 36rem;
  background: var(--dark-2);
  color: #f4f2ee;
  box-shadow: var(--shadow);
}
.spotlight__media { min-height: 22rem; overflow: hidden; }
.spotlight__media a,
.spotlight__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.spotlight__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4.4rem);
}
.spotlight__copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}
.spotlight__copy p {
  margin: 0 0 1.6rem;
  color: #c5c8ce;
  font-size: 1.05rem;
}

/* Lists */
.rows {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rows a {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.2rem;
  padding: 1.05rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
}
.band:not(.band--dark) .rows a {
  border-top-color: var(--line);
}
.rows li:last-child a { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.band:not(.band--dark) .rows li:last-child a { border-bottom-color: var(--line); }
.rows time {
  color: var(--mute);
  font-size: 0.86rem;
  font-variant-numeric: tabular-nums;
}
.rows a:hover span { color: var(--red); }

.soft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.soft-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.soft-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(20, 22, 28, 0.16);
  border-color: #ff6a5c;
}
.soft-card:hover strong { color: #ff6a5c; }
.soft-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  background: #d7dbe2;
  overflow: hidden;
}
.soft-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.soft-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.9rem 1rem 1.05rem;
}
.soft-card time {
  color: var(--mute);
  font-size: 0.78rem;
}
.soft-card strong {
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

/* Article */
.prose {
  width: min(44rem, calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 3rem 0 5.5rem;
  font-size: 1.12rem;
  line-height: 1.7;
}
.prose p { margin: 0 0 1.05em; }
.prose h2,
.prose h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 2.3em 0 0.7em;
  scroll-margin-top: 6rem;
}
#Trädet,
#Bilder,
[id] {
  scroll-margin-top: 6rem;
}
.prose a { color: var(--red); }
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.96rem;
  margin: 1.5rem 0;
}
.prose th,
.prose td {
  border-bottom: 1px solid var(--line);
  padding: 0.45rem 0.55rem 0.45rem 0;
  vertical-align: top;
}
.prose audio { width: 100%; margin: 0.5rem 0 1rem; }
.prose .shot { margin: 1.6rem 0; }
.prose .shot img { width: 100%; }
.prose .shot a { display: block; }
.shot--lead {
  width: min(44rem, calc(100% - 2.4rem));
  margin: 0 auto 0.4rem;
}
.shot--lead a { display: block; }
.shot--lead img,
.shot--gallery img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.shot--gallery {
  position: relative;
  margin: 1.6rem 0;
}
.shot--gallery a { display: block; }
.shot__count {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(7, 9, 13, 0.72);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  pointer-events: none;
}
.note {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 1rem 0;
  margin: 1.7rem 0;
}
.embed {
  position: relative;
  margin: 1.6rem 0;
  padding-top: 56.25%;
}
.embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.find {
  display: flex;
  gap: 0.45rem;
  margin-top: 1.4rem;
  max-width: 34rem;
}
.find label { flex: 1; }
.find input {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  padding: 0.85rem 1rem;
  border-radius: 999px;
}
.find input::placeholder { color: #8b929c; }
.find input:focus {
  outline: 2px solid rgba(226, 58, 44, 0.45);
  outline-offset: 1px;
  border-color: #ff6a5c;
}
.find button {
  border: 0;
  background: var(--red);
  color: #fff;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.find button:hover,
.find button:focus-visible { background: #ff4d3d; }

.find-toggle {
  display: inline-flex;
  align-items: center;
  border: 0;
  background: none;
  padding: 0.4rem 0.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f4f1ea;
  cursor: pointer;
}
.find-toggle:hover,
.find-toggle:focus-visible,
.find-toggle[aria-expanded="true"] { color: #ff6a5c; }

.find-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: #12151c;
  padding: 0.85rem clamp(1.1rem, 3.5vw, 3rem) 1rem;
}
.find-open .find-panel { display: block; }
.find--mast {
  max-width: 44rem;
  margin: 0 auto;
}
.find--mast input { min-height: 3rem; }
.find--hero {
  max-width: 40rem;
}
.find--hero input {
  min-height: 3.25rem;
  font-size: 1.02rem;
}

.find-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.35rem 0 0.2rem;
}
.find-filters a {
  padding: 0.42rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #d7dbe2;
}
.find-filters a.is-on,
.find-filters a:hover,
.find-filters a:focus-visible {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.find-hits { margin: 0; }
.find-hit {
  display: grid;
  grid-template-columns: 7.6rem 1fr;
  gap: 1.05rem 1.25rem;
  align-items: start;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
}
.find-hit--plain { grid-template-columns: 1fr; }
.find-hit__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 0.75rem;
  background: var(--dark-2);
}
.find-hit__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.find-hit__kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff6a5c;
}
.find-hit__kicker time {
  color: var(--mute);
  letter-spacing: 0.04em;
  font-weight: 600;
}
.find-hit strong {
  display: block;
  margin: 0.28rem 0 0.35rem;
  font-size: 1.18rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.find-hit p {
  margin: 0;
  color: var(--mute);
  font-size: 0.94rem;
  line-height: 1.45;
}
.find-hit:hover strong,
.find-hit:focus-visible strong { color: #ff6a5c; }
.page-plain__actions { margin-top: 1.5rem; }

/* Footer */
.foot {
  background: var(--dark);
  color: #9aa1ab;
  border-top: 1px solid var(--line);
  padding: 0.85rem clamp(1.1rem, 3.5vw, 3rem);
}
.foot__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem 2rem;
  width: min(var(--max), 100%);
  margin: 0 auto;
  flex-wrap: wrap;
}
.foot .brand { margin: 0; }
.foot img.brand__word { height: 1.55rem; }
.foot .brand__tag { display: none; }
.foot__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.15rem;
}
.foot__nav a {
  font-size: 0.82rem;
  text-decoration: none;
}
.foot__nav a:hover,
.foot__nav a:focus-visible { color: #ff6a5c; }
.foot .brand:hover .brand__word { filter: brightness(1.14); }
.foot__copy {
  margin: 0;
  font-size: 0.8rem;
}

/* Lightbox */
.lb {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 9, 13, 0.94);
  padding: 3.5rem 3.5rem 4.5rem;
}
.lb[hidden] { display: none; }
.lb__stage { margin: 0; text-align: center; }
.lb__stage img {
  max-width: min(92vw, 1400px);
  max-height: 82vh;
  object-fit: contain;
  margin: 0 auto;
}
.lb__stage figcaption {
  margin-top: 0.8rem;
  color: #d7d9de;
  font-size: 0.92rem;
}
.lb__x,
.lb__nav {
  position: absolute;
  border: 0;
  background: none;
  color: #fff;
  cursor: pointer;
}
.lb__x {
  top: 1rem;
  right: 1.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lb__x:hover,
.lb__nav:hover { color: #ff6a5c; }
.lb__nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.6rem;
  padding: 0.4rem 0.7rem;
}
.lb__nav--prev { left: 0.4rem; }
.lb__nav--next { right: 0.4rem; }

.pager { margin-top: 2rem; }

.speed {
  width: min(72rem, calc(100% - 2.4rem));
  margin: 0 auto 4.5rem;
  min-height: 32rem;
  height: min(70vh, 44rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0b0d12;
  box-shadow: var(--shadow);
}
.speed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #0b0d12;
}

@media (max-width: 980px) {
  .burger { display: block; }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.4rem 1rem 1rem;
    margin: 0;
  }
  .nav-open .nav { display: block; }
  .nav .menu { flex-direction: column; }
  .mega {
    display: none;
    position: static;
    width: auto;
    box-shadow: none;
    border: 0;
    background: transparent;
  }
  .has-panel.is-open > .mega { display: block; }
  .mega__art { display: none; }
  .mega__links {
    grid-template-columns: 1fr;
    max-height: none;
    padding: 0.2rem 0 0.6rem 0.8rem;
  }
  .intro__grid,
  .spotlight { grid-template-columns: 1fr; }
  .soft-grid { grid-template-columns: 1fr 1fr; }
  .mosaic > .tile,
  .mosaic:not(.mosaic--even) > .tile:nth-child(1),
  .mosaic:not(.mosaic--even) > .tile:nth-child(2),
  .mosaic--even > .tile {
    grid-column: span 6;
    min-height: 16rem;
  }
  .hero { min-height: 86vh; }
  .hero__copy { margin-left: 1.2rem; padding-bottom: 4.2rem; }
}

@media (max-width: 640px) {
  .mosaic > .tile,
  .mosaic:not(.mosaic--even) > .tile:nth-child(1),
  .mosaic:not(.mosaic--even) > .tile:nth-child(2),
  .mosaic--even > .tile {
    grid-column: span 12;
    min-height: 15rem;
  }
  .mosaic--plain,
  .soft-grid { grid-template-columns: 1fr; }
  img.brand__word { height: 2.05rem; }
  .hero h1 { font-size: clamp(2.6rem, 14vw, 3.8rem); }
  .find-hit { grid-template-columns: 5.6rem 1fr; }
}
