/* ============================================================
   FLOYD CENTRAL ATHLETICS — DESIGN SYSTEM  (fc.css)
   One system. Twenty sports. Every Highlander spotlighted.

   Theme a sport by overriding --sport-accent + --sport-motif
   on the <body>. Everything else stays unmistakably FC.
   ============================================================ */

:root {
  /* --- Brand core (never change per sport) --- */
  --fc-green:        #004823;
  --fc-green-deep:   #00301a;
  --fc-green-hi:     #00602f;
  --fc-gold:         #FECB0D;
  --fc-gold-soft:    #ffdd57;
  --fc-white:        #ffffff;
  --fc-black:        #0b1410;

  /* --- Neutrals (green-biased, chosen not defaulted) --- */
  --fc-paper:        #ffffff;
  --fc-ink:          #101d16;
  --fc-ink-soft:     #46564c;
  --fc-tint:         #eef3ef;
  --fc-line:         #d6ded8;

  /* --- Per-sport accent (default = gold; sports override) --- */
  --sport-accent:    var(--fc-gold);
  --sport-accent-ink:#00301a;

  /* --- Type --- */
  --font-display: Rockwell, "Rockwell Nova", "Roboto Slab", Georgia, serif;
  --font-body:    "Avenir Next", Avenir, "Segoe UI", system-ui, -apple-system, sans-serif;

  /* --- Space + shape --- */
  --step: 0.5rem;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 18px 44px rgba(0,40,20,0.12);
  --shadow-lg: 0 30px 70px rgba(0,40,20,0.22);
  --maxw: 1160px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --fc-paper: #0b150f; --fc-ink: #e9efe9; --fc-ink-soft: #9db5a5;
    --fc-tint: #10201724; --fc-line: #21382b;
    --fc-green: #0c3a22; --fc-green-deep: #071f13;
  }
}
:root[data-theme="dark"] {
  --fc-paper: #0b150f; --fc-ink: #e9efe9; --fc-ink-soft: #9db5a5;
  --fc-tint: #10201724; --fc-line: #21382b;
  --fc-green: #0c3a22; --fc-green-deep: #071f13;
}
:root[data-theme="light"] {
  --fc-paper: #ffffff; --fc-ink: #101d16; --fc-ink-soft: #46564c;
  --fc-tint: #eef3ef; --fc-line: #d6ded8;
  --fc-green: #004823; --fc-green-deep: #00301a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { animation: none !important; transition: none !important; } }
body {
  margin: 0; background: var(--fc-paper); color: var(--fc-ink);
  font-family: var(--font-body); line-height: 1.6; font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- Typography ---------- */
.fc-display { font-family: var(--font-display); }
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.08; margin: 0; text-wrap: balance; }
/* Accent rule: gold text never sits on paper/white — on light surfaces the
   accent voice is GREEN; gold speaks only on green/dark surfaces. */
.fc-eyebrow {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 0.76rem; color: var(--fc-green);
}
.fc-hero .fc-eyebrow, .fc-on-green .fc-eyebrow, .fc-footer .fc-eyebrow,
:root[data-theme="dark"] .fc-eyebrow { color: var(--sport-accent); }
.fc-lede { font-size: 1.15rem; color: var(--fc-ink-soft); max-width: 60ch; }
.fc-section { padding: clamp(3rem, 7vw, 5.5rem) 1.4rem; }
.fc-wrap { max-width: var(--maxw); margin: 0 auto; }
.fc-center { text-align: center; }

/* ---------- Tartan rule (the signature FC divider) ---------- */
.fc-tartan {
  height: 14px;
  background:
    repeating-linear-gradient(90deg, transparent 0 40px, var(--sport-accent) 40px 44px, transparent 44px 70px, rgba(255,255,255,0.35) 70px 72px, transparent 72px 112px),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.28) 0 3px, transparent 3px 9px),
    linear-gradient(var(--fc-green), var(--fc-green-deep));
}

/* ---------- Buttons ---------- */
.fc-btn {
  display: inline-flex; align-items: center; gap: 0.5rem; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 0.98rem;
  padding: 0.8rem 1.5rem; border-radius: var(--radius-sm); border: 0; text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.fc-btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.fc-btn:focus-visible { outline: 3px solid var(--sport-accent); outline-offset: 2px; }
.fc-btn--gold { background: var(--sport-accent); color: var(--sport-accent-ink); }
.fc-btn--green { background: var(--fc-green); color: #fff; }
.fc-btn--ghost { background: rgba(255,255,255,0.14); color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.fc-btn--outline { background: none; color: var(--fc-ink); border: 1px solid var(--fc-line); }
.fc-btn--sm { padding: 0.5rem 1rem; font-size: 0.85rem; }

/* ---------- Top nav ---------- */
.fc-nav {
  position: sticky; top: 0; z-index: 50; backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--fc-green) 92%, transparent);
  color: #fff; border-bottom: 3px solid var(--sport-accent); padding: 0 1.4rem;
}
.fc-nav__in { max-width: 1340px; margin: 0 auto; display: flex; align-items: center; gap: 1rem; padding: 0.7rem 0; }
.fc-nav__brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: #fff; }
.fc-nav__brand img { width: 38px; height: 38px; }
.fc-nav__brand b { font-family: var(--font-display); font-size: 1.02rem; letter-spacing: 0.02em; line-height: 1.1; }
.fc-nav__brand span { display: block; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--sport-accent); }
.fc-nav__links { margin-left: auto; display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.fc-nav__links .fc-mega-host { display: inline-flex; align-items: center; }
.fc-nav__links a { color: #d9e7de; text-decoration: none; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.fc-nav__links a:hover { color: var(--sport-accent); background-size: 100% 2px; }
.fc-nav__links a { background-image: linear-gradient(var(--sport-accent), var(--sport-accent)); background-repeat: no-repeat; background-position: 0 100%; background-size: 0% 2px; transition: background-size .22s ease, color .15s ease; padding-bottom: 3px; }
.fc-nav__links a { white-space: nowrap; }
.fc-nav__cta { margin-left: 0.4rem; flex: none; }
@media (max-width: 820px) {
  .fc-nav__in { flex-wrap: wrap; gap: 0.5rem 1rem; }
  .fc-nav__cta { margin-left: auto; }
  .fc-nav__links {
    order: 3; width: 100%; margin-left: 0; gap: 1.1rem;
    overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch;
    padding-bottom: 2px; scrollbar-width: none;
  }
  .fc-nav__links::-webkit-scrollbar { display: none; }
}

/* ---------- Hero ---------- */
.fc-hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(900px 460px at 82% -12%, color-mix(in srgb, var(--sport-accent) 22%, transparent), transparent 60%),
    linear-gradient(155deg, var(--fc-green-hi) 0%, var(--fc-green) 45%, var(--fc-green-deep) 100%);
  padding: clamp(3rem, 8vw, 6rem) 1.4rem clamp(2.5rem, 6vw, 4.5rem);
}
.fc-hero__wm { position: absolute; right: -8%; top: -22%; width: 54%; aspect-ratio: 1; opacity: 0.08; background: center/contain no-repeat; transform: rotate(-8deg); pointer-events: none; }
.fc-hero__in { position: relative; max-width: var(--maxw); margin: 0 auto; }
.fc-hero h1 { font-size: clamp(2.8rem, 9vw, 6.4rem); letter-spacing: -0.015em; }
.fc-hero h1 .accent { color: var(--sport-accent); }
.fc-hero__sub { color: #cfe0d5; font-size: 1.12rem; max-width: 54ch; margin: 1rem 0 1.6rem; }
.fc-hero__cta { display: flex; gap: 0.7rem; flex-wrap: wrap; }

/* ---------- Hero quick-action hub (universal, top-of-fold) ---------- */
.fc-actions {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.7rem; margin-top: 1.9rem;
}
.fc-action {
  display: flex; flex-direction: column; gap: 0.55rem; text-decoration: none; color: #fff;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius); padding: 1.05rem 1.05rem 0.95rem; min-height: 108px;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}
.fc-action:hover, .fc-action:focus-visible {
  transform: translateY(-3px); background: rgba(255,255,255,0.14);
  border-color: var(--sport-accent); outline: none;
}
.fc-action__ic { width: 26px; height: 26px; color: var(--sport-accent); flex: none; }
.fc-action b { font-family: var(--font-display); font-size: 1.02rem; line-height: 1.08; margin-top: auto; }
.fc-action span { font-size: 0.72rem; color: #cfe0d5; letter-spacing: 0.01em; }
.fc-action--gold { background: var(--sport-accent); border-color: var(--sport-accent); color: var(--sport-accent-ink); }
.fc-action--gold .fc-action__ic { color: var(--sport-accent-ink); }
.fc-action--gold span { color: rgba(0,42,22,0.72); }
@media (max-width: 860px) {
  .fc-actions { grid-template-columns: repeat(2, 1fr); gap: 0.55rem; }
  .fc-action { min-height: 92px; padding: 0.85rem; }
  .fc-action--wide { grid-column: 1 / -1; flex-direction: row; align-items: center; min-height: 0; gap: 0.7rem; }
  .fc-action--wide b { margin-top: 0; }
  .fc-action--wide .fc-action__ic { width: 22px; height: 22px; }
  .fc-action--wide span { margin-left: auto; }
}

/* ---------- Hero eyebrow leading (breathing room above the headline) ---------- */
.fc-hero .fc-eyebrow { display: block; margin-bottom: 0.7rem; }
.fc-hero__sub { margin-top: 1.1rem; }

/* ---------- Hero dashboard: scoreboard + pick-a-team + explore ---------- */
.fc-dash { margin-top: 1.6rem; display: grid; gap: 1rem; }
/* grid items default to min-width:auto, which lets the scoreboard's content
   blow the column out past the viewport — allow children to shrink instead */
.fc-dash > div { min-width: 0; }
.fc-dash__label { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.68rem; color: var(--sport-accent); }

.fc-scores-wrap { position: relative; }
.fc-scores { display: flex; gap: 0.6rem; overflow-x: auto; padding-bottom: 0.3rem; margin-top: 0.5rem; scrollbar-width: none; scroll-snap-type: x mandatory; scroll-behavior: smooth; }
.fc-scores::-webkit-scrollbar { display: none; }
.fc-score, .fc-score--all { scroll-snap-align: start; }
.fc-car-btn {
  position: absolute; top: 50%; transform: translateY(-38%); z-index: 5;
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25);
  background: var(--fc-green-deep); color: #fff; cursor: pointer; display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(0,20,10,0.45); transition: background .15s ease, opacity .15s ease;
}
.fc-car-btn:hover { background: var(--fc-green-hi); }
.fc-car-btn:focus-visible { outline: 3px solid var(--sport-accent); }
.fc-car-btn--prev { left: -14px; }
.fc-car-btn--next { right: -14px; }
.fc-car-btn[disabled] { opacity: 0.35; cursor: default; }
.fc-car-btn svg { width: 16px; height: 16px; }
@media (max-width: 860px) { .fc-car-btn { display: none; } } /* touch: swipe */
.fc-score--all {
  flex: 0 0 auto; min-width: 150px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  gap: 0.3rem; background: var(--sport-accent); border: 1px solid var(--sport-accent); border-radius: var(--radius-sm);
  padding: 0.7rem 0.95rem; text-decoration: none; color: #08251a;
  font-family: var(--font-display); font-weight: 700; transition: transform .15s ease, filter .15s ease;
}
.fc-score--all:hover { transform: translateY(-2px); filter: brightness(1.05); }
.fc-score--all small { font-family: var(--font-body); font-weight: 600; font-size: 0.68rem; color: rgba(8,37,26,0.7); text-transform: uppercase; letter-spacing: 0.08em; }
.fc-score { flex: 0 0 auto; min-width: 190px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius-sm); padding: 0.7rem 0.85rem; display: flex; flex-direction: column; gap: 0.12rem; }
.fc-score__sport { font-family: var(--font-display); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--sport-accent); }
.fc-score__vs { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: #fff; line-height: 1.1; }
.fc-score__meta { font-size: 0.72rem; color: #cfe0d5; }
.fc-score__tix { margin-top: 0.35rem; font-family: var(--font-display); font-size: 0.72rem; color: var(--sport-accent); text-decoration: none; }
.fc-score__tix:hover { text-decoration: underline; }

.fc-pick { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius); padding: 1rem 1rem 1.1rem; }
.fc-pick__row { display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap; }
/* Custom team picker (replaces the native select) */
.fc-sel { position: relative; flex: 0 1 auto; min-width: 230px; max-width: 320px; }
@media (max-width: 720px) { .fc-sel { flex: 1; max-width: 100%; } }
.fc-sel__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 0.7rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: #08251a;
  background: #fff; border: 0; border-radius: var(--radius-sm); padding: 0.7rem 0.9rem; cursor: pointer;
  text-align: left;
}
.fc-sel__btn:focus-visible { outline: 3px solid var(--sport-accent); outline-offset: 2px; }
.fc-sel__btn svg { flex: none; transition: transform .16s ease; }
.fc-sel.open .fc-sel__btn svg { transform: rotate(180deg); }
.fc-sel__panel {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 70;
  background: var(--fc-green-deep); border: 1px solid rgba(255,255,255,0.16);
  border-top: 3px solid var(--sport-accent); border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg); padding: 0.7rem; max-height: min(430px, 60vh); overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .15s ease, transform .15s ease;
}
.fc-sel.open .fc-sel__panel { opacity: 1; visibility: visible; transform: translateY(0); }
.fc-sel__season { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.13em; font-size: 0.62rem; color: var(--sport-accent); padding: 0.55rem 0.5rem 0.25rem; }
.fc-sel__opt {
  display: flex; align-items: center; gap: 0.55rem; width: 100%; text-align: left; cursor: pointer;
  background: none; border: 0; color: #e9efe9; font-family: var(--font-display); font-weight: 600;
  font-size: 0.95rem; padding: 0.5rem 0.55rem; border-radius: 7px;
}
.fc-sel__opt:hover, .fc-sel__opt:focus-visible { background: rgba(255,255,255,0.09); color: var(--sport-accent); outline: none; }
.fc-sel__opt[aria-selected="true"] { background: var(--sport-accent); color: #08251a; }
.fc-sel__opt .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sport-accent); flex: none; }
.fc-sel__opt[aria-selected="true"] .dot { background: #08251a; }
.fc-sel__opt .dot--soon { background: #46564c; }
.fc-sel__opt small { margin-left: auto; font-family: var(--font-body); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.1em; color: #7f9a8b; font-weight: 600; }
.fc-sel__opt[aria-selected="true"] small { color: rgba(8,37,26,0.6); }
.fc-pick__acts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; margin-top: 0.8rem; }
@media (max-width: 720px) {
  .fc-pick__acts { grid-template-columns: repeat(2, 1fr); }
  .fc-pick__acts .fc-pact:first-child { grid-column: 1 / -1; }
  .fc-pact { font-size: 0.8rem; padding: 0.65rem 0.7rem; }
  .fc-pick__row .fc-dash__label { width: 100%; }
}
.fc-pact { display: flex; align-items: center; gap: 0.45rem; text-decoration: none; color: #fff; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius-sm); padding: 0.7rem 0.8rem; font-family: var(--font-display); font-weight: 700; font-size: 0.86rem; transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease; }
.fc-pact:hover { transform: translateY(-2px); background: rgba(255,255,255,0.14); border-color: var(--sport-accent); }
.fc-pact svg { width: 18px; height: 18px; color: var(--sport-accent); flex: none; }
.fc-pact--gold { background: var(--sport-accent); border-color: var(--sport-accent); color: #08251a; }
.fc-pact--gold svg { color: #08251a; }

.fc-explore { display: flex; flex-wrap: wrap; gap: 0.4rem 1.3rem; }
.fc-explore a { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.74rem; color: #cfe0d5; text-decoration: none; }
.fc-explore a:hover { color: var(--sport-accent); }

/* ---------- Teams mega menu (hover/focus, desktop) ---------- */
.fc-mega-host { position: relative; display: inline-block; }
.fc-mega {
  z-index: 60;
}
.fc-mega::before { content: ""; position: absolute; top: -17px; left: 0; right: 0; height: 17px; }
.fc-mega__season { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.13em; font-size: 0.62rem; color: var(--sport-accent); margin: 0.3rem 0 0.2rem; }
.fc-mega a.fc-mega__item { display: flex; align-items: center; gap: 0.45rem; color: #e9efe9; text-decoration: none; font-size: 0.86rem; font-weight: 600; text-transform: none; letter-spacing: 0; padding: 0.28rem 0.35rem; border-radius: 6px; }
.fc-mega a.fc-mega__item:hover { background: rgba(255,255,255,0.08); color: var(--sport-accent); }
.fc-mega .fc-mega__soon { display: flex; align-items: center; gap: 0.45rem; color: #7f9a8b; font-size: 0.86rem; padding: 0.28rem 0.35rem; cursor: default; }
.fc-mega .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sport-accent); flex: none; }
.fc-mega .dot--soon { background: #46564c; }
.fc-mega__all { grid-column: 1 / -1; margin-top: 0.5rem; padding-top: 0.7rem; border-top: 1px solid rgba(255,255,255,0.12); font-family: var(--font-display); font-size: 0.78rem; }
.fc-mega__all a { color: var(--sport-accent); text-decoration: none; }
@media (max-width: 860px) { .fc-mega { display: none; } }

/* ---------- Stat strip ---------- */
.fc-stats { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.2rem 2.6rem; border-top: 1px solid rgba(255,255,255,0.22); padding-top: 1.4rem; margin-top: 2rem; }
.fc-stat b { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; color: var(--sport-accent); display: block; line-height: 1; font-variant-numeric: tabular-nums; }
.fc-stat span { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.14em; color: #cfe0d5; font-weight: 600; }

/* ---------- Cards / grids ---------- */
.fc-grid { display: grid; gap: 1.1rem; }
.fc-grid--3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.fc-grid--4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.fc-card {
  background: var(--fc-paper); color: var(--fc-ink); border: 1px solid var(--fc-line); border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.3rem;
}
.fc-card--accent { border-top: 4px solid var(--sport-accent); }
.fc-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.fc-card p { color: var(--fc-ink-soft); font-size: 0.94rem; margin: 0; }

/* ---------- Match / schedule rows ---------- */
.fc-match { display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center; padding: 0.9rem 1.1rem; border: 1px solid var(--fc-line); border-radius: var(--radius-sm); background: var(--fc-paper); color: var(--fc-ink); }
.fc-match + .fc-match { margin-top: 0.6rem; }
.fc-match__date { font-family: var(--font-display); font-weight: 700; color: var(--fc-green); text-align: center; line-height: 1; }
:root[data-theme="dark"] .fc-match__date { color: var(--sport-accent); }
.fc-match__date span { display: block; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fc-ink-soft); }
.fc-match__opp b { font-family: var(--font-display); }
.fc-match__opp small { color: var(--fc-ink-soft); }
.fc-match__res { font-family: var(--font-display); font-weight: 700; font-variant-numeric: tabular-nums; }
.fc-badge { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.18rem 0.45rem; border-radius: 4px; }
.fc-badge--w { background: var(--sport-accent); color: var(--sport-accent-ink); }
.fc-badge--home { background: var(--fc-tint); color: var(--fc-ink-soft); }

/* ---------- Roster ---------- */
.fc-player { border: 1px solid var(--fc-line); border-radius: var(--radius); overflow: hidden; background: var(--fc-paper); }
.fc-player__top { background: linear-gradient(160deg, var(--fc-green), var(--fc-green-deep)); color: #fff; padding: 1.1rem; display: flex; justify-content: space-between; align-items: flex-start; }
.fc-player__num { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; color: var(--sport-accent); line-height: 1; }
.fc-player__pos { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.12em; color: #cfe0d5; }
.fc-player__body { padding: 0.9rem 1.1rem; color: var(--fc-ink); }
.fc-player__body b { font-family: var(--font-display); font-size: 1.05rem; }
.fc-player__body span { color: var(--fc-ink-soft); font-size: 0.82rem; }

/* ---------- Sponsor tiers ---------- */
.fc-tier { border: 1px solid var(--fc-line); border-radius: var(--radius); overflow: hidden; background: var(--fc-paper); display: flex; flex-direction: column; }
.fc-tier--feature { border: 2px solid var(--sport-accent); box-shadow: var(--shadow-lg); }
.fc-tier__cap { background: var(--fc-green); color: #fff; padding: 1.2rem 1.3rem; }
.fc-tier--feature .fc-tier__cap { background: linear-gradient(150deg, var(--fc-green-hi), var(--fc-green-deep)); }
.fc-tier__name { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; }
.fc-tier__price { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--sport-accent); line-height: 1; margin-top: 0.3rem; }
.fc-tier__price small { font-size: 0.8rem; color: #cfe0d5; font-weight: 400; }
.fc-tier__body { padding: 1.1rem 1.3rem; flex: 1; color: var(--fc-ink); }
.fc-tier__body ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.fc-tier__body li { padding-left: 1.4rem; position: relative; font-size: 0.9rem; color: var(--fc-ink-soft); }
.fc-tier__body li::before { content: "✓"; position: absolute; left: 0; color: var(--fc-green); font-weight: 700; }
:root[data-theme="dark"] .fc-tier__body li::before { color: var(--sport-accent); }
.fc-tier__foot { padding: 0 1.3rem 1.3rem; }

/* ---------- On-green section ---------- */
.fc-on-green { background: linear-gradient(150deg, var(--fc-green-hi), var(--fc-green-deep)); color: #fff; }
.fc-on-green .fc-eyebrow { color: var(--sport-accent); }
.fc-on-green .fc-lede { color: #cfe0d5; }

/* ---------- Footer ---------- */
.fc-footer { background: var(--fc-green-deep); color: #bcd2c4; padding: 2.6rem 1.4rem; }
.fc-footer__in { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: space-between; align-items: center; }
.fc-footer b { font-family: var(--font-display); color: #fff; }
.fc-footer a { color: var(--sport-accent); text-decoration: none; }

/* ---------- Team-page "Program" section (coach + facts + history) ---------- */
.fc-prog { display: grid; grid-template-columns: minmax(280px, 1.1fr) 1fr; gap: 1.6rem 2.2rem; margin-top: 1.6rem; align-items: start; }
.fc-prog--solo { grid-template-columns: minmax(280px, 620px); }
.fc-prog > .fc-prog__hist { margin-top: 0.2rem; }
@media (max-width: 820px) { .fc-prog { grid-template-columns: 1fr; } }
.fc-coach { border: 1px solid var(--fc-line); border-left: 4px solid var(--sport-accent); border-radius: var(--radius); background: var(--fc-paper); color: var(--fc-ink); padding: 1.4rem 1.5rem; box-shadow: var(--shadow); }
.fc-coach__role { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.13em; font-size: 0.66rem; color: var(--sport-accent); }
:root[data-theme="light"] .fc-coach__role { color: var(--fc-green); }
.fc-coach__name { display: block; font-family: var(--font-display); font-size: 1.7rem; line-height: 1.1; margin: 0.3rem 0 0.5rem; }
.fc-coach p { color: var(--fc-ink-soft); font-size: 0.94rem; margin: 0 0 0.8rem; }
.fc-coach__contact { font-size: 0.86rem; font-weight: 600; }
.fc-coach__contact a { color: var(--fc-green); text-decoration: none; }
:root[data-theme="dark"] .fc-coach__contact a { color: var(--sport-accent); }
.fc-prog__hist { margin-top: 2.2rem; }
.fc-tl { border-left: 2px solid var(--fc-line); margin: 1.1rem 0 0; padding: 0; list-style: none; }
.fc-tl li { position: relative; padding: 0 0 1.1rem 1.5rem; }
.fc-tl li:last-child { padding-bottom: 0; }
.fc-tl li::before { content: ""; position: absolute; left: -7px; top: 5px; width: 12px; height: 12px; border-radius: 50%; background: var(--sport-accent); border: 2px solid var(--fc-paper); }
.fc-tl .yr { font-family: var(--font-display); font-weight: 700; color: var(--fc-green); font-size: 1rem; }
:root[data-theme="dark"] .fc-tl .yr { color: var(--sport-accent); }
.fc-tl p { margin: 0.1rem 0 0; color: var(--fc-ink-soft); font-size: 0.94rem; }

/* ---------- Renderer-shared helpers (used by every sport site) ---------- */
.sec-h { font-size: clamp(2rem, 4.5vw, 3.2rem); margin: 0.4rem 0 1.4rem; letter-spacing: -0.01em; }
.pitch-stripes { position: absolute; inset: 0; opacity: 0.12; pointer-events: none;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,0.18) 0 60px, transparent 60px 120px); }
.news-tag { color: var(--fc-green); font-family: var(--font-display); font-weight: 700; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.13em; }
:root[data-theme="dark"] .news-tag { color: var(--sport-accent); }
.activation { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 0.8rem; }
.act { border: 1px solid var(--fc-line); border-radius: var(--radius-sm); padding: 1rem; }
.act b { font-family: var(--font-display); display: block; margin-bottom: 0.2rem; }
.act span { font-size: 0.85rem; color: var(--fc-ink-soft); }

/* ---------- Utilities ---------- */
.fc-mt { margin-top: 1.4rem; } .fc-mt2 { margin-top: 2.4rem; }
.fc-muted { color: var(--fc-ink-soft); }
.fc-note { font-size: 0.8rem; color: var(--fc-ink-soft); }

/* ============================================================
   ROUND 2 · BRAND DEPTH — texture, tartan, mascot, band, footer
   ============================================================ */

/* ---------- Grain: kills the flat-gradient look on green surfaces ---------- */
.fc-hero::after, .fc-on-green::after, .fc-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
.fc-on-green { position: relative; }
.fc-on-green > * { position: relative; z-index: 1; }
.fc-hero > * { position: relative; z-index: 1; }

/* ---------- True tartan: the woven Highlander plaid ---------- */
.fc-plaid {
  background-color: var(--fc-green-deep);
  background-image:
    repeating-linear-gradient(90deg, rgba(254,203,13,0.85) 0 6px, transparent 6px 84px),
    repeating-linear-gradient(0deg, rgba(254,203,13,0.85) 0 6px, transparent 6px 84px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.5) 40px 42px, transparent 42px 84px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.5) 40px 42px, transparent 42px 84px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.32) 12px 26px, transparent 26px 54px, rgba(0,0,0,0.32) 54px 68px, transparent 68px 84px),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.32) 12px 26px, transparent 26px 54px, rgba(0,0,0,0.32) 54px 68px, transparent 68px 84px),
    linear-gradient(var(--fc-green), var(--fc-green-deep));
}
.fc-tartan { height: 16px; }

/* ---------- Marquee band: collegiate energy, pure CSS ---------- */
.fc-band { position: relative; overflow: hidden; padding: 1.05rem 0; border-top: 3px solid var(--sport-accent); border-bottom: 3px solid var(--sport-accent); background: var(--fc-green-deep); }
.fc-band__track { display: inline-flex; white-space: nowrap; will-change: transform; animation: fc-marquee 36s linear infinite; }
.fc-band span {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 1.05rem; padding: 0 1.3rem; color: #fff;
}
.fc-band span:nth-child(even) { color: transparent; -webkit-text-stroke: 1.4px var(--sport-accent); }
@keyframes fc-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Hero mascot: the Highlander finally ON the site ---------- */
/* Mascots live ONLY in the empty side gutters — content is never covered.
   Height is derived from gutter width via the wider (male) mark's aspect
   ratio (1056:1263 ≈ 0.836 w/h), so both marks always fit beside the content.
   Below 1660px there's no room to share — they step aside entirely. */
.fc-hero { --fc-gutter: calc((100vw - var(--maxw)) / 2); --fc-mh: min(460px, calc((var(--fc-gutter) - 32px) / 0.836)); }
.fc-hero__mascot {
  display: none; position: absolute; z-index: 0;
  /* stand WITH the headline: start at the hero's own top padding line */
  top: clamp(3rem, 8vw, 6rem);
  height: var(--fc-mh); width: auto;
  filter: drop-shadow(0 26px 44px rgba(0,20,10,0.5)); pointer-events: none;
}
@media (min-width: 1660px) {
  .fc-hero__mascot { display: block; }
  /* hug the content column, never cross it: gutter minus own width minus gap */
  .fc-hero__mascot--l { left:  max(14px, calc(var(--fc-gutter) - var(--fc-mh) * 0.836 - 30px)); }
  .fc-hero__mascot--r { right: max(14px, calc(var(--fc-gutter) - var(--fc-mh) * 0.556 - 30px)); }
  .fc-hero__mascot:not(.fc-hero__mascot--l):not(.fc-hero__mascot--r) { right: max(14px, calc(var(--fc-gutter) - var(--fc-mh) * 0.556 - 30px)); }
}

/* ---------- Rich footer ---------- */
.fc-footer2 { background: var(--fc-green-deep); color: #bcd2c4; position: relative; }
.fc-footer2::before { content: ""; display: block; height: 16px; background: inherit; }
.fc-footer2__in { max-width: var(--maxw); margin: 0 auto; padding: 3rem 1.4rem 2.2rem; display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 2.4rem; }
@media (max-width: 820px) { .fc-footer2__in { grid-template-columns: 1fr; gap: 1.8rem; } }
.fc-footer2__brand { display: flex; gap: 1rem; align-items: flex-start; }
.fc-footer2__brand img { width: 62px; height: 62px; flex: none; }
.fc-footer2__brand b { font-family: var(--font-display); color: #fff; font-size: 1.25rem; line-height: 1.15; display: block; }
.fc-footer2__motto { font-family: var(--font-display); color: var(--sport-accent); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.5rem; display: block; }
.fc-footer2 h4 { color: #fff; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; margin: 0 0 0.7rem; }
.fc-footer2 ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.fc-footer2 a { color: #bcd2c4; text-decoration: none; font-size: 0.92rem; }
.fc-footer2 a:hover { color: var(--sport-accent); }
.fc-footer2__meta { font-size: 0.88rem; line-height: 1.7; }
.fc-footer2__bar { border-top: 1px solid rgba(255,255,255,0.12); }
.fc-footer2__bar-in { max-width: var(--maxw); margin: 0 auto; padding: 1rem 1.4rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.78rem; color: #7f9a8b; }
.fc-footer2__bar b { color: #bcd2c4; font-family: var(--font-display); }

/* ============================================================
   MOBILE NAV — the Highlander drawer
   ============================================================ */
.fc-burger {
  display: none; width: 42px; height: 42px; flex: none; cursor: pointer;
  background: none; border: 1px solid rgba(255,255,255,0.28); border-radius: var(--radius-sm);
  place-items: center; color: #fff;
}
.fc-burger svg { width: 20px; height: 20px; }
@media (max-width: 860px) {
  .fc-nav__links { display: none !important; }
  .fc-burger { display: grid; }
  .fc-nav__cta { margin-left: auto; }
  .fc-nav__in { flex-wrap: nowrap; }
  .fc-nav__brand b { font-size: 0.92rem; }
}
body.fc-lock { overflow: hidden; }

.fc-drawer {
  position: fixed; inset: 0; z-index: 100; display: flex; flex-direction: column;
  background: linear-gradient(165deg, var(--fc-green) 0%, var(--fc-green-deep) 80%);
  color: #fff; padding: 0 1.4rem 1.4rem; overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-2%); transition: opacity .2s ease, transform .2s ease;
}
.fc-drawer.open { opacity: 1; visibility: visible; transform: none; }
.fc-drawer__top { display: flex; align-items: center; gap: 0.7rem; padding: 0.8rem 0 1.2rem; border-bottom: 1px solid rgba(255,255,255,0.14); }
.fc-drawer__top img { width: 38px; height: 38px; }
.fc-drawer__top b { font-family: var(--font-display); font-size: 1.02rem; }
.fc-drawer__x { margin-left: auto; width: 42px; height: 42px; background: none; border: 1px solid rgba(255,255,255,0.28); border-radius: var(--radius-sm); color: #fff; cursor: pointer; display: grid; place-items: center; }
.fc-drawer__x svg { width: 18px; height: 18px; }
.fc-drawer__nav { display: grid; padding: 1rem 0; }
.fc-drawer__nav > a, .fc-drawer__teams {
  font-family: var(--font-display); font-weight: 700; font-size: 1.55rem; color: #fff;
  text-decoration: none; padding: 0.65rem 0; background: none; border: 0; text-align: left; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.fc-drawer__nav > a:active, .fc-drawer__teams:active { color: var(--sport-accent); }
.fc-drawer__teams svg { width: 18px; height: 18px; transition: transform .18s ease; color: var(--sport-accent); }
.fc-drawer__teams[aria-expanded="true"] svg { transform: rotate(180deg); }
.fc-drawer__seasons { display: none; padding: 0.4rem 0 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.fc-drawer__seasons.open { display: block; }
.fc-drawer__season-h { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.13em; font-size: 0.64rem; color: var(--sport-accent); margin: 0.7rem 0 0.2rem; }
.fc-drawer__seasons a { display: flex; align-items: center; gap: 0.55rem; color: #e9efe9; text-decoration: none; font-size: 1.02rem; font-weight: 600; padding: 0.42rem 0.2rem; }
.fc-drawer__seasons .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sport-accent); flex: none; }
.fc-drawer__seasons .soon { color: #7f9a8b; }
.fc-drawer__seasons .soon .dot { background: #46564c; }
.fc-drawer__cta { margin-top: 1rem; }
.fc-drawer__cta .fc-btn { width: 100%; justify-content: center; font-size: 1.1rem; padding: 1rem; }
.fc-drawer__foot { margin-top: 1.4rem; font-size: 0.9rem; color: #bcd2c4; line-height: 2; }
.fc-drawer__foot a { color: #bcd2c4; text-decoration: none; }
.fc-drawer__foot a:active { color: var(--sport-accent); }
.fc-drawer__motto { font-family: var(--font-display); color: var(--sport-accent); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em; margin-top: 0.8rem; }

/* ---------- Hero lockup: mascots + headline as ONE composition ---------- */
.fc-hero > .fc-hero__in { max-width: 1340px; }
.fc-lockup { display: flex; align-items: center; justify-content: center; gap: clamp(0.8rem, 2.6vw, 2.4rem); text-align: center; margin-bottom: 1.4rem; }
.fc-lockup__text { max-width: 720px; min-width: 0; }
.fc-lockup__text h1 { font-size: clamp(2.3rem, 4.2vw, 4.55rem); }
.fc-lockup__text .fc-hero__sub { margin-left: auto; margin-right: auto; }
.fc-lockup__mascot { height: clamp(115px, 20vw, 390px); width: auto; flex: none; filter: drop-shadow(0 22px 38px rgba(0,20,10,0.5)); pointer-events: none; }
/* Mobile: mascots leave the row and become large low-opacity background figures */
@media (max-width: 900px) {
  .fc-lockup { display: block; position: relative; }
  .fc-lockup__text { position: relative; z-index: 1; max-width: none; }
  .fc-lockup__text h1 { font-size: clamp(2rem, 8.4vw, 2.9rem); }
  .fc-lockup .fc-hero__sub { font-size: 0.98rem; }
  .fc-lockup__mascot {
    position: absolute; top: 50%; translate: 0 -50%; z-index: 0;
    height: min(70vw, 360px); opacity: 0.14; filter: none;
  }
  .fc-lockup__mascot:first-child { left: -8%; }
  .fc-lockup__mascot:last-child { right: -8%; }
}

/* ---------- Team grid: staggered reveal on scroll ---------- */
@media (prefers-reduced-motion: no-preference) {
  #programs .sport { opacity: 0; transform: translateY(16px); transition: opacity .5s ease var(--d, 0ms), transform .55s cubic-bezier(.2,.7,.3,1) var(--d, 0ms); }
  #programs .sport.in { opacity: 1; transform: none; }
  #programs .season-h { opacity: 0; transform: translateY(8px); transition: opacity .45s ease, transform .45s ease; }
  #programs .season-h.in { opacity: 1; transform: none; }
}

/* ============================================================
   FIRST-LOAD CHOREOGRAPHY — the hero arrives
   (global reduced-motion rule disables all of this)
   ============================================================ */
@keyframes fcRise   { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes fcWingL  { from { opacity: 0; transform: translateX(-56px) scale(0.94); } to { transform: none; } }
@keyframes fcWingR  { from { opacity: 0; transform: translateX(56px) scale(0.94); } to { transform: none; } }
@keyframes fcFloat  { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes fcSheen  { from { background-position: 180% 0; } to { background-position: -180% 0; } }
@keyframes fcGlow   { 0%, 100% { opacity: 0.35; } 50% { opacity: 0.75; } }

.fc-lockup { position: relative; }
.fc-lockup::before {
  content: ""; position: absolute; inset: -18% -6%; z-index: -1; pointer-events: none;
  background: radial-gradient(52% 62% at 50% 42%, color-mix(in srgb, var(--sport-accent) 17%, transparent), transparent 72%);
  animation: fcGlow 9s ease-in-out 1.6s infinite;
}
.fc-lockup__mascot:first-child { animation: fcWingL 1s cubic-bezier(.2,.7,.25,1) both, fcFloat 7s ease-in-out 1.6s infinite; }
.fc-lockup__mascot:last-child  { animation: fcWingR 1s cubic-bezier(.2,.7,.25,1) both, fcFloat 7s ease-in-out 2.4s infinite; scale: -1 1; margin-left: -14px; }
.fc-lockup .fc-eyebrow    { animation: fcRise 0.7s ease 0.18s both; }
.fc-lockup__text h1       { animation: fcRise 0.85s cubic-bezier(.2,.7,.25,1) 0.32s both; }
.fc-lockup .fc-hero__sub  { animation: fcRise 0.8s ease 0.55s both; }
.fc-hero .fc-dash         { animation: fcRise 0.8s ease 0.75s both; }
.fc-hero .fc-stats        { animation: fcRise 0.8s ease 0.92s both; }

/* gold sheen ripples once across "every Highlander." after it lands */
.fc-lockup__text h1 .accent {
  background: linear-gradient(100deg, var(--sport-accent) 38%, #fff3c4 50%, var(--sport-accent) 62%);
  background-size: 220% 100%; background-position: 180% 0;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--sport-accent);
  animation: fcSheen 1.5s ease-out 1.15s both;
}

/* ---------- Site-wide section reveal (JS adds .fc-reveal; motion-safe) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .fc-reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .65s cubic-bezier(.2,.7,.3,1); }
  .fc-reveal.in { opacity: 1; transform: none; }
}

/* ---------- Compact hero for interior department pages ---------- */
.fc-hero--page { padding: clamp(1.8rem, 3.5vw, 2.8rem) 1.4rem clamp(1.6rem, 3vw, 2.4rem); }
.fc-hero--page h1 { font-size: clamp(1.9rem, 3.4vw, 3.3rem); }
.fc-hero--page .fc-hero__sub { font-size: 1.02rem; margin: 0.6rem 0 1.1rem; max-width: 62ch; }
.fc-hero--page .fc-hero__wm {
  width: 230px; height: 230px; right: max(1.4rem, calc((100vw - var(--maxw)) / 2));
  top: auto; bottom: -26px; transform: none; opacity: 0.17;
}
.fc-hero--page .fc-stats { margin-top: 1.2rem; padding-top: 1rem; }
.fc-hero--page .fc-stat b { font-size: 1.7rem; }

/* ---------- FC mark badge: bottom-right of interior page heroes ---------- */
.fc-hero__mark {
  position: absolute; z-index: 0; image-rendering: -webkit-optimize-contrast;
  right: max(1rem, calc((100vw - var(--maxw)) / 2 - 40px));
  bottom: -12%; width: clamp(220px, 24vw, 350px); height: auto;
  rotate: -10deg; opacity: 0.9;
  filter: drop-shadow(0 16px 34px rgba(0,20,10,0.5));
  pointer-events: none; will-change: opacity;
}
@media (max-width: 700px) { .fc-hero__mark { width: 140px; bottom: -8%; opacity: 0.4; } }

/* ---------- Schedule watermark: giant faded FC, straightens on scroll ---------- */
#schedule { position: relative; overflow: hidden; }
#schedule > .fc-wrap { position: relative; z-index: 1; }
.fc-schedule__mark {
  position: absolute; right: -3%; top: 50%; translate: 0 -50%;
  width: clamp(380px, 42vw, 660px); height: auto;
  opacity: 0.08; rotate: -12deg; pointer-events: none; will-change: rotate;
}
@media (max-width: 860px) { .fc-schedule__mark { width: 320px; right: -18%; } }

/* ---------- Record board (all-time lists) ---------- */
.fc-rec { max-width: 820px; margin-top: 1.4rem; border-top: 2px solid var(--fc-green); }
:root[data-theme="dark"] .fc-rec { border-top-color: var(--sport-accent); }
.fc-rec__row { display: grid; grid-template-columns: 3rem 1.4fr auto 1.6fr; gap: 0.4rem 1.1rem; align-items: baseline; padding: 0.55rem 0.4rem; border-bottom: 1px solid var(--fc-line); }
.fc-rec__rank { font-family: var(--font-display); font-weight: 700; color: var(--fc-ink-soft); font-variant-numeric: tabular-nums; }
.fc-rec__name { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; }
.fc-rec__mark { font-family: var(--font-display); font-weight: 700; font-variant-numeric: tabular-nums; color: var(--fc-green); }
:root[data-theme="dark"] .fc-rec__mark { color: var(--sport-accent); }
.fc-rec__meta { font-size: 0.8rem; color: var(--fc-ink-soft); text-align: right; }
.fc-rec__row--top { background: color-mix(in srgb, var(--sport-accent) 9%, transparent); }
.fc-rec__row--top .fc-rec__rank { color: var(--fc-green); }
:root[data-theme="dark"] .fc-rec__row--top .fc-rec__rank { color: var(--sport-accent); }
@media (max-width: 640px) {
  .fc-rec__row { grid-template-columns: 2.2rem 1fr auto; }
  .fc-rec__meta { grid-column: 2 / -1; text-align: left; margin-top: -0.2rem; }
}

/* ---------- Mobile nav balance ---------- */
@media (max-width: 860px) {
  .fc-nav__brand { gap: 0.55rem; min-width: 0; }
  .fc-nav__brand img { width: 32px; height: 32px; }
  .fc-nav__brand b { font-size: 0.95rem; white-space: nowrap; }
  .fc-nav__brand span { font-size: 0.52rem; letter-spacing: 0.1em; white-space: nowrap; }
  .fc-nav__cta { padding: 0.5rem 0.85rem; font-size: 0.8rem; }
}
@media (max-width: 375px) { .fc-nav__brand span { display: none; } }

/* ≤480px: compact bar — logo · full brand name · Tickets · burger */
@media (max-width: 480px) {
  .fc-nav { padding: 0 1rem; }
  .fc-nav__brand b { font-size: 0.85rem; }
  .fc-burger { width: 38px; height: 38px; }
  .fc-nav__cta { font-size: 0; padding: 0.55rem 0.8rem; }
  .fc-nav__cta::after { content: "Tickets"; font-size: 0.8rem; }
}

/* About mega menu: richer rows with descriptions */
.fc-mega a.fc-mega__item--rich { align-items: flex-start; padding: 0.42rem 0.35rem; }
.fc-mega a.fc-mega__item--rich .dot { margin-top: 7px; }
.fc-mega a.fc-mega__item--rich b { display: block; font-family: var(--font-display); font-size: 0.9rem; line-height: 1.2; }
.fc-mega a.fc-mega__item--rich small { display: block; font-size: 0.72rem; color: #9db5a5; font-weight: 400; line-height: 1.35; margin-top: 1px; }
.fc-mega a.fc-mega__item--rich:hover small { color: #cfe0d5; }

/* ---------- Rich data hover: styled tooltip + highlight states ---------- */
.fc-tip {
  position: fixed; z-index: 200; pointer-events: none; opacity: 0; transform: translateY(4px);
  transition: opacity .13s ease, transform .13s ease;
  background: var(--fc-green-deep); color: #fff; border: 1px solid rgba(255,255,255,.16);
  border-left: 3px solid var(--sport-accent); border-radius: 8px; padding: .55rem .8rem;
  box-shadow: 0 16px 40px rgba(0,20,10,.45); max-width: 280px;
}
.fc-tip.on { opacity: 1; transform: none; }
.fc-tip b { display: block; font-family: var(--font-display); font-size: .95rem; line-height: 1.15; }
.fc-tip span { display: block; font-size: .78rem; color: #cfe0d5; margin-top: 2px; }
.fc-tip i { font-style: normal; color: var(--sport-accent); font-family: var(--font-display); font-weight: 700; }

/* Chart elements respond to the pointer */
.rb-col { transition: filter .12s ease; }
.rb-col:hover { filter: brightness(1.2); }
.rb-col:hover .up, .rb-col:hover .dn { box-shadow: 0 0 0 1px rgba(255,255,255,.5); }
.rb-heat .cell { transition: transform .12s ease, box-shadow .12s ease; }
.rb-heat .cell:hover { transform: scale(1.18); box-shadow: 0 6px 16px rgba(0,20,10,.35); z-index: 2; }
.rb-coach:hover { border-color: var(--fc-green); }
:root[data-theme="dark"] .rb-coach:hover { border-color: var(--sport-accent); }
.rb-b li { transition: background .12s ease; }
.rb-b li:hover { background: color-mix(in srgb, var(--fc-green) 8%, transparent); }
.rb-season { transition: transform .12s ease, border-color .12s ease; }
.rb-season:hover { transform: translateY(-2px); border-color: var(--fc-green); }
:root[data-theme="dark"] .rb-season:hover { border-color: var(--sport-accent); }
.plc-row { transition: background .12s ease; }
.plc-row:hover { background: color-mix(in srgb, var(--fc-green) 7%, transparent); }


/* Fact cards (used by the auto-pulled record-book band on team pages) */
.fc-prog__facts { display: grid; gap: 0.7rem; }
.fc-fact { border: 1px solid var(--fc-line); border-radius: var(--radius-sm); background: var(--fc-paper); color: var(--fc-ink); padding: 0.9rem 1rem; }
.fc-fact b { font-family: var(--font-display); font-size: 1.6rem; color: var(--fc-green); display: block; line-height: 1.05; }
:root[data-theme="dark"] .fc-fact b { color: var(--sport-accent); }
.fc-fact span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--fc-ink-soft); font-weight: 600; display: block; margin-top: 2px; }

/* ============================================================
   FULL-BLEED MEGA MENU — panels span the screen, content breathes
   ============================================================ */
.fc-nav { position: sticky; }
.fc-mega {
  /* the nav has 1.4rem side padding; offset it so the panel reaches the screen edges */
  position: absolute; top: 100%; left: -1.4rem; right: -1.4rem; width: auto;
  display: block; background: var(--fc-green-deep);
  border-top: 3px solid var(--sport-accent); border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 26px 60px rgba(0,20,10,.45);
  padding: 2.4rem 1.4rem 1.8rem; z-index: 60;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.fc-mega.open { opacity: 1; visibility: visible; transform: none; }
.fc-mega::before { content: ""; position: absolute; top: -18px; left: 0; right: 0; height: 18px; }
.fc-mega__in { max-width: 1340px; margin: 0 auto; }
.fc-mega__cols { display: grid; gap: 1.4rem 3rem; }
.fc-mega__cols--teams { grid-template-columns: repeat(3, 1fr); }
.fc-mega__cols--about { grid-template-columns: repeat(3, 1fr); }
.fc-mega .fc-mega__season { font-size: .7rem; letter-spacing: .16em; margin: 0 0 .6rem; }
.fc-mega a.fc-mega__item { font-size: .95rem; padding: .35rem .4rem; }
.fc-mega a.fc-mega__item--rich b { font-size: 1rem; }
.fc-mega a.fc-mega__item--rich small { font-size: .78rem; }
.fc-mega .fc-mega__soon { font-size: .95rem; padding: .35rem .4rem; }
.fc-mega__all { margin-top: 1.6rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.14); font-size: .86rem; }
@media (max-width: 1000px) { .fc-mega__cols--teams, .fc-mega__cols--about { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) { .fc-mega { display: none; } }
