/* ------------------------------------------------------------------
   FONT HOOKS
   ------------------------------------------------------------------
   Drop your licensed Helvetica Now Display files and Lato files into
   assets/media/fonts/ and uncomment / adjust the font-face rules below.

   @font-face {
     font-family: "Helvetica Now Display";
     src: url("../assets/media/fonts/HelveticaNowDisplay-ExtBd.woff2") format("woff2");
     font-weight: 800;
     font-style: normal;
     font-display: swap;
   }

   @font-face {
     font-family: "Lato";
     src: url("../assets/media/fonts/Lato-Regular.woff2") format("woff2");
     font-weight: 400;
     font-style: normal;
     font-display: swap;
   }

   @font-face {
     font-family: "Lato";
     src: url("../assets/media/fonts/Lato-Bold.woff2") format("woff2");
     font-weight: 700;
     font-style: normal;
     font-display: swap;
   }
------------------------------------------------------------------ */

:root {
  --green: #056533;
  --green-deep: #044221;
  --green-night: #02130a;
  --surface: #eeede9;
  --surface-soft: #f6f5f1;
  --text: #1f201e;
  --muted: #5e5f59;
  --line: rgba(31, 32, 30, 0.12);
  --line-light: rgba(255, 255, 255, 0.18);
  --white: #ffffff;
  --accent: #e6cb1c;
  --hero-base: #5b5248;
  --media-light: #d6d4ce;
  --media-dark: #6e695f;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.12);
  --radius: 24px;
  --shell: 1230px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 20px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 40px;
  --space-8: 48px;
  --space-9: 64px;
  --space-10: 80px;
  --space-11: 104px;
  --hero-media-shift: 0px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface-soft);
  color: var(--text);
  font-family: "Lato";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site {
  position: relative;
  overflow: clip;
}

.shell {
  width: min(calc(100% - 72px), var(--shell));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--white);
  transition: background-color 240ms ease, box-shadow 240ms ease, backdrop-filter 240ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 101, 51, 0);
  transition: background-color 240ms ease;
}

.site-header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: none;
  min-height: 92px;
  padding: 20px 36px;
  transition: min-height 240ms ease, padding 240ms ease;
}

.site-header__brand {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--white);
}

body.is-scrolled .site-header::before {
  background: rgba(5, 101, 51, 0.96);
}

body.is-scrolled .site-header {
  box-shadow: 0 14px 30px rgba(2, 19, 10, 0.18);
  backdrop-filter: blur(10px);
}

body.is-scrolled .site-header__inner {
  min-height: 76px;
  padding-top: 14px;
  padding-bottom: 14px;
}


.section-title,
.hero__title,
.match-column__title,
.story-title,
.footer__title,
.brand-lockup,
.menu-link {
  font-family: "Helvetica Now Display";
}

.section-title,
.match-column__title,
.footer__title,
.menu-link,
.story-title {
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 2.3vw, 3rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.section-title--light {
  color: var(--white);
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: 52px;
}

.section-head--solo {
  margin-bottom: 42px;
}

.section-head--match {
  margin-bottom: 48px;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  color: rgba(31, 32, 30, 0.65);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.7);
}

.story-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--text);
}

.story-title--light {
  color: var(--white);
}

.story-copy,
.story-meta,
.community__copy,
.footer p,
.footer a {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.story-copy {
  color: rgba(31, 32, 30, 0.72);
}

.story-copy--light {
  color: rgba(255, 255, 255, 0.82);
}

.story-meta {
  color: rgba(31, 32, 30, 0.62);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
  will-change: transform;
}

.btn--accent {
  background: var(--accent);
  color: #111111;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.btn--small {
  min-height: 32px;
  padding: 0 15px;
  font-size: 11px;
}

.section-head--match .btn--small {
  min-height: 40px;
  padding: 0 20px;
  font-size: 12px;
}

.news .section-head .btn--small {
  min-height: 40px;
  padding: 0 20px;
  font-size: 12px;
}

.tv .section-head .btn--small {
  min-height: 40px;
  padding: 0 20px;
  font-size: 12px;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  filter: brightness(1.02);
}

.btn:active {
  transform: translateY(0);
}

.menu-toggle {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: opacity 220ms ease, transform 220ms ease, color 220ms ease;
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  background: currentColor;
  transform-origin: center;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-open .menu-toggle {
  opacity: 0;
  transform: translateX(-8px);
  pointer-events: none;
}

.menu-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
}

.menu-drawer[hidden] {
  display: none;
}

.menu-drawer__backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0;
  background: rgba(5, 12, 8, 0.54);
  opacity: 0;
  transition: opacity 300ms ease;
}

.menu-drawer__panel {
  position: relative;
  z-index: 2;
  width: min(420px, 100%);
  min-height: 100svh;
  overflow-y: auto;
  background: var(--green);
  color: var(--white);
  padding: 36px 24px 34px;
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 300ms ease, transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.menu-drawer__close {
  position: absolute;
  top: 24px;
  right: 22px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-drawer__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.menu-drawer__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-drawer__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-drawer__nav {
  display: flex;
  flex-direction: column;
  margin-top: 48px;
  border-top: 1px solid var(--line-light);
}

.menu-drawer__nav > * {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 260ms ease,
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 58px;
  padding: 0;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: inherit;
  text-align: left;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  background: transparent;
  transition:
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 260ms ease,
    color 220ms ease;
}

.menu-link:hover,
.menu-link:focus-visible,
.menu-sublink:hover,
.menu-sublink:focus-visible {
  color: rgba(255, 255, 255, 0.82);
}

.menu-accordion {
  border-bottom: 1px solid var(--line-light);
}

.menu-accordion .menu-link {
  border-bottom: 0;
}

.menu-plus {
  position: relative;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
}

.menu-plus::before,
.menu-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.menu-accordion__toggle[aria-expanded="true"] .menu-plus::after {
  opacity: 0;
}

.menu-submenu {
  display: grid;
  gap: 2px;
  padding: 0 0 14px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 220ms ease, padding 220ms ease;
}

.menu-submenu.is-open {
  opacity: 1;
}

.menu-sublink {
  display: block;
  padding: 10px 0 10px 20px;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.84);
  transform: translateY(6px);
  opacity: 0;
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 220ms ease, color 220ms ease;
}

.menu-submenu.is-open .menu-sublink {
  transform: translateY(0);
  opacity: 1;
}

.menu-drawer.is-open {
  pointer-events: auto;
}

.menu-drawer.is-open .menu-drawer__panel,
.menu-drawer.is-open .menu-drawer__backdrop {
  opacity: 1;
  transform: translateX(0);
}

.menu-drawer.is-open .menu-drawer__nav > * {
  opacity: 1;
  transform: translateY(0);
}

.menu-drawer.is-open .menu-drawer__nav > *:nth-child(1) { transition-delay: 90ms; }
.menu-drawer.is-open .menu-drawer__nav > *:nth-child(2) { transition-delay: 130ms; }
.menu-drawer.is-open .menu-drawer__nav > *:nth-child(3) { transition-delay: 170ms; }
.menu-drawer.is-open .menu-drawer__nav > *:nth-child(4) { transition-delay: 210ms; }
.menu-drawer.is-open .menu-drawer__nav > *:nth-child(5) { transition-delay: 250ms; }
.menu-drawer.is-open .menu-drawer__nav > *:nth-child(6) { transition-delay: 290ms; }
.menu-drawer.is-open .menu-drawer__nav > *:nth-child(7) { transition-delay: 330ms; }
.menu-drawer.is-open .menu-drawer__nav > *:nth-child(8) { transition-delay: 370ms; }
.menu-drawer.is-open .menu-drawer__nav > *:nth-child(9) { transition-delay: 410ms; }
.menu-drawer.is-open .menu-drawer__nav > *:nth-child(10) { transition-delay: 450ms; }


.brand-mark,
.footer__mark {
  flex: 0 0 auto;
  width: 38px;
  aspect-ratio: 1;
  background: url("images/teams/hammarby.png") center / contain no-repeat;
}

.footer__mark {
  width: 42px;
}

.brand-lockup {
  display: grid;
  gap: 3px;
  padding-top: 4px;
  font-size: 17px;
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 160px 0 92px;
  color: var(--white);
}

.hero__title {
  max-width: 11.8ch;
  margin: 0 0 20px;
  font-size: clamp(3.2rem, 5.45vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  transform: translateY(24px);
  opacity: 0;
  transition: transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 720ms ease;
}

.hero__copy {
  max-width: 64ch;
  margin: 0 0 30px;
  font-family: "Lato";
  font-size: 17px;
  font-weight: 400;
  line-height: 1.56;
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1) 80ms, opacity 720ms ease 80ms;
}

.hero__cta {
  transform: translateY(18px);
  opacity: 0;
  transition: transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1) 160ms, opacity 720ms ease 160ms;
}

.hero__content.is-swapping .hero__title,
.hero__content.is-swapping .hero__copy,
.hero__content.is-swapping .hero__cta {
  opacity: 0;
  transform: translateY(14px);
  transition-duration: 180ms;
  transition-delay: 0ms;
}

.hero__progress {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.hero__progress-button {
  --progress-duration: 6200ms;
  position: relative;
  display: block;
  width: 42px;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  overflow: hidden;
}

.hero__progress-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
}

.hero__progress-button.is-complete::before {
  transform: scaleX(1);
}

.hero__progress-button.is-active::before {
  animation: hero-progress var(--progress-duration) linear forwards;
}

@keyframes hero-progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.is-loaded .hero__title,
.is-loaded .hero__copy,
.is-loaded .hero__cta {
  transform: translateY(0);
  opacity: 1;
}

.matches {
  background: var(--green);
  color: var(--white);
  padding: 56px 0 68px;
}


.matches__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
}

.match-column {
  min-width: 0;
}

.match-column__title {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.fixture-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fixture {
  padding: 18px 0 22px;
  border-top: 1px solid var(--line-light);
}

.fixture:last-child {
  border-bottom: 1px solid var(--line-light);
}

.fixture__meta,
.fixture__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 124px minmax(0, 1fr);
  align-items: center;
  column-gap: 26px;
}

.fixture__meta {
  margin-bottom: 16px;
  font-size: 12px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.76);
}

.fixture__meta span,
.fixture__team {
  display: block;
  min-width: 0;
}

.fixture__meta span:nth-child(1),
.fixture__team--home {
  text-align: left;
}

.fixture__meta span:nth-child(2) {
  text-align: center;
}

.fixture__meta span:nth-child(3),
.fixture__team--away {
  text-align: right;
}

.fixture__body {
  font-family: "Helvetica Now Display";
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.fixture__team {
  white-space: nowrap;
}

.fixture__team--away {
  justify-self: end;
}

.fixture__versus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 124px;
  gap: 14px;
}

.team-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06));
}

.team-badge--away {
  border-radius: 10px;
}

.fixture__dash {
  display: block;
  width: 16px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
}

.news,
.community,
.tv {
  background: var(--surface);
}

.news {
  padding: 90px 0 84px;
}

.news__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
}

.featured-story {
  position: relative;
  min-height: 566px;
  overflow: hidden;
  background: #13171b;
}

.featured-story__media {
  position: absolute;
  inset: 0;
}

.featured-story__media .media-blank {
  height: 100%;
}


.media-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-list__thumb,
.featured-story__media,
.community__media,
.tv-card__media {
  overflow: hidden;
}

.partner-slot__image {
  display: block;
  width: min(100%, 220px);
  max-height: 42px;
  object-fit: contain;
}


.story-list__thumb .media-image {
  aspect-ratio: 1 / 1;
}

.community__media .media-image {
  aspect-ratio: 1.23 / 1;
}

.tv-card__media .media-image {
  aspect-ratio: 1.16 / 1;
}

.team-badge {
  border: 0;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.team-badge--away {
  border-radius: 0;
}

.team-badge--hammarby {
  background-image: url("images/teams/hammarby.png");
}

.team-badge--saik {
  background-image: url("images/teams/saik.png");
}

.team-badge--edsbyns {
  background-image: url("images/teams/edsbyns.png");
}

.team-badge--ifk-vanersborg {
  background-image: url("images/teams/ifk-vanersborg.png");
}

.team-badge--broberg {
  background-image: url("images/teams/broberg.png");
}

.team-badge--bollnas {
  background-image: url("images/teams/bollnas.png");
}

.featured-story__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 10px;
  min-height: 566px;
  padding: 28px 24px;
  background: linear-gradient(180deg, transparent 42%, rgba(6, 9, 13, 0.86) 100%);
}

.featured-story .story-title {
  max-width: 15ch;
}

.featured-story .story-copy {
  max-width: 40ch;
}

.story-list {
  display: grid;
  gap: 22px;
}

.story-list__item {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.story-list__thumb .media-blank {
  aspect-ratio: 1 / 1;
  width: 100%;
}

.community {
  padding: 0 0 82px;
}

.community__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.94fr);
  gap: 52px;
  align-items: center;
  padding: 72px 0;
}

.community__copy {
  max-width: 47ch;
  margin-top: 18px;
  color: rgba(31, 32, 30, 0.74);
}

.link-stack {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.link-stack__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  line-height: 1;
  transition: color 220ms ease, transform 220ms ease;
}

.link-stack__item span:first-child {
  font-family: "Helvetica Now Display";
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.link-stack__item span:last-child {
  color: var(--green);
}

.link-stack__item span:last-child::after {
  content: " →";
}

.link-stack__item:hover {
  color: rgba(31, 32, 30, 0.7);
  transform: translateX(3px);
}

.community__media .media-blank {
  aspect-ratio: 1.23 / 1;
}

.partners {
  background: var(--surface-soft);
  padding: 64px 0 72px;
}

.partners__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.partner-slot {
  display: grid;
  place-items: center;
  min-height: 84px;
  transition: transform 220ms ease, opacity 220ms ease;
}

.partner-slot:hover {
  transform: translateY(-2px);
  opacity: 0.84;
}

.tv {
  padding: 74px 0 86px;
}

.tv__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tv-card {
  display: grid;
  align-content: start;
}

.tv-card__media {
  position: relative;
  overflow: hidden;
}

.tv-card__media .media-blank {
  aspect-ratio: 1.16 / 1;
}

.tv-card__content {
  display: grid;
  align-content: start;
  gap: 8px;
  padding-top: 16px;
}

.tv-card .story-title {
  min-height: 3.18em;
  font-size: 23px;
  line-height: 1.04;
}

.tv-card .story-meta {
  font-size: 13px;
  line-height: 1.4;
}

.play-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #10110f;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.play-badge svg {
  width: 13px;
  height: 13px;
  transform: translateX(1px);
}

.footer {
  background: var(--green);
  color: rgba(255, 255, 255, 0.82);
  padding: 42px 0 18px;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.62fr) repeat(2, minmax(180px, 0.72fr));
  gap: 48px 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__brand {
  display: flex;
  align-items: start;
  gap: 18px;
}

.footer__title {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 0.98;
  color: var(--white);
  letter-spacing: -0.03em;
}

.footer__label {
  margin: 0 0 14px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.58);
}

.footer__group {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer__group a,
.footer__brand p {
  line-height: 1.42;
}

.footer__group a {
  transition: color 220ms ease, transform 220ms ease;
}

.footer__group a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer__bottom {
  padding-top: 16px;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.42);
}

.media-blank {
  width: 100%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03)),
    linear-gradient(140deg, var(--media-light), #c9c6bf 60%, #d9d7d0 100%);
}

.media-blank--dark {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(140deg, #33373d, var(--media-dark) 60%, #4d5258 100%);
}

.featured-story__media .media-blank,
.story-list__thumb .media-blank,
.community__media .media-blank,
.tv-card__media .media-blank,
.partner-slot span {
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 260ms ease;
}

.community__media:hover .media-image,
.tv-card:hover .media-image,
.partner-slot:hover span {
  transform: scale(1.018);
  filter: brightness(1.02);
}

.will-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.will-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.will-reveal--hero {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .fixture__body {
    font-size: 18px;
  }

  .news__grid,
  .community__grid {
    gap: 36px;
  }
}

@media (max-width: 920px) {
  .shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .site-header__inner {
    min-height: 84px;
    padding: 18px 20px;
  }

  body.is-scrolled .site-header__inner {
    min-height: 72px;
    padding: 12px 20px;
  }

  .menu-drawer__panel {
    width: min(440px, 100%);
  }

  .hero {
    min-height: 724px;
  }

  .hero__content {
    padding-top: 156px;
    padding-bottom: 72px;
  }

  .hero__title {
    max-width: 10.5ch;
    font-size: clamp(2.7rem, 7.3vw, 4.4rem);
  }

  .hero__copy {
    max-width: 56ch;
    font-size: 16px;
    line-height: 1.62;
  }

  .matches__grid,
  .news__grid,
  .community__grid,
  .tv__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .matches__grid {
    gap: 34px;
  }

  .fixture__meta,
  .fixture__body {
    grid-template-columns: minmax(0, 1fr) 118px minmax(0, 1fr);
    column-gap: 22px;
  }

  .partners__row {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: start;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .featured-story,
  .featured-story__content {
    min-height: 420px;
  }

  .news .section-head .btn--small {
    min-height: 40px;
    padding: 0 20px;
    font-size: 12px;
  }

  .tv .section-head .btn--small {
    min-height: 40px;
    padding: 0 20px;
    font-size: 12px;
  }

  .featured-story .story-title {
    font-size: 22px;
  }

  .story-list__item .story-title {
    font-size: 21px;
  }

  .story-list__item .story-copy {
    font-size: 13px;
    line-height: 1.42;
  }

  .tv-card__media .media-blank {
    aspect-ratio: 1.34 / 1;
  }

  .tv-card .story-title {
    min-height: 2.16em;
    font-size: 22px;
  }

  .tv-card .story-meta {
    font-size: 13px;
  }

  .play-badge {
    width: 28px;
    height: 28px;
  }

  .play-badge svg {
    width: 12px;
    height: 12px;
  }

  .community {
    padding-bottom: 60px;
  }

  .community__grid {
    padding: 54px 0;
  }

  .footer__grid {
    gap: 26px;
  }
}

@media (max-width: 640px) {
  html {
    scroll-behavior: auto;
  }

  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .site-header__inner {
    min-height: 76px;
    padding: 18px 14px;
  }

  body.is-scrolled .site-header__inner {
    min-height: 68px;
    padding: 12px 14px;
  }

  .site-header__brand {
    gap: 10px;
  }

  .menu-drawer__panel {
    width: 100%;
    max-width: 100%;
    padding: 30px 18px 26px;
  }

  .menu-link {
    min-height: 54px;
    font-size: 16px;
  }

  .menu-sublink {
    padding-left: 18px;
    font-size: 13px;
  }

  .brand-mark {
    width: 30px;
  }

  .brand-lockup {
    padding-top: 2px;
    font-size: 12px;
  }

  .hero {
    min-height: 768px;
  }

  .hero__content {
    width: min(calc(100% - 28px), var(--shell));
    padding-top: 148px;
    padding-bottom: 54px;
  }

  .hero__title {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(2.45rem, 8.4vw, 3.6rem);
    line-height: 0.92;
  }

  .hero__copy {
    max-width: 100%;
    width: min(100%, 44ch);
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.66;
  }

  .hero__cta {
    min-height: 40px;
    padding-inline: 24px;
    font-size: 12px;
  }

  .hero__progress {
    margin-top: 22px;
    gap: 8px;
  }

  .hero__progress-button {
    width: 28px;
    height: 2px;
  }

  .matches {
    padding: 34px 0 42px;
  }

  .section-head {
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 14px;
  }

  .section-title {
    font-size: 1.68rem;
  }

  .match-column__title {
    margin-bottom: 12px;
    font-size: 20px;
  }

  .matches__grid {
    gap: 24px;
  }

  .section-head--match .btn--small {
    min-height: 42px;
    padding-inline: 20px;
    font-size: 13px;
  }

  .match-column {
    width: 100%;
    max-width: none;
  }

  .fixture {
    padding: 16px 0 17px;
  }

  .fixture__meta,
  .fixture__body {
    grid-template-columns: minmax(0, 1fr) 86px minmax(0, 1fr);
    column-gap: 14px;
  }

  .fixture__meta {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .fixture__body {
    font-size: 16px;
  }

  .fixture__versus {
    width: 86px;
    gap: 9px;
  }

  .team-badge {
    width: 26px;
    height: 26px;
  }

  .fixture__dash {
    width: 11px;
  }

  .news {
    padding: 54px 0 46px;
  }

  .news .section-head {
    align-items: center;
    margin-bottom: 22px;
  }

  .news .section-title {
    font-size: 1.78rem;
  }

  .news .section-head .btn--small {
    min-height: 42px;
    padding: 0 20px;
    font-size: 13px;
  }

  .featured-story,
  .featured-story__content {
    min-height: 286px;
  }

  .featured-story__content {
    padding: 20px 18px;
    gap: 9px;
  }

  .featured-story .story-title {
    max-width: 15ch;
    font-size: 21px;
    line-height: 0.98;
  }

  .featured-story .story-copy {
    max-width: 36ch;
    font-size: 14px;
    line-height: 1.48;
  }

  .story-title {
    font-size: 14px;
    line-height: 1.08;
  }

  .story-copy,
  .story-meta,
  .community__copy,
  .footer p,
  .footer a {
    font-size: 12px;
    line-height: 1.45;
  }

  .eyebrow {
    margin-bottom: 5px;
    font-size: 9px;
  }

  .news .eyebrow {
    margin-bottom: 6px;
    font-size: 10px;
  }

  .story-list {
    gap: 0;
  }

  .story-list__item {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 18px;
    padding: 13px 0;
  }

  .story-list__item .story-title {
    font-size: 16px;
    line-height: 1.04;
  }

  .story-list__item .story-copy {
    font-size: 12px;
    line-height: 1.44;
  }

  .community__grid {
    gap: 26px;
    padding: 34px 0 0;
  }

  .community__copy {
    margin-top: 14px;
    max-width: none;
    width: min(100%, 44ch);
    font-size: 14px;
    line-height: 1.56;
  }

  .link-stack {
    margin-top: 22px;
  }

  .link-stack__item {
    min-height: 50px;
    gap: 14px;
    font-size: 13px;
  }

  .link-stack__item span:first-child {
    font-size: 13px;
  }

  .link-stack__item span:last-child {
    font-size: 13px;
  }

  .community__media .media-blank {
    aspect-ratio: 1.12 / 1;
  }

  .partners {
    padding: 36px 0 40px;
  }

  .partner-slot {
    min-height: 44px;
  }

  .partner-slot span {
    height: 18px;
    width: min(100%, 170px);
  }

  .tv {
    padding: 38px 0 46px;
  }

  .tv .section-head {
    align-items: start;
    margin-bottom: 20px;
  }

  .tv .section-title {
    max-width: 8.5ch;
    font-size: 1.82rem;
  }

  .tv .section-head .btn--small {
    min-height: 42px;
    padding: 0 20px;
    font-size: 13px;
  }

  .tv__grid {
    gap: 18px;
  }

  .tv-card__media .media-blank {
    aspect-ratio: 1.62 / 1;
  }

  .tv-card__content {
    gap: 7px;
    padding-top: 12px;
  }

  .tv-card .story-title {
    min-height: 0;
    font-size: 16px;
    line-height: 1.05;
  }

  .tv-card .story-meta {
    font-size: 12px;
    line-height: 1.45;
  }

  .play-badge {
    right: 10px;
    bottom: 10px;
    width: 30px;
    height: 30px;
  }

  .play-badge svg {
    width: 12px;
    height: 12px;
  }

  .footer {
    padding: 32px 0 16px;
  }

  .footer__grid {
    gap: 22px;
    padding-bottom: 22px;
  }

  .footer__brand {
    gap: 14px;
  }

  .footer__title {
    font-size: 18px;
  }

  .footer__label {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .footer__bottom {
    padding-top: 12px;
    font-size: 9px;
  }

  .footer {
    padding: 34px 0 16px;
  }

  .footer__grid {
    gap: 22px;
    padding-bottom: 22px;
  }

  .footer__title {
    font-size: 22px;
  }

  .footer__label {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .footer__group {
    gap: 8px;
  }

  .footer__group a,
  .footer__brand p {
    font-size: 14px;
    line-height: 1.45;
  }

  .footer__bottom {
    padding-top: 14px;
    font-size: 8px;
    line-height: 1.2;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 1ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }

  .hero__media-fill,
  .will-reveal,
  .will-reveal.is-visible,
  .hero__title,
  .hero__copy,
  .hero__cta {
    transform: none !important;
  }
}


/* ------------------------------------------------------------------
   HEADER / MENU / HERO REPAIR
------------------------------------------------------------------ */

.site-header {
  z-index: 90;
  pointer-events: auto;
}

.site-header::before {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 240ms ease, transform 240ms ease, background-color 240ms ease;
}

.site-header__inner.shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 28px;
  padding-right: 28px;
}

body.is-scrolled .site-header::before {
  opacity: 1;
  transform: translateY(0);
  background: rgba(5, 101, 51, 0.96);
}

body.is-scrolled .site-header {
  box-shadow: 0 14px 30px rgba(2, 19, 10, 0.18);
  backdrop-filter: blur(10px);
}

body.is-scrolled .site-header__inner {
  min-height: 76px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.menu-toggle,
.site-header__brand {
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.28));
  transition: opacity 220ms ease, transform 220ms ease, color 220ms ease, filter 220ms ease;
}

body.is-scrolled .menu-toggle,
body.is-scrolled .site-header__brand {
  filter: none;
}

.menu-open .menu-toggle {
  opacity: 0;
  transform: translateX(-8px);
  pointer-events: none;
}

.menu-drawer {
  z-index: 100;
  pointer-events: none;
  isolation: isolate;
}

.menu-drawer__backdrop {
  z-index: 0;
  pointer-events: auto;
}

.menu-drawer__panel {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: min(420px, 100%);
  max-width: 100%;
  min-height: 100dvh;
  padding: 36px 24px 34px;
  box-shadow: 28px 0 64px rgba(2, 17, 9, 0.34);
}

.menu-drawer.is-open {
  pointer-events: auto;
}

.menu-drawer.is-open .menu-drawer__panel,
.menu-drawer.is-open .menu-drawer__backdrop {
  opacity: 1;
  transform: translateX(0);
}

.menu-drawer.is-open .menu-drawer__nav > * {
  opacity: 1;
  transform: translateY(0);
}

.menu-drawer.is-open .menu-drawer__nav > *:nth-child(1) { transition-delay: 90ms; }
.menu-drawer.is-open .menu-drawer__nav > *:nth-child(2) { transition-delay: 130ms; }
.menu-drawer.is-open .menu-drawer__nav > *:nth-child(3) { transition-delay: 170ms; }
.menu-drawer.is-open .menu-drawer__nav > *:nth-child(4) { transition-delay: 210ms; }
.menu-drawer.is-open .menu-drawer__nav > *:nth-child(5) { transition-delay: 250ms; }
.menu-drawer.is-open .menu-drawer__nav > *:nth-child(6) { transition-delay: 290ms; }
.menu-drawer.is-open .menu-drawer__nav > *:nth-child(7) { transition-delay: 330ms; }
.menu-drawer.is-open .menu-drawer__nav > *:nth-child(8) { transition-delay: 370ms; }
.menu-drawer.is-open .menu-drawer__nav > *:nth-child(9) { transition-delay: 410ms; }
.menu-drawer.is-open .menu-drawer__nav > *:nth-child(10) { transition-delay: 450ms; }

.hero {
  position: relative;
  min-height: min(100svh, 836px);
  display: grid;
  align-items: end;
  overflow: clip;
  background: var(--hero-base);
  isolation: isolate;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.014) translate3d(0, calc(var(--hero-media-shift) * 0.7), 0);
  transition: opacity 760ms ease, transform 1240ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1) translate3d(0, calc(var(--hero-media-shift) * 0.7), 0);
}

.hero__slide--01 {
  background:
    linear-gradient(90deg, rgba(24, 20, 16, 0.62), rgba(24, 20, 16, 0.2) 42%, rgba(8, 34, 18, 0.22) 100%),
    url("images/hero/hero-slide-01.jpg") center 30% / cover no-repeat;
}

.hero__slide--02 {
  background:
    linear-gradient(90deg, rgba(19, 16, 14, 0.6), rgba(19, 16, 14, 0.18) 45%, rgba(7, 35, 18, 0.18) 100%),
    url("images/hero/hero-slide-02.jpg") center center / cover no-repeat;
}

.hero__slide--03 {
  background:
    linear-gradient(90deg, rgba(20, 18, 15, 0.58), rgba(20, 18, 15, 0.18) 44%, rgba(5, 32, 18, 0.2) 100%),
    url("images/hero/hero-slide-03.jpg") center center / cover no-repeat;
}

.hero__overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.2) 42%, rgba(0, 0, 0, 0.38) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__progress-button {
  width: 44px;
  height: 2px;
}

@media (max-width: 920px) {
  .site-header__inner.shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero {
    min-height: 724px;
  }

  .menu-drawer__panel {
    width: min(440px, 100%);
  }
}

@media (max-width: 640px) {
  .site-header__inner.shell {
    padding-left: 14px;
    padding-right: 14px;
  }

  body.is-scrolled .site-header__inner {
    min-height: 68px;
    padding: 12px 14px;
  }

  .menu-drawer__panel {
    width: 100%;
    max-width: 100%;
    padding: 30px 18px 26px;
  }

  .hero {
    min-height: 790px;
  }

  .hero__progress-button {
    width: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide,
  .hero__slide.is-active {
    transform: none !important;
  }
}



/* ------------------------------------------------------------------
   HERO PARALLAX / PREMIUM HOVER REFINEMENT
------------------------------------------------------------------ */

:root {
  --ease-premium: cubic-bezier(0.2, 0.8, 0.2, 1);
  --hero-overscan: clamp(36px, 6vh, 58px);
}

.hero__media {
  overflow: hidden;
}

.hero__slide {
  inset: calc(var(--hero-overscan) * -1) 0;
  backface-visibility: hidden;
  transform: translate3d(0, var(--hero-media-shift), 0) scale(1.02);
  transition:
    opacity 760ms ease,
    transform 1400ms var(--ease-premium);
}

.hero__slide.is-active {
  transform: translate3d(0, var(--hero-media-shift), 0) scale(1);
}

.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    color 220ms ease,
    border-color 260ms ease,
    background-color 260ms ease;
}

.btn::before,
.btn::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.btn::before {
  inset: 1px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.08) 42%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0.34;
  transition: opacity 240ms ease;
}

.btn::after {
  inset: 1px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  opacity: 0.44;
  transform: scale(0.992);
  transition: transform 260ms var(--ease-premium), opacity 240ms ease, border-color 240ms ease;
}

.btn--accent {
  background: linear-gradient(180deg, #e8cf27 0%, #debf18 100%);
  box-shadow: inset 0 -1px 0 rgba(17, 17, 17, 0.08);
}

.story-list__item,
.featured-story,
.tv-card,
.fixture,
.partner-slot,
.link-stack__item,
.menu-link,
.menu-sublink,
.featured-story__content,
.play-badge,
.partner-slot__image,
.story-title,
.story-copy,
.story-meta,
.fixture__team,
.fixture__meta span,
.fixture__dash,
.team-badge,
.media-image {
  transition-timing-function: var(--ease-premium);
}

.media-image,
.partner-slot__image {
  transition:
    transform 820ms var(--ease-premium),
    filter 420ms ease,
    opacity 260ms ease;
  transform-origin: center center;
  will-change: transform;
}

.story-title,
.story-copy,
.story-meta,
.fixture__team,
.fixture__meta span,
.fixture__dash,
.team-badge,
.play-badge,
.featured-story__content {
  transition:
    transform 320ms var(--ease-premium),
    color 220ms ease,
    opacity 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.story-list__item,
.partner-slot,
.link-stack__item,
.tv-card,
.featured-story,
.fixture {
  position: relative;
}

.story-list__item,
.partner-slot,
.link-stack__item,
.tv-card,
.featured-story {
  position: relative;
}

.story-list__item::after,
.link-stack__item::before,
.partner-slot::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.story-list__item::after {
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: rgba(5, 101, 51, 0.26);
  transform: scaleX(0.08);
  transform-origin: left center;
  opacity: 0;
  transition: transform 420ms var(--ease-premium), opacity 260ms ease;
}

.link-stack__item::before {
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: rgba(5, 101, 51, 0.3);
  transform: scaleX(0.14);
  transform-origin: left center;
  opacity: 0;
  transition: transform 420ms var(--ease-premium), opacity 260ms ease;
}

.partner-slot::after {
  left: 20%;
  right: 20%;
  bottom: -2px;
  height: 1px;
  background: rgba(5, 101, 51, 0.24);
  transform: scaleX(0.36);
  opacity: 0;
  transition: transform 420ms var(--ease-premium), opacity 260ms ease;
}

.featured-story {
  transition:
    transform 380ms var(--ease-premium),
    box-shadow 380ms var(--ease-premium);
}

.story-list__item {
  transition:
    transform 340ms var(--ease-premium),
    border-color 220ms ease;
}

.featured-story:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(9, 12, 16, 0.16);
}

.featured-story:hover .media-image {
  transform: scale(1.024);
  filter: brightness(1.035);
}

.featured-story:hover .featured-story__content {
  transform: translateY(-2px);
}

.featured-story:hover .eyebrow--light,
.featured-story:hover .story-copy--light {
  opacity: 0.96;
}

.story-list__item:hover {
  transform: translateY(-2px);
  border-color: rgba(5, 101, 51, 0.18);
}

.story-list__item:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.story-list__item:hover .media-image {
  transform: scale(1.03);
  filter: brightness(1.02);
}

.story-list__item:hover .story-title {
  color: var(--green-deep);
}

.story-list__item:hover .story-copy,
.story-list__item:hover .eyebrow {
  opacity: 0.9;
}

.fixture {
  transition: none;
}

.fixture::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  bottom: -1px;
  width: 2px;
  background: rgba(230, 203, 28, 0.92);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top center;
  transition: none;
}

.fixture::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 38%, rgba(255, 255, 255, 0) 78%);
  opacity: 0;
  pointer-events: none;
  transition: none;
}

.fixture__dash {
  transition: none;
}

.team-badge {
  transition: none;
}

.tv-card {
  transition: transform 360ms var(--ease-premium);
}

.menu-link,
.menu-sublink {
  transition:
    transform 320ms var(--ease-premium),
    opacity 260ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.link-stack__item span:last-child {
  transition: transform 320ms var(--ease-premium), color 220ms ease;
}

.hero__progress-button {
  transition:
    transform 260ms var(--ease-premium),
    opacity 220ms ease,
    background-color 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    box-shadow: none;
    filter: none;
  }

  .btn:hover::before {
    opacity: 0.56;
  }

  .btn:hover::after {
    transform: scale(1);
    opacity: 0.78;
  }

  .btn--accent:hover {
    background: linear-gradient(180deg, #ecd339 0%, #dfc21c 100%);
  }

  .hero__progress-button:hover {
    transform: scaleX(1.05);
  }

  .community__media:hover .media-image,
  .tv-card:hover .tv-card__media .media-image {
    transform: scale(1.045);
  }

  .link-stack__item:hover {
    color: rgba(31, 32, 30, 0.76);
    transform: translateX(6px);
  }

  .link-stack__item:hover::before,
  .partner-slot:hover::after {
    transform: scaleX(1);
    opacity: 1;
  }

  .link-stack__item:hover span:last-child {
    color: var(--green-deep);
    transform: translateX(4px);
  }

  .partner-slot:hover {
    transform: translateY(-2px);
    opacity: 1;
  }

  .partner-slot:hover .partner-slot__image {
    transform: translateY(-2px) scale(1.02);
    filter: saturate(1.04);
    opacity: 0.98;
  }

  .featured-story:hover .media-image,
  .featured-story:hover .featured-story__content,
  .story-list__item:hover,
  .story-list__item:hover .story-list__thumb .media-image,
  .story-list__item:hover::after,
  .story-list__item:hover .story-title,
  .story-list__item:hover .story-copy {
    transform: none;
  }

  .story-list__item:hover {
    border-color: var(--line);
  }

  .story-list__item:hover::after {
    opacity: 0;
  }

  .story-list__item:hover .story-title {
    color: inherit;
  }

  .story-list__item:hover .story-copy {
    color: rgba(31, 32, 30, 0.72);
  }

  .tv-card:hover {
    transform: translateY(-4px);
  }

  .tv-card:hover .story-title {
    color: var(--green-deep);
  }

  .tv-card:hover .play-badge {
    transform: scale(1.08);
    background: rgba(230, 203, 28, 0.96);
  }

  .menu-link:hover,
  .menu-sublink:hover {
    transform: translateX(4px);
  }

  .menu-link:hover {
    color: rgba(255, 255, 255, 0.88);
  }
}

.btn:active {
  transform: none;
}

.btn:focus-visible,
.link-stack__item:focus-visible,
.story-list__thumb:focus-visible,
.featured-story__media:focus-visible,
.tv-card__media:focus-visible,
.partner-slot:focus-visible,
.menu-link:focus-visible,
.menu-sublink:focus-visible,
.menu-toggle:focus-visible,
.hero__progress-button:focus-visible {
  outline: 2px solid rgba(230, 203, 28, 0.88);
  outline-offset: 3px;
}

@media (max-width: 920px) {
  .hero__slide {
    inset: 0;
    transform: scale(1.02);
  }

  .hero__slide.is-active {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn::before,
  .btn::after,
  .story-list__item::after,
  .link-stack__item::before,
  .partner-slot::after,
  .fixture::before {
    display: none !important;
  }

  .hero__slide,
  .hero__slide.is-active,
  .media-image,
  .partner-slot__image,
  .featured-story__content,
  .story-title,
  .story-copy,
  .story-meta,
  .fixture__team,
  .fixture__meta span,
  .team-badge,
  .play-badge {
    transform: none !important;
  }
}




/* --- Interaction tuning v5 --- */
@media (hover: hover) and (pointer: fine) {
  /* Buttons: calmer, more premium surface response */
  .btn {
    transform: translateZ(0);
  }

  .btn::before {
    inset: 0;
    background:
      linear-gradient(112deg,
        rgba(255, 255, 255, 0) 18%,
        rgba(255, 255, 255, 0.34) 46%,
        rgba(255, 255, 255, 0) 72%);
    opacity: 0;
    transform: translateX(-18%) skewX(-14deg);
    transition:
      transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1),
      opacity 240ms ease;
  }

  .btn::after {
    inset: 0;
    border: 1px solid rgba(17, 17, 17, 0.10);
    opacity: 0.54;
    transform: scale(0.986);
    transition:
      transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
      opacity 220ms ease,
      border-color 220ms ease;
  }

  .btn:hover {
    transform: translateY(-1px);
    box-shadow: none;
    filter: none;
  }

  .btn:hover::before {
    opacity: 0.34;
    transform: translateX(18%) skewX(-14deg);
  }

  .btn:hover::after {
    transform: scale(1);
    opacity: 0.82;
    border-color: rgba(17, 17, 17, 0.16);
  }

  .btn--accent:hover {
    background: linear-gradient(180deg, #ecd53a 0%, #e3c61e 100%);
  }

  .btn:active {
    transform: translateY(0);
  }

  /* Matches: no hover animation under any circumstances */
  .fixture,
  .fixture::before,
  .fixture::after,
  .fixture *,
  .fixture:hover,
  .fixture:hover::before,
  .fixture:hover::after,
  .fixture:hover * {
    transition: none !important;
    transform: none !important;
    filter: none !important;
    box-shadow: none !important;
  }

  /* News: related to TV hover language, but editorial and calmer */
  .featured-story {
    transition:
      transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
      box-shadow 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .featured-story .featured-story__content {
    transition:
      transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
      opacity 240ms ease;
  }

  .featured-story .story-title,
  .story-list__item .story-title {
    transition:
      color 260ms ease,
      transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .featured-story:hover {
    transform: translateY(-4px);
    box-shadow: none;
  }

  .featured-story:hover .media-image {
    transform: scale(1.045);
    filter: brightness(1.03);
  }

  .featured-story:hover .featured-story__content {
    transform: translateY(-4px);
  }

  .featured-story:hover .story-title {
    transform: translateY(-1px);
  }

  .featured-story:hover .eyebrow--light,
  .featured-story:hover .story-copy--light {
    opacity: 0.98;
  }

  .story-list__item {
    transition:
      transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
      border-color 220ms ease;
  }

  .story-list__thumb {
    overflow: hidden;
  }

  .story-list__thumb .media-image {
    transition:
      transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
      filter 260ms ease;
  }

  .story-list__content {
    transition: transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .story-list__item::after {
    background: rgba(5, 101, 51, 0.24);
    transform: scaleX(0.18);
    opacity: 0;
    transition:
      transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
      opacity 260ms ease;
  }

  .story-list__item:hover {
    transform: translateY(-3px);
    border-color: rgba(5, 101, 51, 0.14);
  }

  .story-list__item:hover::after {
    transform: scaleX(1);
    opacity: 1;
  }

  .story-list__item:hover .story-list__thumb .media-image {
    transform: scale(1.045);
    filter: brightness(1.03);
  }

  .story-list__item:hover .story-list__content {
    transform: translateX(4px);
  }

  .story-list__item:hover .story-title {
    color: var(--green-deep);
  }

  .story-list__item:hover .story-copy,
  .story-list__item:hover .eyebrow {
    opacity: 0.94;
  }
}


/* --- Interaction tuning v6 --- */
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background-color 260ms ease,
    background-position 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.06);
}

.btn::before,
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.btn::before {
  background:
    radial-gradient(120% 160% at 0% 50%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 58%);
  opacity: 0.62;
  transition:
    opacity 240ms ease,
    transform 540ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn::after {
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  opacity: 0;
  transition:
    opacity 220ms ease,
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 220ms ease;
  transform: scale(0.985);
}

.btn--accent {
  background-color: var(--accent);
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.14) 36%, rgba(255, 255, 255, 0.02) 100%);
  background-size: 170% 100%;
  background-position: 100% 0;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    transform: translateY(-1px);
    box-shadow:
      inset 0 0 0 1px rgba(17, 17, 17, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
    filter: none;
  }

  .btn:hover::before {
    opacity: 0.92;
    transform: translateX(10%);
  }

  .btn:hover::after {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(255, 255, 255, 0.24);
  }

  .btn--accent:hover {
    background-color: #efd63a;
    background-position: 0 0;
  }

  .btn:active {
    transform: translateY(0);
  }

  /* Nästa hemmatcher: no hover animation */
  .fixture,
  .fixture::before,
  .fixture::after,
  .fixture *,
  .fixture:hover,
  .fixture:hover::before,
  .fixture:hover::after,
  .fixture:hover * {
    transition: none !important;
    transform: none !important;
    filter: none !important;
    box-shadow: none !important;
    background-position: initial !important;
  }

  /* Senaste nytt: same family as TV, calmer and editorial */
  .featured-story,
  .story-list__item {
    cursor: pointer;
  }

  .featured-story {
    transition: none;
    box-shadow: none;
  }

  .featured-story .featured-story__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }

  .featured-story .media-image {
    transition:
      transform 820ms cubic-bezier(0.2, 0.8, 0.2, 1),
      filter 260ms ease;
  }

  .featured-story .featured-story__content {
    transition:
      opacity 220ms ease,
      background 320ms ease;
    transform: none;
  }

  .featured-story .story-title,
  .story-list__item .story-title {
    transition:
      color 220ms ease,
      transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .featured-story:hover {
    transform: none;
    box-shadow: none;
  }

  .featured-story:hover .media-image {
    transform: scale(1.022);
    filter: brightness(1.035);
  }

  .featured-story:hover .featured-story__content {
    transform: none;
    background: linear-gradient(180deg, transparent 39%, rgba(6, 9, 13, 0.9) 100%);
  }

  .featured-story:hover .story-title {
    transform: translateY(-1px);
  }

  .featured-story:hover .eyebrow--light,
  .featured-story:hover .story-copy--light {
    opacity: 0.94;
  }

  .story-list__item {
    position: relative;
    transition:
      border-color 220ms ease,
      color 220ms ease;
  }

  .story-list__item::after {
    content: "";
    position: absolute;
    left: 94px;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: rgba(5, 101, 51, 0.32);
    transform: scaleX(0.18);
    transform-origin: left center;
    opacity: 0;
    transition:
      transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
      opacity 260ms ease;
  }

  .story-list__thumb {
    overflow: hidden;
  }

  .story-list__thumb .media-image {
    transition:
      transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
      filter 260ms ease;
  }

  .story-list__content {
    transition: transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .story-list__item:hover {
    transform: none;
    border-color: rgba(5, 101, 51, 0.16);
  }

  .story-list__item:hover::after {
    transform: scaleX(1);
    opacity: 1;
  }

  .story-list__item:hover .story-list__thumb .media-image {
    transform: scale(1.04);
    filter: brightness(1.03);
  }

  .story-list__item:hover .story-list__content {
    transform: translateX(3px);
  }

  .story-list__item:hover .story-title {
    color: var(--green-deep);
  }

  .story-list__item:hover .story-copy,
  .story-list__item:hover .eyebrow {
    opacity: 0.9;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .featured-story,
  .story-list__item,
  .story-list__content,
  .story-list__thumb .media-image,
  .featured-story .media-image,
  .featured-story .featured-story__content,
  .featured-story .story-title,
  .story-list__item .story-title {
    transition: none !important;
    transform: none !important;
    filter: none !important;
  }
}
