:root {
  --canucks-blue: #00205b;
  --canucks-blue-mid: #001a4a;
  --canucks-green: #00843d;
  --canucks-green-bright: #00a34d;
  --ink: #0f1722;
  --ink-muted: #3d4a5c;
  --surface: #f4f6f9;
  --surface-2: #e8ecf2;
  --accent: var(--canucks-green);
  --accent-dark: #006b32;
  --accent-soft: rgba(0, 132, 61, 0.12);
  --ring: #f59e0b;
  --radius-lg: 20px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(15, 23, 34, 0.12);
  --font-display: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Archivo", system-ui, -apple-system, sans-serif;
  --max: 1120px;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--canucks-blue);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 999;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(100% - 1.25rem, var(--max));
  max-width: 100%;
  margin-inline: auto;
}

@media (min-width: 480px) {
  .wrap {
    width: min(100% - 2.5rem, var(--max));
  }
}

img {
  max-width: 100%;
  height: auto;
}

.spotlight-visual img {
  height: 100%;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(1.65rem, 5.5vw + 0.5rem, 3.25rem);
  margin: 0 0 1rem;
  text-transform: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  hyphens: auto;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
}

h3 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--canucks-blue);
  border-bottom: 3px solid var(--canucks-green);
  backdrop-filter: none;
  box-shadow: 0 8px 24px rgba(0, 20, 60, 0.25);
  padding-top: env(safe-area-inset-top, 0px);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  height: clamp(2.2rem, 6.5vw, 2.6rem);
  width: auto;
  max-width: 40vw;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(0.95rem, 3.5vw, 1.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  max-width: min(12rem, 52vw);
  line-height: 1.05;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: center;
}

.site-nav a {
  font-weight: 700;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  padding: 0.35rem 0.2rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--canucks-green-bright);
}

.nav-toggle {
  display: none;
  font: inherit;
  font-weight: 700;
  padding: 0.55rem 0.85rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 3.5rem;
  overflow: hidden;
  min-height: clamp(15rem, 52vh, 28rem);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: none;
}

.hero-bg__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(244, 246, 249, 0.97) 0%,
    rgba(244, 246, 249, 0.88) 38%,
    rgba(244, 246, 249, 0.35) 62%,
    rgba(0, 32, 91, 0.15) 100%
  );
  z-index: 1;
}

@media (max-width: 640px) {
  .hero-bg__scrim {
    background: linear-gradient(
      180deg,
      rgba(244, 246, 249, 0.96) 0%,
      rgba(244, 246, 249, 0.82) 42%,
      rgba(244, 246, 249, 0.45) 100%
    );
  }

  .hero {
    min-height: clamp(13rem, 44vh, 22rem);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.highlight-feature {
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
  background: linear-gradient(
    180deg,
    #fff 0%,
    rgba(0, 132, 61, 0.06) 100%
  );
  border-bottom: 1px solid rgba(0, 32, 91, 0.08);
}

.highlight-kicker {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--canucks-green);
  margin: 0 0 0.65rem;
}

.highlight-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 32, 91, 0.1);
  box-shadow: 0 16px 40px rgba(0, 32, 91, 0.1);
  overflow: hidden;
  border-left: 4px solid var(--canucks-blue);
}

.highlight-card__body {
  padding: clamp(1.15rem, 3vw, 1.65rem) clamp(1.25rem, 3vw, 1.85rem);
}

.highlight-card__title {
  font-size: clamp(1.25rem, 3.8vw, 1.75rem);
  margin: 0 0 0.5rem;
  letter-spacing: 0.03em;
  text-transform: none;
  line-height: 1.18;
}

.highlight-card__title a {
  color: var(--canucks-blue);
  text-decoration: none;
}

.highlight-card__title a:hover {
  color: var(--canucks-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.highlight-card__meta {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.highlight-card__meta a {
  color: var(--ink-muted);
  font-weight: 700;
}

.highlight-card__meta a:hover {
  color: var(--canucks-green);
}

.highlight-card__lede {
  margin: 0 0 1.15rem;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.62;
  max-width: 52rem;
}

.highlight-card__cta {
  width: 100%;
  max-width: 22rem;
}

@media (max-width: 480px) {
  .highlight-card__cta {
    max-width: none;
    width: 100%;
  }
}

.eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--canucks-blue);
  margin: 0 0 0.75rem;
  font-family: var(--font-body);
}

.lede {
  font-size: 1.15rem;
  max-width: 42rem;
  color: var(--ink-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  min-height: 2.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn.primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 32, 91, 0.35);
  color: var(--canucks-blue);
}

.btn.ghost:hover {
  background: #fff;
  border-color: var(--canucks-green);
  color: var(--accent-dark);
}

.section {
  padding: clamp(2.75rem, 5vw, 4rem) 0;
}

.section-alt {
  background: var(--surface-2);
}

.grid-2 {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .grid-2 {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }
}

.stat-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 34, 0.06);
}

.stat-panel-title {
  margin: 0 0 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  font-family: var(--font-body);
  font-weight: 700;
}

.stat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--canucks-green);
}

.stat-label {
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.fine-print {
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 700px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(15, 23, 34, 0.06);
  box-shadow: 0 10px 30px rgba(15, 23, 34, 0.06);
}

.section-intro {
  max-width: 46rem;
  color: var(--ink-muted);
  font-size: 1.08rem;
}

.section-foot {
  margin-top: 1.75rem;
  max-width: 52rem;
  color: var(--ink-muted);
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline li {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
  border-left: 4px solid var(--canucks-green);
  box-shadow: 0 8px 24px rgba(15, 23, 34, 0.06);
}

.timeline-label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--accent-dark);
}

.news-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 780px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.news-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(15, 23, 34, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.news-card.hidden {
  display: none;
}

.news-card time {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--canucks-green);
}

.news-card h3 {
  font-size: 1.15rem;
}

.news-card a {
  font-weight: 600;
  margin-top: auto;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.filter-label {
  font-weight: 700;
  font-size: 0.9rem;
  margin-right: 0.25rem;
}

.filter-btn {
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  min-height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 34, 0.12);
  background: #fff;
  cursor: pointer;
  color: var(--ink);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.filter-btn.active {
  background: var(--canucks-blue);
  color: #fff;
  border-color: var(--canucks-blue);
}

.spotlight-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.75rem;
}

@media (min-width: 900px) {
  .spotlight-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

.spotlight-card {
  margin: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 34, 0.08);
  box-shadow: 0 12px 36px rgba(15, 23, 34, 0.08);
}

.spotlight-visual {
  display: block;
  aspect-ratio: 16 / 9;
  background: #0b1220;
}

.spotlight-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}

.spotlight-card figcaption {
  padding: 1rem 1.15rem 1.15rem;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.spotlight-card figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.initiative-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

@media (min-width: 640px) {
  .initiative-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .initiative-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.initiative-block {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(15, 23, 34, 0.07);
  box-shadow: 0 8px 28px rgba(15, 23, 34, 0.06);
}

.initiative-heading {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0 0 0.85rem;
  color: var(--canucks-blue);
  border-bottom: 2px solid var(--canucks-green);
  padding-bottom: 0.5rem;
}

.initiative-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.initiative-list a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  display: block;
  padding: 0.45rem 0;
  border-bottom: 1px solid transparent;
  overflow-wrap: anywhere;
}

.initiative-list a:hover {
  color: var(--accent);
  border-bottom-color: rgba(0, 94, 184, 0.35);
}

.video-block {
  margin-top: 2rem;
}

.video-block:first-of-type {
  margin-top: 1rem;
}

.video-caption {
  color: var(--ink-muted);
  max-width: 48rem;
  font-size: 0.98rem;
}

.video-frame {
  margin-top: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0b1220;
  box-shadow: var(--shadow);
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame--fb {
  padding-bottom: 56.25%;
  background: #000;
}

.video-frame--fb iframe {
  width: 100%;
  height: 100%;
}

.video-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 900px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }
}

.video-actions {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: center;
  line-height: 1.4;
}

.video-actions a {
  overflow-wrap: anywhere;
}

.fb-watch-card {
  margin-top: 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #1a2332 0%, #0f1722 100%);
  color: rgba(255, 255, 255, 0.92);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.fb-watch-card__note {
  margin: 0;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.75);
}

.fb-watch-card__btn {
  text-decoration: none;
}

.fb-watch-card__btn:hover {
  color: #fff;
}

.link-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.link-list a {
  font-weight: 600;
}

.site-footer {
  padding: 2rem 0 max(2.5rem, env(safe-area-inset-bottom, 0px));
  background: var(--canucks-blue);
  border-top: 3px solid var(--canucks-green);
  color: rgba(255, 255, 255, 0.88);
}

.site-footer a {
  color: #7dffb0;
}

.footer-inner p {
  margin: 0 0 0.75rem;
  max-width: 52rem;
}

.footer-meta {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.coverage-section {
  background: linear-gradient(
    180deg,
    var(--canucks-blue) 0%,
    var(--canucks-blue-mid) 100%
  );
  color: rgba(255, 255, 255, 0.92);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.coverage-section h2 {
  color: #fff;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--canucks-green);
  display: inline-block;
  margin-bottom: 0.5rem;
  max-width: 100%;
  overflow-wrap: break-word;
}

.coverage-intro {
  color: rgba(255, 255, 255, 0.82);
  max-width: 44rem;
}

.coverage-intro a {
  color: #7dffb0;
  font-weight: 600;
}

.coverage-intro a:hover {
  color: #fff;
}

.coverage-panel {
  margin-top: 1.5rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem 1.5rem;
}

.espn-headlines {
  min-height: 4rem;
}

.espn-state {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.98rem;
}

.espn-error a {
  color: #7dffb0;
}

.espn-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.espn-list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.espn-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.espn-list a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.95rem, 3.5vw, 1.05rem);
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.espn-list a:hover {
  color: #7dffb0;
}

.espn-meta {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.03em;
}

.espn-attrib {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
}

.coverage-cta {
  margin-top: 1.25rem;
  display: inline-flex;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.coverage-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

@media (max-width: 768px) {
  body {
    font-size: 1rem;
  }

  .lede {
    font-size: 1.05rem;
  }

  .section-intro {
    font-size: 1rem;
  }

  .stat-panel {
    padding: 1.25rem;
  }

  .coverage-panel {
    padding: 1rem 1.1rem 1.2rem;
  }

  .card,
  .news-card {
    padding: 1.15rem 1.2rem;
  }

  .news-card:hover {
    transform: none;
  }

  .filter-row {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-row .filter-label {
    margin-bottom: 0.25rem;
  }

  .filter-btn {
    width: 100%;
    text-align: center;
  }

  .nav-toggle {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 0.35rem);
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 0.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid rgba(15, 23, 34, 0.08);
    min-width: min(18rem, calc(100vw - 2rem));
    max-height: min(70vh, 28rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 50;
  }

  .site-nav a {
    color: var(--ink);
    padding: 0.65rem 0.75rem;
    min-height: 2.75rem;
    display: flex;
    align-items: center;
    border-radius: var(--radius-sm);
  }

  .site-nav a:hover,
  .site-nav a:active {
    color: var(--canucks-green);
    background: rgba(0, 132, 61, 0.08);
  }

  .site-nav.open {
    display: flex;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  h2 {
    font-size: clamp(1.35rem, 6.5vw, 2.25rem);
  }
}
