/* ============================================================
   Young Clays — Main Stylesheet
   Dark theme. Orange accent. Built for the next generation.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg:           #0a0a0a;
  --surface1:     #111111;
  --surface2:     #161616;
  --surface3:     #1e1e1e;
  --surface4:     #262626;
  --orange:       #f97316;
  --orange-hover: #ea6d0e;
  --orange-dim:   rgba(249,115,22,0.12);
  --orange-ring:  rgba(249,115,22,0.30);
  --text:         #f5f5f5;
  --text-muted:   #9a9a9a;
  --text-dim:     #555555;
  --border:       #1f1f1f;
  --radius-xs:    3px;
  --radius-sm:    5px;
  --radius:       8px;
  --radius-lg:    12px;
  --radius-xl:    18px;
  --shadow:       0 4px 24px rgba(0,0,0,0.45);
  --shadow-lg:    0 8px 48px rgba(0,0,0,0.65);
  --t:            0.18s ease;
  --font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font); cursor: pointer; border: none; }

/* ========================
   NAVIGATION
======================== */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 20px; height: 60px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  font-size: 17px; font-weight: 800; letter-spacing: -.4px;
  white-space: nowrap; flex-shrink: 0;
}
.logo-mark {
  width: 30px; height: 30px;
  background: var(--orange);
  border-radius: 7px;
  display: flex; align-items: center;
  justify-content: center;
  font-size: 15px; line-height: 1;
}
.nav-logo .accent { color: var(--orange); }

.nav-links {
  display: flex; align-items: center; gap: 2px;
  list-style: none; flex: 1; justify-content: center;
}
.nav-links a {
  padding: 7px 13px; border-radius: var(--radius-sm);
  font-size: 13.5px; font-weight: 500; color: var(--text-muted);
  transition: color var(--t), background var(--t);
}
.nav-links a:hover { color: var(--text); background: var(--surface3); }
.nav-links a.active { color: var(--orange); }
.nav-cta {
  background: var(--orange) !important; color: #000 !important;
  font-weight: 700 !important; padding: 7px 16px !important;
  border-radius: var(--radius-sm) !important;
}
.nav-cta:hover { background: var(--orange-hover) !important; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 5px; flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--t);
}

/* ========================
   BREAKING NEWS TICKER
======================== */
.ticker-wrap {
  background: var(--surface1);
  border-bottom: 1px solid var(--border);
  overflow: hidden; height: 36px;
  display: flex; align-items: center;
}
.ticker-label {
  flex-shrink: 0;
  background: var(--orange); color: #000;
  font-size: 10.5px; font-weight: 800;
  letter-spacing: .9px; text-transform: uppercase;
  padding: 0 16px; height: 100%;
  display: flex; align-items: center; white-space: nowrap;
}
.ticker-track {
  flex: 1; overflow: hidden; height: 100%; position: relative;
}
.ticker-items {
  display: flex; align-items: center; height: 100%;
  animation: ticker-scroll 48s linear infinite; white-space: nowrap;
}
.ticker-items:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center;
  gap: 8px; padding: 0 48px 0 0;
  font-size: 13px; color: var(--text-muted);
}
.ticker-item .bul { color: var(--orange); font-size: 7px; }
.ticker-item strong { color: var(--text); font-weight: 600; }
.ticker-item a { color: var(--text-muted); }
.ticker-item a:hover { color: var(--orange); }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================
   LAYOUT
======================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.section { padding: 44px 0; }

.section-header {
  display: flex; align-items: baseline;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.section-title {
  font-size: 17px; font-weight: 700;
  letter-spacing: -.3px;
}
.section-title .accent { color: var(--orange); }
.section-link {
  font-size: 13px; color: var(--orange);
  font-weight: 500; transition: opacity var(--t);
}
.section-link:hover { opacity: .75; }

/* ========================
   BUTTONS
======================== */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600;
  transition: all var(--t); white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #000; }
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-1px); }
.btn-secondary {
  background: var(--surface3); color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: var(--surface4);
  border-color: var(--orange-ring); color: var(--orange);
}
.btn-ghost {
  background: transparent; color: var(--orange);
  border: 1px solid var(--orange-ring);
}
.btn-ghost:hover { background: var(--orange-dim); }
.btn-sm { padding: 6px 13px; font-size: 12px; }

/* ========================
   BADGES / TAGS
======================== */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: .3px;
}
.badge-orange  { background: var(--orange); color: #000; }
.badge-glass   { background: rgba(255,255,255,.08); color: var(--text-muted); backdrop-filter: blur(4px); }
.badge-outline { background: transparent; border: 1px solid rgba(255,255,255,.18); color: var(--text-muted); }
.badge-green   { background: rgba(16,185,129,.15); color: #10b981; border: 1px solid rgba(16,185,129,.2); }

.tag {
  display: inline-flex; padding: 2px 8px;
  border-radius: 100px; font-size: 11px; font-weight: 500;
}
.tag-green  { background: rgba(16,185,129,.12); color: #10b981; border: 1px solid rgba(16,185,129,.2); }
.tag-blue   { background: rgba(59,130,246,.12);  color: #60a5fa; border: 1px solid rgba(59,130,246,.2); }
.tag-purple { background: rgba(139,92,246,.12);  color: #a78bfa; border: 1px solid rgba(139,92,246,.2); }
.tag-gray   { background: var(--surface3); color: var(--text-muted); border: 1px solid var(--border); }
.tag-orange { background: var(--orange-dim); color: var(--orange); border: 1px solid var(--orange-ring); }

/* Card category tags */
.card-tag {
  display: inline-block;
  background: var(--orange-dim); color: var(--orange);
  border: 1px solid var(--orange-ring);
  padding: 2px 8px; border-radius: var(--radius-xs);
  font-size: 10px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  margin-bottom: 8px;
}
.card-tag-alt {
  background: var(--surface3); color: var(--text-muted);
  border-color: var(--border);
}

/* ========================
   HERO (Homepage)
======================== */
.hero { padding: 28px 0 36px; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 20px; align-items: stretch;
}

/* Feature card */
.hero-feature {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden; min-height: 480px;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  border: 1px solid #282822;
  background: linear-gradient(155deg, #1a1200 0%, #0e0900 50%, #0a0a0a 100%);
}
.hero-feature-bg {
  position: absolute; inset: 0;
  background-image: url('../images/mason-25-straight-hat.jpg');
  background-size: cover;
  background-position: center 12%;
  /* dark overlay so text stays readable */
  filter: none;
}
.hero-feature-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(5,3,0,.97) 0%, rgba(5,3,0,.72) 42%, rgba(5,3,0,.20) 75%, transparent 100%),
    linear-gradient(to right, rgba(5,3,0,.45) 0%, transparent 60%);
}
.hero-feature-deco {
  display: none; /* photo replaces the deco */
}
.hero-overlay {
  position: relative; z-index: 1;
  padding: 28px;
  background: none; /* gradient now lives on .hero-feature-bg::after */
}
.hero-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }

.hero-name {
  font-size: 40px; font-weight: 900;
  letter-spacing: -2px; line-height: 1.02;
  margin-bottom: 7px;
}
.hero-meta { font-size: 14px; color: var(--text-muted); margin-bottom: 14px; }

.hero-achievement {
  background: rgba(249,115,22,.10);
  border: 1px solid rgba(249,115,22,.24);
  border-radius: var(--radius); padding: 11px 15px;
  margin-bottom: 16px; font-size: 13px;
}
.hero-achievement strong { color: var(--orange); font-weight: 600; }

.hero-tagline {
  font-size: 17px; font-weight: 700;
  color: var(--text); font-style: italic;
  margin-bottom: 22px; opacity: .92;
}
.hero-tagline::before { content: '"'; color: var(--orange); }
.hero-tagline::after  { content: '"'; color: var(--orange); }

.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Right sidebar */
.hero-sidebar {
  display: flex; flex-direction: column; gap: 14px;
}
.sidebar-card {
  background: var(--surface1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden; flex: 1;
  transition: border-color var(--t);
}
.sidebar-card:hover { border-color: var(--orange-ring); }
.sidebar-card-thumb {
  height: 130px;
  position: relative; overflow: hidden;
}
.sidebar-card-body { padding: 14px 16px; }
.sidebar-card-title { font-size: 14px; font-weight: 700; line-height: 1.35; margin-bottom: 6px; }
.sidebar-card-meta { font-size: 12px; color: var(--text-dim); }

/* ========================
   NEWS / ARTICLE CARDS
======================== */
.card-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  background: var(--surface1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden; transition: all var(--t);
  display: flex; flex-direction: column;
}
.card:hover {
  border-color: var(--orange-ring);
  transform: translateY(-2px); box-shadow: var(--shadow);
}
.card-thumb {
  position: relative; overflow: hidden;
  height: 165px; flex-shrink: 0;
}
.card-thumb-lg { height: 220px; }
.card-thumb-xl { height: 280px; }

.card-thumb .ti {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 52px; opacity: .10;
}
.card-body {
  padding: 14px 16px; flex: 1;
  display: flex; flex-direction: column; gap: 6px;
}
.card-title {
  font-size: 14px; font-weight: 700;
  line-height: 1.35; letter-spacing: -.2px; flex: 1;
}
.card-title-lg { font-size: 18px; }
.card-excerpt {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.55;
}
.card-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 11.5px; color: var(--text-dim);
  margin-top: auto; padding-top: 8px;
}
.card-meta .dot { opacity: .35; }

/* ========================
   STATS STRIP
======================== */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden; margin: 20px 0;
}
.stat-block {
  background: var(--surface1);
  padding: 20px 16px; text-align: center;
}
.stat-value {
  font-size: 30px; font-weight: 900;
  color: var(--orange); letter-spacing: -1px;
  display: block;
}
.stat-label { font-size: 11.5px; color: var(--text-muted); margin-top: 3px; }

/* ========================
   VIDEO EMBEDS
======================== */
.video-wrap {
  position: relative; padding-bottom: 56.25%;
  height: 0; overflow: hidden;
}
.video-wrap iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
}
.video-card {
  background: var(--surface1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color var(--t);
}
.video-card:hover { border-color: var(--orange-ring); }
.video-meta { padding: 14px 16px 16px; }
.video-meta h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.video-meta p  { font-size: 12px; color: var(--text-muted); }

/* ========================
   PAGE HERO
======================== */
.page-hero {
  background: linear-gradient(160deg, var(--surface1) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  padding: 44px 0 36px;
}
.page-hero-eyebrow {
  font-size: 10.5px; font-weight: 800;
  color: var(--orange); text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 8px;
}
.page-hero-title {
  font-size: 38px; font-weight: 900;
  letter-spacing: -1.2px; line-height: 1.08;
  margin-bottom: 12px;
}
.page-hero-subtitle {
  font-size: 16px; color: var(--text-muted);
  max-width: 560px; line-height: 1.6;
}

/* ========================
   ATHLETE CARDS
======================== */
.athlete-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.athlete-card {
  background: var(--surface1);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  transition: all var(--t);
}
.athlete-card:hover {
  border-color: var(--orange-ring);
  box-shadow: 0 0 0 1px rgba(249,115,22,.08), var(--shadow);
  transform: translateY(-2px);
}
.athlete-card.featured {
  grid-column: span 2;
  border-color: rgba(249,115,22,.25);
}
.athlete-hero {
  min-height: 260px;
  position: relative;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.athlete-hero-featured { min-height: 340px; }
.athlete-hero-bg {
  position: absolute; inset: 0;
}
.athlete-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.3) 55%, transparent 100%);
}
.athlete-hero-content {
  position: relative; z-index: 1;
  padding: 20px 22px; width: 100%;
}
.athlete-body { padding: 20px 22px; }
.athlete-name {
  font-size: 22px; font-weight: 900;
  letter-spacing: -.6px; margin-bottom: 4px;
}
.athlete-name-lg { font-size: 30px; }
.athlete-sub { font-size: 13px; color: var(--text-muted); }

.athlete-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin: 16px 0;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.astat { text-align: center; }
.astat-val {
  display: block; font-size: 22px;
  font-weight: 900; color: var(--orange);
  letter-spacing: -.5px;
}
.astat-lbl {
  font-size: 10.5px; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: .5px;
}

.athlete-quote {
  font-size: 14px; font-style: italic;
  color: var(--text-muted); line-height: 1.6;
  border-left: 2px solid var(--orange);
  padding-left: 12px; margin-top: 14px;
}

/* ========================
   GEAR CARDS
======================== */
.gear-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gear-grid-2 { grid-template-columns: repeat(2, 1fr); }

.gear-card {
  background: var(--surface1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--t);
}
.gear-card:hover {
  border-color: var(--orange-ring);
  transform: translateY(-2px); box-shadow: var(--shadow);
}
.gear-thumb {
  height: 200px;
  background: var(--surface2);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.gear-thumb .ti {
  font-size: 80px; opacity: .12;
}
.gear-body { padding: 18px 20px; }
.gear-name { font-size: 16px; font-weight: 700; margin-bottom: 3px; letter-spacing: -.3px; }
.gear-cat  { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.gear-price { font-size: 21px; font-weight: 900; color: var(--orange); margin-bottom: 10px; }
.gear-price .note { font-size: 12px; color: var(--text-muted); font-weight: 400; }
.gear-stars { color: var(--orange); font-size: 13px; margin-bottom: 10px; }
.gear-desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin-bottom: 14px; }
.gear-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.youth-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(249,115,22,.15); color: var(--orange);
  border: 1px solid rgba(249,115,22,.25);
  padding: 2px 8px; border-radius: 100px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .3px;
}

/* ========================
   EVENT CARDS
======================== */
.events-list { display: flex; flex-direction: column; gap: 12px; }

.event-card {
  background: var(--surface1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px; display: flex;
  gap: 18px; align-items: flex-start;
  transition: all var(--t);
}
.event-card:hover {
  border-color: var(--orange-ring);
  background: var(--surface2);
}
.event-date-block {
  flex-shrink: 0; width: 62px; text-align: center;
  background: var(--surface3);
  border-radius: var(--radius); padding: 10px 8px;
  border: 1px solid var(--border);
}
.edm { font-size: 10px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .5px; display: block; }
.edd { font-size: 28px; font-weight: 900; letter-spacing: -1px; display: block; line-height: 1.1; margin: 2px 0; }
.edy { font-size: 10px; color: var(--text-muted); display: block; }

.event-info { flex: 1; min-width: 0; }
.event-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; letter-spacing: -.2px; }
.event-loc  { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.event-tags { display: flex; gap: 6px; flex-wrap: wrap; }

.event-cta { flex-shrink: 0; }

/* ========================
   FILTER TABS
======================== */
.filter-tabs {
  display: flex; gap: 7px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.filter-tab {
  padding: 6px 15px; border-radius: 100px;
  font-size: 13px; font-weight: 500;
  cursor: pointer; background: var(--surface2);
  color: var(--text-muted); border: 1px solid var(--border);
  transition: all var(--t);
}
.filter-tab:hover { color: var(--text); border-color: var(--text-dim); }
.filter-tab.active {
  background: var(--orange); color: #000;
  border-color: var(--orange); font-weight: 600;
}

/* ========================
   GET STARTED STEPS
======================== */
.steps { display: flex; flex-direction: column; gap: 28px; }
.step { display: flex; gap: 18px; align-items: flex-start; }
.step-num {
  flex-shrink: 0; width: 46px; height: 46px;
  background: var(--orange); color: #000;
  font-weight: 900; font-size: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.step-body { flex: 1; padding-top: 8px; }
.step-title { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.step-tip {
  margin-top: 10px;
  background: var(--orange-dim); border: 1px solid var(--orange-ring);
  border-radius: var(--radius); padding: 10px 14px;
  font-size: 13px; color: var(--text);
}

/* ========================
   COST TABLE
======================== */
.cost-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.cost-table th {
  text-align: left; padding: 10px 14px;
  background: var(--surface2); color: var(--text-muted);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  border-bottom: 1px solid var(--border);
}
.cost-table td {
  padding: 13px 14px; border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.cost-table tr:last-child td { border-bottom: none; }
.cost-table tr.total td { font-weight: 700; background: var(--surface2); }
.cost-range { color: var(--orange); font-weight: 700; white-space: nowrap; }

/* ========================
   INFO BOX / CALLOUT
======================== */
.info-box {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 22px;
}
.info-box-orange {
  background: var(--orange-dim); border-color: var(--orange-ring);
}
.callout {
  background: var(--orange-dim);
  border-left: 3px solid var(--orange);
  padding: 14px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 14px; margin: 20px 0;
}
.callout strong { color: var(--orange); }

/* ========================
   GRADIENT HELPERS
======================== */
.g-trap    { background: linear-gradient(135deg, #1a0d00 0%, #2a1600 45%, #0a0a0a 100%); }
.g-sport   { background: linear-gradient(135deg, #0a1a08 0%, #152d10 45%, #0a0a0a 100%); }
.g-skeet   { background: linear-gradient(135deg, #080a1a 0%, #101530 45%, #0a0a0a 100%); }
.g-gear    { background: linear-gradient(135deg, #161616 0%, #222 50%, #161616 100%); }
.g-mason   { background: radial-gradient(ellipse at 30% 30%, rgba(249,115,22,.28) 0%, transparent 55%), linear-gradient(160deg, #1a1200 0%, #0d0a00 55%, #0a0a0a 100%); }
.g-athlete { background: linear-gradient(180deg, #141208 0%, #221c00 40%, #0a0a0a 100%); }
.g-clay1   { background: linear-gradient(135deg, #1a0800 0%, #2d1000 45%, #0a0a0a 100%); }
.g-news    { background: linear-gradient(135deg, #0d0d1a 0%, #151520 50%, #0a0a0a 100%); }

/* ========================
   FEATURED NEWS
======================== */
.featured-news {
  background: var(--surface1); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  display: grid; grid-template-columns: 1fr 420px;
  margin-bottom: 32px; transition: border-color var(--t);
}
.featured-news:hover { border-color: var(--orange-ring); }
.featured-news-thumb {
  min-height: 320px; position: relative; overflow: hidden;
}
.featured-news-body {
  padding: 32px 28px;
  display: flex; flex-direction: column; justify-content: center;
}
.featured-news-title {
  font-size: 24px; font-weight: 800;
  letter-spacing: -.6px; line-height: 1.2;
  margin-bottom: 12px;
}
.featured-news-excerpt {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.65; margin-bottom: 20px; flex: 1;
}

/* ========================
   GEAR FILTER BAR
======================== */
.gear-filter-bar {
  display: flex; gap: 7px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.gear-filter-tab {
  padding: 6px 15px; border-radius: 100px;
  font-size: 13px; font-weight: 500;
  cursor: pointer; background: var(--surface2);
  color: var(--text-muted); border: 1px solid var(--border);
  transition: all var(--t);
}
.gear-filter-tab:hover { color: var(--text); border-color: var(--text-dim); }
.gear-filter-tab.active {
  background: var(--orange); color: #000;
  border-color: var(--orange); font-weight: 600;
}

/* ========================
   FOOTER
======================== */
.footer {
  background: var(--surface1);
  border-top: 1px solid var(--border);
  padding: 52px 0 28px; margin-top: 64px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-logo { font-size: 19px; font-weight: 800; margin-bottom: 10px; }
.footer-logo .accent { color: var(--orange); }
.footer-tagline { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.footer-heading {
  font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px;
  color: var(--text-muted); margin-bottom: 14px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13.5px; color: var(--text-dim); transition: color var(--t); }
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--border);
  font-size: 12.5px; color: var(--text-dim);
}
.footer-bottom a { color: var(--text-dim); }
.footer-bottom a:hover { color: var(--orange); }

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 1100px) {
  .card-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .gear-grid   { grid-template-columns: repeat(2, 1fr); }
  .athlete-grid { grid-template-columns: repeat(2, 1fr); }
  .athlete-card.featured { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .featured-news { grid-template-columns: 1fr; }
  .featured-news-thumb { min-height: 220px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-sidebar { display: none; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; position: absolute;
    top: 60px; left: 0; right: 0;
    background: var(--surface1);
    border-bottom: 1px solid var(--border);
    padding: 10px; flex-direction: column; gap: 2px;
    z-index: 100;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 14px; font-size: 15px; }
  .nav-hamburger { display: flex; }

  .card-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .gear-grid   { grid-template-columns: 1fr; }
  .athlete-grid { grid-template-columns: 1fr; }
  .athlete-card.featured { grid-column: span 1; }

  .hero-name { font-size: 30px; }
  .page-hero-title { font-size: 26px; }
  .section { padding: 30px 0; }
  .footer-grid { grid-template-columns: 1fr; }

  .event-card { flex-direction: column; gap: 12px; }
  .event-cta { display: flex; }
}

@media (max-width: 480px) {
  .card-grid-5 { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-name { font-size: 26px; }
}
