/* ============================================================
   HOLTER IF — Site stylesheet
   Tokens hentet fra designmanual.html (v2 / Fraunces)
   Komponenter er lagt opp så hver del kan flyttes til en
   egen React-/Astro-komponent uten å endre regler.
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --primary-green: #0D441A;
  --deep-green:    #06381A;
  --accent-green:  #4E9F6D;
  --off-white:     #F6F4EE;
  --paper:         #FBFAF6;
  --dark-gray:     #2C2C2C;
  --light-gray:    #EAEAEA;
  --hairline:      rgba(13, 68, 26, 0.12);
  --hairline-strong: rgba(13, 68, 26, 0.22);
  --ink-soft:      rgba(13, 68, 26, 0.65);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', -apple-system, system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'Söhne Mono', ui-monospace, Consolas, monospace;
  --font-utility: 'Oswald', sans-serif;

  --container: 1280px;
  --gutter: 48px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark-gray);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
::selection { background: var(--accent-green); color: var(--off-white); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- TOPBAR / UTILITY ---------- */
/* component: <SiteTopbar /> */
.topbar {
  background: var(--deep-green);
  color: var(--off-white);
  font-family: var(--font-utility);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 12px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.topbar-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  box-shadow: 0 0 0 0 rgba(78,159,109,0.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(78,159,109,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(78,159,109,0); }
  100% { box-shadow: 0 0 0 0 rgba(78,159,109,0); }
}
.topbar a { text-decoration: none; opacity: 0.85; transition: opacity 0.2s; }
.topbar a:hover { opacity: 1; }

/* ---------- HEADER / MAIN NAV ---------- */
/* component: <SiteHeader /> */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246,244,238,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.site-header .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--deep-green);
}
.site-brand img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--hairline);
}
.site-brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.005em;
  line-height: 1;
}
.site-brand-tag {
  font-family: var(--font-utility);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-top: 4px;
}
.site-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-family: var(--font-utility);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.site-nav a {
  text-decoration: none;
  color: var(--deep-green);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--accent-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.site-nav a:hover::after,
.site-nav a.is-current::after { transform: scaleX(1); }
.site-nav a.is-current { color: var(--primary-green); }

/* Hamburger toggle — only shown ≤1100px */
.site-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--hairline-strong);
  border-radius: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  position: relative;
  align-items: center;
  justify-content: center;
}
.site-burger:hover { border-color: var(--primary-green); }
.site-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--deep-green);
  position: relative;
}
.site-burger span::before,
.site-burger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 1.5px;
  background: var(--deep-green);
}
.site-burger span::before { top: -7px; }
.site-burger span::after { top: 7px; }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--off-white);
  z-index: 200;
  display: none;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}
.mobile-drawer.is-open { display: flex; }
.mobile-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hairline);
}
.mobile-drawer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--deep-green);
}
.mobile-drawer-close {
  background: transparent;
  border: 1px solid var(--hairline-strong);
  border-radius: 6px;
  width: 44px;
  height: 44px;
  font-size: 22px;
  color: var(--deep-green);
  cursor: pointer;
}
.mobile-drawer nav {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
}
.mobile-drawer nav a {
  text-decoration: none;
  color: var(--deep-green);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.01em;
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-drawer nav a::after {
  content: '→';
  font-family: var(--font-utility);
  font-weight: 400;
  font-size: 18px;
  color: var(--accent-green);
  opacity: 0.7;
}
.mobile-drawer nav a.is-current { color: var(--primary-green); }
.mobile-drawer-foot {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-drawer-foot a {
  font-family: var(--font-utility);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
}
body.no-scroll { overflow: hidden; }
.site-cta {
  font-family: var(--font-utility);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--off-white);
  background: var(--primary-green);
  padding: 12px 22px;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.site-cta:hover { background: var(--deep-green); transform: translateY(-1px); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--font-utility);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-primary { background: var(--primary-green); color: var(--off-white); }
.btn-primary:hover { background: var(--deep-green); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--off-white); border-color: rgba(246,244,238,0.4); }
.btn-ghost:hover { border-color: var(--off-white); }
.btn-outline { background: transparent; color: var(--primary-green); border-color: var(--primary-green); }
.btn-outline:hover { background: var(--primary-green); color: var(--off-white); }
.btn-arrow { font-size: 18px; line-height: 1; transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------- SECTION SHELL ---------- */
section { padding: 120px 0; position: relative; }
section.tight { padding: 80px 0; }

.section-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.section-num {
  font-family: var(--font-utility);
  font-weight: 500;
  font-size: 88px;
  line-height: 0.85;
  color: var(--primary-green);
}
.section-num small {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dark-gray);
  margin-top: 16px;
  font-weight: 500;
}
.section-title h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--deep-green);
  margin-bottom: 16px;
  text-wrap: balance;
}
.section-title h2 em {
  font-style: italic;
  font-weight: 600;
  color: var(--accent-green);
}
.section-title p {
  font-size: 17px;
  color: #4a4a4a;
  max-width: 560px;
  line-height: 1.6;
}

/* ---------- HERO (variant: identity) ---------- */
/* component: <Hero variant="identity" /> */
.hero {
  background: var(--deep-green);
  color: var(--off-white);
  position: relative;
  overflow: hidden;
  padding: 56px 0 0;
}
.hero::before {
  content: '';
  position: absolute;
  width: 1100px; height: 1100px;
  right: -380px; top: -380px;
  background: radial-gradient(circle at center, rgba(78,159,109,0.22), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  left: -250px; bottom: -200px;
  background: radial-gradient(circle at center, rgba(11,93,42,0.55), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 40px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-utility);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--accent-green);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  text-wrap: nowrap;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-green);
}
.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  max-width: 540px;
  color: rgba(246,244,238,0.78);
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-photo {
  aspect-ratio: 4 / 5;
  background:
    repeating-linear-gradient(135deg,
      rgba(78,159,109,0.16) 0,
      rgba(78,159,109,0.16) 1px,
      transparent 1px,
      transparent 14px),
    linear-gradient(180deg, rgba(78,159,109,0.18), rgba(13,68,26,0.4));
  border: 1px solid rgba(246,244,238,0.18);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.hero-photo::after {
  content: attr(data-label);
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246,244,238,0.65);
}
.hero-photo-tag {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-utility);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246,244,238,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-photo-tag::before {
  content: '';
  width: 18px; height: 1px;
  background: rgba(246,244,238,0.6);
}
.hero-photo-overlay {
  position: absolute;
  bottom: 64px; left: 24px; right: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 28px;
  line-height: 1.1;
  color: rgba(246,244,238,0.9);
  text-wrap: balance;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-top: 1px solid rgba(246,244,238,0.18);
  padding: 40px 0;
}
.hero-meta .item .label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246,244,238,0.55);
  margin-bottom: 12px;
}
.hero-meta .item .value {
  font-family: var(--font-utility);
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  color: var(--off-white);
}
.hero-meta .item .value-sm {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--off-white);
  line-height: 1.2;
}

/* ---------- NEXT MATCH STRIP ---------- */
/* component: <NextMatchStrip /> */
.match-strip {
  background: var(--off-white);
  border-bottom: 1px solid var(--hairline);
}
.match-strip .container {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 32px;
  padding-top: 22px;
  padding-bottom: 22px;
}
.match-strip-tag {
  font-family: var(--font-utility);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-green);
  display: flex;
  align-items: center;
  gap: 10px;
}
.match-strip-tag::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 0 4px rgba(78,159,109,0.2);
}
.match-strip-teams {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--deep-green);
  letter-spacing: -0.01em;
}
.match-strip-teams .vs {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  color: var(--accent-green);
  margin: 0 8px;
}
.match-strip-meta {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.match-strip-when {
  font-family: var(--font-utility);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-green);
}
.match-strip-link {
  font-family: var(--font-utility);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-green);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.match-strip-link:hover { color: var(--accent-green); }

/* ---------- SPORTS GRID ---------- */
/* component: <SportsGrid /> */
.sports-section { background: var(--off-white); }
.sports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sport-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.sport-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-green);
  box-shadow: 0 24px 48px -28px rgba(13,68,26,0.4);
}
.sport-card-photo {
  aspect-ratio: 16/11;
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg,
      rgba(13,68,26,0.08) 0,
      rgba(13,68,26,0.08) 1px,
      transparent 1px,
      transparent 12px),
    linear-gradient(180deg, rgba(78,159,109,0.12), rgba(13,68,26,0.18));
}
.sport-card-photo::after {
  content: attr(data-label);
  position: absolute;
  bottom: 16px; left: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(13,68,26,0.55);
}
.sport-card-num {
  position: absolute;
  top: 16px; left: 18px;
  font-family: var(--font-utility);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-green);
}
.sport-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.sport-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--deep-green);
}
.sport-card-name em { font-style: italic; color: var(--accent-green); font-weight: 600; }
.sport-card-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: #555;
}
.sport-card-foot {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-utility);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.sport-card-foot strong { color: var(--primary-green); font-weight: 600; }
.sport-card-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary-green);
  color: var(--off-white);
  display: grid; place-items: center;
  font-size: 16px;
  transition: transform 0.25s ease, background 0.2s;
}
.sport-card:hover .sport-card-arrow {
  transform: translateX(4px) rotate(-45deg);
  background: var(--accent-green);
}

/* ---------- NEWS FEED ---------- */
/* component: <NewsFeed /> */
.news-section { background: var(--paper); }
.news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.news-filter button {
  font-family: var(--font-utility);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--hairline-strong);
  color: var(--primary-green);
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.news-filter button:hover { background: var(--off-white); }
.news-filter button.is-active {
  background: var(--primary-green);
  color: var(--off-white);
  border-color: var(--primary-green);
}

.news-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
.news-card {
  background: var(--off-white);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -24px rgba(13,68,26,0.3); }
.news-card-photo {
  aspect-ratio: 16/10;
  position: relative;
  background:
    repeating-linear-gradient(45deg,
      rgba(13,68,26,0.08) 0,
      rgba(13,68,26,0.08) 1px,
      transparent 1px,
      transparent 12px),
    linear-gradient(180deg, rgba(78,159,109,0.12), rgba(13,68,26,0.16));
}
.news-card--featured .news-card-photo { aspect-ratio: 4/3; }
.news-card-photo::after {
  content: attr(data-label);
  position: absolute;
  bottom: 14px; left: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(13,68,26,0.55);
}
.news-card-cat {
  position: absolute;
  top: 14px; left: 16px;
  background: var(--off-white);
  font-family: var(--font-utility);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-green);
  padding: 5px 10px;
  border-radius: 999px;
}
.news-card-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.news-card-meta {
  font-family: var(--font-utility);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-green);
}
.news-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--deep-green);
  text-wrap: balance;
}
.news-card--featured .news-card-title { font-size: 32px; }
.news-card-excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: #555;
}
.news-card-foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
}

.news-foot {
  margin-top: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
}

/* ---------- SKIHYTTA / FEATURED CARD ---------- */
/* component: <FeaturedSplit /> */
.featured-split { background: var(--deep-green); color: var(--off-white); position: relative; overflow: hidden; }
.featured-split::before {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  right: -300px; top: -350px;
  background: radial-gradient(circle, rgba(78,159,109,0.18), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.featured-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.featured-split-eyebrow {
  font-family: var(--font-utility);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.featured-split-eyebrow::before {
  content: '';
  width: 36px; height: 1px;
  background: var(--accent-green);
}
.featured-split h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.featured-split h2 em { font-style: italic; font-weight: 400; color: var(--accent-green); }
.featured-split-lead {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(246,244,238,0.78);
  margin-bottom: 32px;
  max-width: 480px;
}
.featured-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(246,244,238,0.18);
  border-bottom: 1px solid rgba(246,244,238,0.18);
  margin-bottom: 32px;
}
.featured-stats .num {
  font-family: var(--font-utility);
  font-weight: 500;
  font-size: 36px;
  line-height: 1;
  color: var(--off-white);
}
.featured-stats .lbl {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246,244,238,0.55);
  margin-top: 8px;
}
.featured-photo {
  aspect-ratio: 4/5;
  background:
    repeating-linear-gradient(135deg,
      rgba(246,244,238,0.06) 0,
      rgba(246,244,238,0.06) 1px,
      transparent 1px,
      transparent 14px),
    linear-gradient(180deg, rgba(78,159,109,0.18), rgba(6,56,26,0.4));
  border: 1px solid rgba(246,244,238,0.18);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.featured-photo::after {
  content: attr(data-label);
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246,244,238,0.65);
}
.featured-photo-tag {
  position: absolute;
  top: 24px; left: 24px;
  font-family: var(--font-utility);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-green);
}

/* ---------- SPONSOR CAROUSEL ---------- */
/* component: <SponsorCarousel /> */
.sponsor-section { background: var(--off-white); }
.sponsor-marquee {
  position: relative;
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--paper);
  border-radius: 8px;
}
.sponsor-marquee::before,
.sponsor-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.sponsor-marquee::before { left: 0; background: linear-gradient(90deg, var(--paper), transparent); }
.sponsor-marquee::after { right: 0; background: linear-gradient(-90deg, var(--paper), transparent); }
.sponsor-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: scroll-x 40s linear infinite;
}
.sponsor-section:hover .sponsor-track { animation-play-state: paused; }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.sponsor-cell {
  display: grid;
  place-items: center;
  height: 80px;
  min-width: 200px;
  padding: 0 24px;
}
.sponsor-cell img { max-height: 60px; max-width: 180px; width: auto; object-fit: contain; }
.sponsor-cell--placeholder {
  border: 1.5px dashed var(--hairline-strong);
  border-radius: 8px;
  font-family: var(--font-utility);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- VALUES / PILLARS ---------- */
.values-section { background: var(--paper); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline-strong);
  border-bottom: 1px solid var(--hairline-strong);
}
.value {
  padding: 48px 32px;
  border-right: 1px solid var(--hairline);
}
.value:last-child { border-right: none; }
.value-num {
  font-family: var(--font-utility);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--accent-green);
  margin-bottom: 24px;
}
.value-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.1;
  color: var(--deep-green);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.value-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* ---------- FOOTER ---------- */
/* component: <SiteFooter /> */
footer.site-footer {
  background: var(--deep-green);
  color: var(--off-white);
  padding: 96px 0 40px;
  position: relative;
  overflow: hidden;
}
footer.site-footer::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  left: -250px; top: -200px;
  background: radial-gradient(circle, rgba(78,159,109,0.18), transparent 60%);
  border-radius: 50%;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(246,244,238,0.18);
  position: relative; z-index: 2;
}
.foot-top h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.foot-top h3 em { font-style: italic; color: var(--accent-green); font-weight: 400; }
.foot-newsletter {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.foot-newsletter label {
  font-family: var(--font-utility);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-green);
}
.foot-newsletter form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  background: rgba(246,244,238,0.08);
  border: 1px solid rgba(246,244,238,0.2);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
}
.foot-newsletter input {
  background: transparent;
  border: 0;
  outline: none;
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 14px;
  width: 100%;
}
.foot-newsletter input::placeholder { color: rgba(246,244,238,0.5); }
.foot-newsletter button {
  background: var(--accent-green);
  color: var(--deep-green);
  font-family: var(--font-utility);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  transition: background 0.2s;
}
.foot-newsletter button:hover { background: var(--off-white); }

.foot-cols {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding: 56px 0;
  position: relative; z-index: 2;
}
.foot-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.foot-brand img {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1.5px solid rgba(246,244,238,0.3);
  margin-bottom: 8px;
}
.foot-brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.foot-brand p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(246,244,238,0.65);
  max-width: 280px;
}
.foot-col h4 {
  font-family: var(--font-utility);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 18px;
}
.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.foot-col a {
  color: rgba(246,244,238,0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.foot-col a:hover { color: var(--accent-green); }
.foot-col p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(246,244,238,0.7);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(246,244,238,0.18);
  font-family: var(--font-utility);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246,244,238,0.55);
  position: relative; z-index: 2;
  flex-wrap: wrap;
  gap: 16px;
}
.foot-bottom .right { display: flex; gap: 28px; }

/* ---------- PAGE HERO (subpages) ---------- */
.page-hero {
  background: var(--deep-green);
  color: var(--off-white);
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  right: -300px; top: -300px;
  background: radial-gradient(circle, rgba(78,159,109,0.2), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-crumbs {
  font-family: var(--font-utility);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 28px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.page-hero-crumbs a { text-decoration: none; opacity: 0.8; }
.page-hero-crumbs a:hover { opacity: 1; }
.page-hero-crumbs span.sep { opacity: 0.4; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  text-wrap: balance;
  max-width: 14ch;
}
.page-hero h1 em { font-style: italic; font-weight: 400; color: var(--accent-green); }
.page-hero-lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(246,244,238,0.78);
  max-width: 560px;
}

/* ---------- GENERIC CARD GRID UTILITIES ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stack-12 { display: flex; flex-direction: column; gap: 12px; }
.stack-24 { display: flex; flex-direction: column; gap: 24px; }

.card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.1;
  color: var(--deep-green);
  letter-spacing: -0.01em;
}
.card p { font-size: 15px; line-height: 1.6; color: #555; }
.card-eyebrow {
  font-family: var(--font-utility);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-green);
}

.placeholder-photo {
  aspect-ratio: 16/10;
  border-radius: 4px;
  background:
    repeating-linear-gradient(135deg,
      rgba(13,68,26,0.08) 0,
      rgba(13,68,26,0.08) 1px,
      transparent 1px,
      transparent 12px),
    linear-gradient(180deg, rgba(78,159,109,0.12), rgba(13,68,26,0.16));
  position: relative;
  border: 1px solid var(--hairline);
}
.placeholder-photo::after {
  content: attr(data-label);
  position: absolute;
  bottom: 14px; left: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(13,68,26,0.55);
}

/* ---------- TWEAKS-PROOFING FOR PHONE ---------- */
@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card--featured { grid-column: 1 / -1; }
  .foot-cols { grid-template-columns: 1.4fr 1fr 1fr; }
  .foot-cols .foot-col:last-child { grid-column: 1 / -1; }
}
@media (max-width: 1100px) {
  .site-header .container { grid-template-columns: auto 1fr auto; gap: 16px; }
  .site-nav { display: none; }
  .site-burger { display: inline-flex; justify-self: end; }
  .site-cta { display: none; }
}
@media (max-width: 900px) {
  :root { --gutter: 24px; }
  .hero { padding-top: 32px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 24px; }
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
  .section-num { font-size: 64px; }
  .sports-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .featured-split-grid { grid-template-columns: 1fr; gap: 32px; }
  .featured-stats { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .value { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .foot-top { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr; gap: 32px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .match-strip .container { grid-template-columns: 1fr; gap: 12px; text-align: left; }
  section { padding: 80px 0; }
}
@media (max-width: 540px) {
  .topbar { font-size: 10px; letter-spacing: 0.18em; }
  .topbar .container { flex-direction: column; gap: 8px; align-items: flex-start; }
  .topbar-right { gap: 16px; }
  .hero-meta { grid-template-columns: 1fr 1fr; }
  .hero-meta .item .value { font-size: 36px; }
  .foot-top h3 { font-size: 32px; }
}

/* ---------- TWEAKS PANEL (custom) ---------- */
.tweaks {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 100;
  width: 320px;
  background: var(--deep-green);
  color: var(--off-white);
  border-radius: 14px;
  border: 1px solid rgba(246,244,238,0.18);
  padding: 22px;
  font-family: var(--font-body);
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.4);
  display: none;
}
.tweaks.is-open { display: block; }
.tweaks h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tweaks h4 button {
  background: transparent;
  border: 0;
  color: rgba(246,244,238,0.7);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}
.tweaks h4 button:hover { color: var(--off-white); }
.tweaks .tweak-row { margin-top: 18px; }
.tweaks .tweak-label {
  font-family: var(--font-utility);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-green);
  display: block;
  margin-bottom: 8px;
}
.tweaks .seg {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  background: rgba(246,244,238,0.08);
  border-radius: 999px;
  padding: 4px;
}
.tweaks .seg button {
  background: transparent;
  border: 0;
  color: rgba(246,244,238,0.6);
  font-family: var(--font-utility);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 6px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.tweaks .seg button.is-active {
  background: var(--accent-green);
  color: var(--deep-green);
  font-weight: 600;
}
.tweaks-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(246,244,238,0.15);
  font-size: 12px;
  line-height: 1.5;
  color: rgba(246,244,238,0.6);
}

/* ---------- HEAVY VARIANT: cream hero ---------- */
[data-hero-mood="cream"] .hero {
  background: var(--off-white);
  color: var(--deep-green);
}
[data-hero-mood="cream"] .hero h1 { color: var(--deep-green); }
[data-hero-mood="cream"] .hero h1 em { color: var(--primary-green); }
[data-hero-mood="cream"] .hero-sub { color: #4a4a4a; }
[data-hero-mood="cream"] .hero-eyebrow { color: var(--primary-green); }
[data-hero-mood="cream"] .hero-eyebrow::before { background: var(--primary-green); }
[data-hero-mood="cream"] .hero-meta { border-top-color: var(--hairline-strong); }
[data-hero-mood="cream"] .hero-meta .item .label { color: var(--ink-soft); }
[data-hero-mood="cream"] .hero-meta .item .value,
[data-hero-mood="cream"] .hero-meta .item .value-sm { color: var(--deep-green); }
[data-hero-mood="cream"] .hero::before { background: radial-gradient(circle at center, rgba(78,159,109,0.16), transparent 60%); }
[data-hero-mood="cream"] .hero::after { background: radial-gradient(circle at center, rgba(13,68,26,0.08), transparent 65%); }
[data-hero-mood="cream"] .hero-photo {
  background:
    repeating-linear-gradient(135deg,
      rgba(13,68,26,0.08) 0,
      rgba(13,68,26,0.08) 1px,
      transparent 1px,
      transparent 14px),
    linear-gradient(180deg, rgba(78,159,109,0.18), rgba(13,68,26,0.1));
  border-color: var(--hairline-strong);
}
[data-hero-mood="cream"] .hero-photo::after,
[data-hero-mood="cream"] .hero-photo-tag { color: var(--ink-soft); }
[data-hero-mood="cream"] .hero-photo-tag::before { background: var(--ink-soft); }
[data-hero-mood="cream"] .btn-ghost { color: var(--deep-green); border-color: var(--hairline-strong); }
[data-hero-mood="cream"] .btn-ghost:hover { border-color: var(--deep-green); }

/* ---------- DENSITY VARIANT ---------- */
[data-density="airy"] section { padding: 160px 0; }
[data-density="compact"] section { padding: 88px 0; }
