@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/barlow-400.b0a8ad37ac.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/barlow-500.cd759df8ef.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/barlow-600.4b52ddd483.woff2") format("woff2");
}
@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/bebas-neue-400.a7c90c8924.woff2") format("woff2");
}
@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("fonts/newsreader-400.6e4f2958c3.woff2") format("woff2");
}
@font-face {
  font-family: "Newsreader";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/newsreader-400-italic.2bf0dbb1a4.woff2") format("woff2");
}

:root {
  --paper: #F2F3F1; --panel: #E7EAE8; --ink: #16191D; --ink-2: #3A434A; --mist: #6E777D; --line: #D6DBD9;
  --storm: #263038; --storm-ink: #EEF1EF; --storm-mist: #A9B3B9; --signal: #D23A21; --photo: #34414B; --photo-2: #1E272E;
  --display: "Bebas Neue", "Oswald", Impact, "Arial Narrow", sans-serif;
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Barlow", "Helvetica Neue", Arial, sans-serif;
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #15191D; --panel: #1E252A; --ink: #ECEEEB; --ink-2: #C5CBCF; --mist: #98A2A8; --line: #2B343A;
    --storm: #0E1316; --storm-ink: #EEF1EF; --storm-mist: #98A2A8; --signal: #E8543B; --photo: #2A343C; --photo-2: #171E23; color-scheme: dark;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--serif); font-size: 18px; line-height: 1.55; }
a { color: inherit; text-decoration: none; }
a:hover, a:focus-visible { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
:focus-visible { outline: 2px solid var(--signal); outline-offset: 3px; }
h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.label { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--mist); }
.display { font-family: var(--display); line-height: .92; letter-spacing: .01em; }
.num { font-variant-numeric: tabular-nums; }
section { padding: 64px 0; border-top: 1px solid var(--line); }
.sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.sec-head h2 { font-family: var(--display); font-size: 58px; line-height: 1; }
.sec-head .more { font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--ink-2); white-space: nowrap; }

/* sidhuvud */
header.nav { position: sticky; top: 0; z-index: 20; background: var(--paper); border-bottom: 1px solid var(--line); transition: transform .28s ease; }
header.nav.hidden { transform: translateY(-100%); }
header.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 24px; }
.brand { display: flex; align-items: baseline; gap: 10px; }
.brand .name { font-family: var(--display); font-size: 26px; letter-spacing: .04em; }
.brand .tag { font-family: var(--sans); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--mist); }
nav ul { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; font-family: var(--sans); font-size: 14px; font-weight: 500; }
nav .cta { padding: 8px 14px; border: 1.5px solid var(--ink); border-radius: 2px; }
nav .cta:hover { text-decoration: none; background: var(--ink); color: var(--paper); }
.menu-btn { display: none; font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 8px 12px; border: 1.5px solid var(--ink); background: transparent; color: var(--ink); border-radius: 2px; }
@media (max-width: 900px) {
  .menu-btn { display: inline-block; }
  header.nav .wrap { flex-wrap: wrap; height: auto; min-height: 60px; padding-top: 10px; padding-bottom: 10px; }
  nav#menu { display: none; width: 100%; }
  nav#menu.open { display: block; }
  nav#menu ul { flex-direction: column; gap: 0; padding: 8px 0 4px; border-top: 1px solid var(--line); margin-top: 10px; }
  nav#menu ul li { display: block !important; }
  nav#menu ul li a { display: block; padding: 12px 0; font-size: 17px; border-bottom: 1px solid var(--line); }
  nav#menu ul li a.cta { border: 0; padding: 14px 0; color: var(--signal); font-weight: 600; }
  nav#menu ul li a.cta:hover { background: transparent; color: var(--signal); }
}
@media (prefers-reduced-motion: reduce) { header.nav { transition: none; } html { scroll-behavior: auto; } }

/* foto */
.photo { background: var(--photo); position: relative; overflow: hidden; }
.photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.photo:hover img { transform: scale(1.035); }
@media (prefers-reduced-motion: reduce) { .photo img { transition: none; } .photo:hover img { transform: none; } }
.photo .cap { position: absolute; left: 12px; bottom: 12px; font-family: var(--sans); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--storm-ink); background: rgba(14,19,22,.72); padding: 4px 7px; }

/* hjälten */
.hero { position: relative; background: #1c2126; color: var(--storm-ink); padding: 0; border-top: 0; overflow: hidden; min-height: 640px; display: grid; align-items: end; }
.hero .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 68% 30%; }
.hero .scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,22,26,.92) 0%, rgba(18,22,26,.55) 38%, rgba(18,22,26,0) 70%), linear-gradient(to right, rgba(18,22,26,.55) 0%, rgba(18,22,26,0) 55%); }
.grain::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .11; mix-blend-mode: overlay; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 256px 256px; }
.hero .wrap { position: relative; z-index: 1; width: 100%; display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: end; padding-top: 220px; padding-bottom: 44px; }
.hero-txt .label { color: var(--storm-mist); }
.hero h1 { font-family: var(--display); font-size: clamp(84px, 11vw, 168px); line-height: .84; margin-top: 10px; letter-spacing: .005em; }
.hero h1 .line { display: block; animation: rise .8s cubic-bezier(.2,.7,.2,1) both; }
.hero h1 .line:nth-child(2) { animation-delay: .08s; }
.hero h1 small { display: block; font-size: .36em; color: var(--storm-mist); letter-spacing: .08em; margin-top: 8px; animation: rise .8s .18s cubic-bezier(.2,.7,.2,1) both; }
.hero .lede { font-size: 20px; max-width: 34ch; margin-top: 18px; color: #E4E8E6; }
@keyframes rise { from { transform: translateY(22px); opacity: 0; } to { transform: none; opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .hero h1 .line, .hero h1 small { animation: none; } }
.fight { background: rgba(14,19,22,.66); border: 1px solid rgba(255,255,255,.14); padding: 20px 22px; font-family: var(--sans); display: grid; gap: 12px; }
.fight .k { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--storm-mist); display: flex; justify-content: space-between; }
.fight .k b { color: var(--signal); font-weight: 600; }
.fight .ev { font-family: var(--display); font-size: 34px; line-height: .95; }
.fight .ev small { display: block; font-family: var(--sans); font-size: 14px; color: var(--storm-mist); margin-top: 6px; line-height: 1.4; }
.fight .btns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.fight .btn { padding: 10px 12px; font-size: 14px; border: 1.5px solid var(--storm-ink); background: var(--storm-ink); color: #16191D; }
.fight .btn.quiet { background: transparent; color: var(--storm-ink); }
.fight .btn:hover { background: var(--signal); border-color: var(--signal); color: #fff; }
.fight .last { border-top: 1px solid rgba(255,255,255,.14); padding-top: 10px; font-size: 14px; color: var(--storm-mist); }
.fight .last b { color: var(--storm-ink); font-weight: 600; }
.fight[data-fight-night-mode="matchdag"] .btns, .fight[data-fight-night-mode="efter"] .k { color: var(--signal); }

/* senaste */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 28px; }
.post { border: 1px solid var(--line); padding: 16px; font-family: var(--sans); }
.post time { display: block; font-size: 12px; color: var(--mist); margin-bottom: 8px; }
.post p { font-size: 15px; line-height: 1.5; }
.empty { border: 1px dashed var(--line); padding: 18px; color: var(--mist); font-family: var(--sans); font-size: 14px; }

/* rekord */
.record { display: grid; grid-template-columns: 5fr 7fr; gap: 48px; align-items: start; }
.figs { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 32px; }
.fig .display { font-size: 84px; line-height: .9; }
.fig .fig-l { margin-top: 6px; }
.fig .src { font-family: var(--sans); font-size: 12px; color: var(--mist); margin-top: 4px; }
.titles { list-style: none; margin: 0; padding: 0; }
.titles li { display: grid; grid-template-columns: 64px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.titles li:first-child { border-top: 1px solid var(--line); }
.titles .yr { font-family: var(--sans); font-weight: 600; color: var(--ink-2); }
.titles .t { font-size: 18px; }
.titles .t small { display: block; font-family: var(--sans); font-size: 13px; color: var(--mist); margin-top: 2px; }

/* berättelsen */
.story { display: grid; grid-template-columns: 5fr 7fr; gap: 48px; }
.story .photo { aspect-ratio: 3 / 4; }
.story .body { max-width: 62ch; font-size: 19px; }
.story .body p + p { margin-top: 1em; }
.story blockquote { margin: 28px 0; padding-left: 20px; border-left: 3px solid var(--signal); font-style: italic; font-size: 24px; line-height: 1.3; }
.story-page .body { max-width: 62ch; font-size: 19px; margin: 0 auto; }
.story-page .body p + p { margin-top: 1em; }

/* partners */
.partners { display: grid; grid-template-columns: 7fr 5fr; gap: 48px; }
.logos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.logo { border: 1px solid var(--line); height: 92px; display: grid; place-items: center; padding: 14px; }
.logo img { max-height: 60px; width: auto; }
.work { background: var(--panel); padding: 28px; }
.work h3 { font-family: var(--display); font-size: 34px; }
.work p { font-size: 17px; margin-top: 10px; }
.work ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; font-family: var(--sans); font-size: 15px; }
.work li a { border-bottom: 1.5px solid var(--ink); }
.work li a:hover { text-decoration: none; color: var(--signal); border-color: var(--signal); }

/* fråga */
.ask form { display: grid; gap: 12px; max-width: 640px; }
.ask textarea, .ask input[type="text"] { font: inherit; font-family: var(--sans); font-size: 15px; padding: 12px 14px; border: 1px solid var(--line); background: var(--panel); color: var(--ink); border-radius: 2px; }
.ask textarea { min-height: 100px; resize: vertical; }
.ask button { justify-self: start; padding: 10px 20px; border: 1.5px solid var(--ink); background: var(--ink); color: var(--paper); border-radius: 2px; font-family: var(--sans); font-weight: 600; font-size: 14px; }
.ask button:hover { background: var(--signal); border-color: var(--signal); }
.ask button:disabled, .ask textarea:disabled, .ask input:disabled { opacity: .5; cursor: not-allowed; }
.ask .empty { margin-top: 14px; max-width: 640px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

footer { background: var(--storm); color: var(--storm-ink); padding: 48px 0 32px; }
footer .wrap { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
footer .label { color: var(--storm-mist); }
footer ul { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 8px; font-family: var(--sans); font-size: 15px; }
footer .fine { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.15); padding-top: 16px; font-family: var(--sans); font-size: 13px; color: var(--storm-mist); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

@media (max-width: 900px) {
  body { font-size: 17px; }
  .hero { min-height: 0; }
  .hero .wrap { grid-template-columns: 1fr; padding-top: 300px; gap: 24px; }
  .hero .bg { object-position: 60% 20%; }
  .hero h1 { font-size: clamp(64px, 18vw, 110px); }
  .fight .ev { font-size: 28px; }
  .posts, .logos { grid-template-columns: 1fr 1fr; }
  .record, .story, .partners { grid-template-columns: 1fr; gap: 32px; }
  .story .photo { aspect-ratio: 16 / 10; }
  footer .wrap { grid-template-columns: 1fr 1fr; }
  .sec-head h2 { font-size: 36px; }
}
@media (max-width: 560px) {
  .posts, .logos { grid-template-columns: 1fr; }
  .figs { gap: 16px; }
  .fig .display { font-size: 64px; }
  footer .wrap { grid-template-columns: 1fr; }
}
