
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,400&family=DM+Mono:wght@400;500&display=swap');

/* ─────────────────────────────────────────
   COLOUR SYSTEM — white-dominant, IKD red
   Parent: white bg, crimson red CTA/accent
   Jamaica: gold + green as secondary layer
   ───────────────────────────────────────── */
:root {
  /* IKD Brand */
  --red:        #C41C00;
  --red-dark:   #A01500;
  --red-light:  #E02000;
  --red-bg:     #FFF5F3;
  --red-border: #FCCAC0;

  /* Page surfaces — white dominant */
  --white:      #FFFFFF;
  --off:        #F9F9F9;
  --grey-light: #F2F2F2;
  --grey-mid:   #E0E0E0;
  --grey-line:  #D8D8D8;

  /* Text */
  --ink:        #1A1A1A;
  --ink-2:      #383838;
  --muted:      #717171;
  --subtle:     #AAAAAA;

  /* Jamaica infusion */
  --gold:       #C89500;
  --gold-bg:    #FFFAEB;
  --gold-border:#E8D060;
  --green:      #006B3F;
  --green-bg:   #EAF5EE;
  --green-border:#9DD4B8;

  /* Borders */
  --b1: rgba(0,0,0,0.07);
  --b2: rgba(0,0,0,0.13);
  --b3: rgba(0,0,0,0.22);

  /* Radii */
  --r:   6px;
  --rl: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

/* ── NAV ─────────────────────────────── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--grey-line);
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 var(--grey-line);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 36px;
  cursor: pointer;
  flex-shrink: 0;
}

/* IKD circular logo in nav */
.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.nav-logo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--ink);
}
.nav-logo-sub {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 0;
  flex: 1;
}
.nav-link {
  padding: 6px 13px;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.nav-link:hover { color: var(--ink); background: var(--off); }
.nav-link.active { color: var(--red); font-weight: 500; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
/* Jamaica flag — 3 small dots in nav */
.nav-jm {
  display: flex;
  gap: 3px;
  align-items: center;
  opacity: 0.6;
}
.nav-jm-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.nav-cta {
  background: var(--red);
  color: #fff;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.nav-cta:hover { background: var(--red-dark); }

/* ── PAGES ─── */
.page { display: none; }
.page.active { display: block; }

/* ── HERO — lighter split layout with visible logo ─────────────── */
.hero {
  background:
    radial-gradient(circle at 78% 50%, rgba(196,28,0,0.10) 0 18%, transparent 19%),
    linear-gradient(90deg, #FFFFFF 0%, #FFF8F5 47%, #F7EEE9 47%, #F7EEE9 100%);
  min-height: 520px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 72px 56px;
}

/* subtle texture — crosshatch */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,28,0,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,28,0,0.045) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* brand colour block behind the logo, not across the whole hero */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 34%;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  box-shadow: -24px 0 60px rgba(196,28,0,0.14);
}

/* large logo feature right */
.hero-logo-bg {
  position: absolute;
  right: 88px;
  top: 50%;
  transform: translateY(-50%);
  width: 360px;
  height: 360px;
  opacity: 1;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
  background: #fff;
  padding: 18px;
  border: 8px solid rgba(255,255,255,0.92);
  box-shadow: 0 28px 70px rgba(0,0,0,0.22), 0 0 0 1px rgba(0,0,0,0.08);
}
.hero-logo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  border-radius: 50%;
}

.hero .hero-eyebrow { color: var(--red); }
.hero .hero-title .t-white { color: var(--ink); }
.hero .hero-title .t-gold  { color: var(--gold); }
.hero .hero-body { color: var(--ink-2); }
.hero .btn-white {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 22px rgba(196,28,0,0.18);
}
.hero .btn-white:hover { background: var(--red-dark); }
.hero .btn-ghost-white {
  color: var(--red);
  border-color: rgba(196,28,0,0.45);
  background: #fff;
}
.hero .btn-ghost-white:hover {
  border-color: var(--red);
  background: var(--red-bg);
}

@media (max-width: 980px) {
  .hero { padding: 52px 32px; min-height: auto; }
  .hero::after { width: 100%; height: 210px; top: auto; clip-path: none; opacity: 0.95; }
  .hero-logo-bg { position: relative; right: auto; top: auto; transform: none; width: 220px; height: 220px; margin-left: 28px; }
}

/* Jamaica stripe — left edge */
.hero-jm-edge {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  display: flex;
  flex-direction: column;
}
.hero-jm-edge-s { flex: 1; }

.hero-content {
  position: relative;
  max-width: 580px;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* small IKD logo inline in hero */
.hero-logo-inline {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  opacity: 0.8;
}
.hero-logo-inline img { width: 100%; height: 100%; object-fit: cover; }

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 84px;
  line-height: 0.88;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 22px;
}
.hero-title .t-white { color: #fff; }
.hero-title .t-gold  { color: #FFE066; }
.hero-title .t-ink   { color: var(--ink); }

.hero-body {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  max-width: 420px;
  margin-bottom: 28px;
}

.hero-btns { display: flex; gap: 12px; }

.btn-white {
  background: #fff;
  color: var(--red);
  border: none;
  padding: 12px 26px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.btn-white:hover { background: #f0f0f0; }

.btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 12px 26px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.btn-ghost-white:hover { border-color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.08); }

/* ── BUTTONS (page-level) ─── */
.btn-red {
  background: var(--red); color: #fff;
  border: none; padding: 11px 22px;
  border-radius: 4px; font-size: 12px; font-weight: 500;
  cursor: pointer; letter-spacing: 0.4px; text-transform: uppercase;
  transition: background 0.15s; font-family: 'DM Sans', sans-serif;
}
.btn-red:hover { background: var(--red-dark); }

.btn-outline {
  background: transparent; color: var(--ink);
  border: 1px solid var(--b2); padding: 11px 22px;
  border-radius: 4px; font-size: 12px;
  cursor: pointer; transition: all 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.btn-outline:hover { border-color: var(--b3); background: var(--off); }

.btn-outline-red {
  background: transparent; color: var(--red);
  border: 1.5px solid var(--red); padding: 10px 22px;
  border-radius: 4px; font-size: 12px; font-weight: 500;
  cursor: pointer; transition: all 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.btn-outline-red:hover { background: var(--red-bg); }

.btn-sm { padding: 7px 14px; font-size: 11px; }

/* ── STATS BAR ─── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-bottom: 1px solid var(--grey-line);
  background: var(--white);
}
.stat {
  padding: 20px 28px;
  border-right: 1px solid var(--grey-line);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--ink);
  line-height: 1;
}
.stat-num.red   { color: var(--red); }
.stat-num.gold  { color: var(--gold); }
.stat-num.green { color: var(--green); }
.stat-lbl { font-size: 11px; color: var(--muted); margin-top: 3px; }

/* ── SECTIONS ─── */
.sec    { padding: 52px 56px; background: var(--white); }
.sec-off{ background: var(--off); }
.sec-red{ background: var(--red); }

.sec-header { margin-bottom: 28px; }
.sec-eye {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.eye-line { width: 18px; height: 1px; }
.eye-red   { color: var(--red); }
.eye-gold  { color: var(--gold); }
.eye-green { color: var(--green); }
.eye-ink   { color: var(--muted); }

.sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  letter-spacing: 1.5px;
  color: var(--ink);
  line-height: 1;
}
.sec-title-white { color: #fff; }
.sec-sub { font-size: 13px; color: var(--muted); margin-top: 5px; }

/* ── CARDS ─── */
.grid { display: grid; gap: 12px; }
.g3   { grid-template-columns: repeat(3,1fr); }
.g2   { grid-template-columns: repeat(2,1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--rl);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  border-color: var(--grey-mid);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.card-top { height: 3px; }
.card-body { padding: 16px; }
.card-title { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 4px; line-height: 1.4; }
.card-meta  { font-size: 11px; color: var(--muted); line-height: 1.6; }
.card-foot  {
  padding: 10px 16px;
  border-top: 1px solid var(--b1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Badges */
.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 3px;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}
.badge-red   { background: var(--red-bg);    color: var(--red);   border: 1px solid var(--red-border); }
.badge-gold  { background: var(--gold-bg);   color: var(--gold);  border: 1px solid var(--gold-border); }
.badge-green { background: var(--green-bg);  color: var(--green); border: 1px solid var(--green-border); }
.badge-grey  { background: var(--grey-light);color: var(--muted); border: 1px solid var(--grey-mid); }
.badge-dark  { background: var(--ink);       color: #fff; }

.st-open    { font-size: 10px; color: var(--green); font-weight: 500; }
.st-pending { font-size: 10px; color: var(--red); }
.st-tbc     { font-size: 10px; color: var(--muted); }
.card-link  { font-size: 10px; color: var(--red); cursor: pointer; font-weight: 500; }

/* ── FEATURED EVENT ─── */
.feat-event {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--rl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.feat-event-body { padding: 28px; }
.feat-event-top {
  height: 4px;
  background: var(--red);
  grid-column: 1 / -1;
}
.feat-eye  {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--red);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.feat-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 1px;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.1;
}
.feat-meta  { font-size: 12px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.feat-meta strong { color: var(--ink); font-weight: 500; }
.feat-tags  { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.feat-tag   {
  font-size: 10px;
  padding: 3px 9px;
  border-radius: 3px;
  border: 1px solid var(--grey-mid);
  color: var(--muted);
  background: var(--off);
}
.feat-btns  { display: flex; gap: 10px; }
.feat-side  {
  background: var(--red);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 160px;
}

/* Countdown — sits on red bg */
.cd-label { font-family: 'DM Mono', monospace; font-size: 9px; color: rgba(255,255,255,0.5); letter-spacing: 2px; margin-bottom: 14px; }
.cd-nums   { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 14px; }
.cd-unit   { text-align: center; }
.cd-n      { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: #fff; line-height: 1; }
.cd-u      { font-size: 9px; color: rgba(255,255,255,0.5); letter-spacing: 1px; }
.cd-div    { border-top: 1px solid rgba(255,255,255,0.2); padding-top: 10px; text-align: center; }
.cd-sub    { font-size: 9px; color: rgba(255,255,255,0.5); }
.cd-date   { font-size: 11px; color: #FFE066; margin-top: 2px; font-weight: 500; }

/* ── FILTER BAR ─── */
.filter-bar { display: flex; gap: 6px; margin-bottom: 20px; flex-wrap: wrap; }
.chip {
  font-size: 11px; padding: 5px 13px;
  border-radius: 3px; border: 1px solid var(--grey-mid);
  cursor: pointer; color: var(--muted); background: var(--white);
  transition: all 0.15s; font-family: 'DM Sans', sans-serif;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); font-weight: 500; }

/* ── PAGE HEADER (inner pages) ─── */
.page-header {
  background: var(--white);
  padding: 40px 56px 0;
  border-bottom: 1px solid var(--grey-line);
  position: relative;
  z-index: 1;
}
.page-crumb {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--subtle);
  margin-bottom: 10px;
}
.page-crumb span { color: var(--red); }
.page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  letter-spacing: 2px;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1;
}
.page-sub { font-size: 13px; color: var(--muted); max-width: 540px; line-height: 1.7; margin-bottom: 24px; }

/* red accent rule under page title */
.page-title-rule {
  height: 3px;
  width: 48px;
  background: var(--red);
  margin-bottom: 20px;
}

.tabs { display: flex; border-bottom: 1px solid var(--grey-line); }
.tab {
  padding: 10px 18px;
  font-size: 11px;
  color: var(--muted);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.15s;
  letter-spacing: 0.3px;
  font-family: inherit;
}
.tab:hover { color: var(--ink); }
.tab.active { color: var(--red); border-bottom-color: var(--red); font-weight: 500; }

/* Tab panels — hidden until activated by ikd.js */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Sticky nav shadow */
.nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }

/* ── RESULTS ─── */
.r-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--b1);
}
.r-row:last-child { border-bottom: none; }
.medal {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 12px;
}
.m-gold   { background: var(--gold-bg);  color: var(--gold);  border: 1px solid var(--gold-border); }
.m-silver { background: #f5f5f5;          color: #666;         border: 1px solid #ccc; }
.m-bronze { background: #fff7f0;          color: #a05c2a;      border: 1px solid #d4a070; }
.m-red    { background: var(--red-bg);   color: var(--red);   border: 1px solid var(--red-border); }
.r-name   { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.r-det    { font-size: 11px; color: var(--muted); }
.r-yr     { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--subtle); white-space: nowrap; }

/* ── BELT LIST ─── */
.belt-list { display: flex; flex-direction: column; gap: 4px; }
.belt-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--grey-line);
  border-radius: var(--r);
  cursor: pointer;
  transition: border-color 0.15s;
}
.belt-row:hover { border-color: var(--grey-mid); }
.belt-swatch { width: 34px; height: 10px; border-radius: 2px; flex-shrink: 0; }
.belt-kyu    { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--muted); min-width: 52px; }
.belt-name   { font-size: 12px; font-weight: 500; color: var(--ink); flex: 1; }

/* ── PHOTO GRID ─── */
.photo-hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 4px;
}
.photo-main { grid-row: 1/3; border-radius: var(--r) 0 0 var(--r); }
.photo-sm:first-of-type { border-radius: 0 var(--r) 0 0; }
.photo-sm:last-of-type  { border-radius: 0 0 var(--r) 0; }
.photo-blk {
  position: relative; overflow: hidden; cursor: pointer;
  display: flex; align-items: flex-end; padding: 12px;
}
.photo-blk:hover .p-ov { opacity: 0.7; }
.p-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%); transition: opacity 0.2s; }
.p-lbl { position: relative; font-size: 11px; color: #fff; }
.p-tag {
  display: inline-block; background: var(--red); color: #fff;
  font-size: 9px; font-weight: 500; padding: 2px 7px;
  border-radius: 2px; margin-bottom: 3px;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.thumb-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; margin-top: 4px; }
.thumb {
  aspect-ratio: 1; border-radius: var(--r);
  position: relative; overflow: hidden; cursor: pointer;
  display: flex; align-items: flex-end; padding: 8px;
  transition: transform 0.2s;
}
.thumb:hover { transform: scale(1.03); }
.t-ov  { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%); }
.t-lbl { position: relative; font-size: 10px; color: #fff; }

/* ── VIDEO ─── */
.vid-card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--rl);
  overflow: hidden; cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.vid-card:hover { border-color: var(--grey-mid); box-shadow: 0 4px 18px rgba(0,0,0,0.08); transform: translateY(-2px); }
.vid-thumb { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; position: relative; }
.play-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--red); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(196,28,0,0.35);
  transition: transform 0.15s;
}
.vid-card:hover .play-btn { transform: scale(1.1); }
.play-tri { width: 0; height: 0; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 12px solid #fff; margin-left: 3px; }
.vid-dur { position: absolute; bottom: 8px; right: 10px; background: rgba(0,0,0,.7); color: #fff; font-family: 'DM Mono', monospace; font-size: 9px; padding: 2px 6px; border-radius: 2px; }
.vid-body { padding: 12px; }
.vid-title { font-size: 12px; font-weight: 500; color: var(--ink); margin-bottom: 3px; line-height: 1.4; }
.vid-meta  { font-size: 10px; color: var(--muted); }

/* ── NEWS ─── */
.news-big {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-top: 4px solid var(--red);
  border-radius: var(--rl); padding: 22px;
}
.news-src  { font-family: 'DM Mono', monospace; font-size: 9px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.news-title { font-size: 14px; font-weight: 500; color: var(--ink); line-height: 1.5; margin-bottom: 8px; }
.news-exc  { font-size: 12px; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.news-link { font-size: 10px; color: var(--red); cursor: pointer; font-weight: 500; }

/* ── PRESS ─── */
.press-row { display: grid; grid-template-columns: 110px 1fr auto; gap: 14px; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--b1); }
.press-row:last-child { border-bottom: none; }
.press-src  { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--muted); }
.press-title{ font-size: 12px; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.press-date { font-size: 10px; color: var(--muted); }
.press-link { font-size: 10px; color: var(--red); cursor: pointer; font-weight: 500; white-space: nowrap; }

/* ── TIMELINE ─── */
.timeline { position: relative; padding-left: 22px; }
.timeline::before { content: ''; position: absolute; left: 5px; top: 8px; bottom: 0; width: 1px; background: var(--grey-mid); }
.tl-item { position: relative; margin-bottom: 20px; }
.tl-dot  { position: absolute; left: -22px; top: 5px; width: 10px; height: 10px; border-radius: 50%; background: var(--red); border: 2px solid var(--white); }
.tl-dot.dim { background: var(--grey-mid); }
.tl-yr   { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--red); margin-bottom: 2px; }
.tl-yr.dim { color: var(--subtle); }
.tl-ev   { font-size: 12px; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.tl-det  { font-size: 11px; color: var(--muted); line-height: 1.5; }

/* ── LEADER CARD ─── */
.leader-card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--rl); padding: 18px;
  display: flex; gap: 14px; align-items: flex-start;
}
.l-avt {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 16px; flex-shrink: 0;
}
.l-name  { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.l-title { font-size: 10px; color: var(--red); font-weight: 500; margin-bottom: 6px; letter-spacing: 0.3px; }
.l-bio   { font-size: 11px; color: var(--muted); line-height: 1.6; }

/* ── MISSION BLOCK ─── */
.mission-block {
  background: var(--off);
  border: 1px solid var(--grey-line);
  border-left: 4px solid var(--red);
  border-radius: var(--rl); padding: 24px; margin-bottom: 22px;
}
.mission-label { font-family: 'DM Mono', monospace; font-size: 9px; color: var(--red); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.mission-text  { font-size: 13px; color: var(--ink); line-height: 1.9; font-style: italic; }

/* ── VALUE CARD ─── */
.value-card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-top: 3px solid;
  border-radius: var(--rl); padding: 18px;
}
.value-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1px; color: var(--ink); margin-bottom: 6px; }
.value-desc { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ── FORMAT CARD ─── */
.fmt-card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-top: 3px solid;
  border-radius: var(--rl); padding: 18px; cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}
.fmt-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); transform: translateY(-2px); }
.fmt-name { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.fmt-desc { font-size: 11px; color: var(--muted); line-height: 1.5; }

/* ── ATHLETE CARD ─── */
.ath-card {
  background: var(--white); border: 1px solid var(--grey-line);
  border-radius: var(--rl); overflow: hidden; cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}
.ath-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }
.ath-img {
  height: 96px; background: var(--off);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--grey-mid);
  position: relative;
}
.ath-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--ink); color: #FFE066;
  font-family: 'DM Mono', monospace; font-size: 9px;
  padding: 2px 7px; border-radius: 2px;
}
.ath-body  { padding: 14px; }
.ath-name  { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.ath-cat   { font-size: 11px; color: var(--muted); margin-bottom: 8px; }
.ath-stats { display: flex; gap: 14px; }
.a-st      { text-align: center; }
.a-n       { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: var(--ink); line-height: 1; }
.a-l       { font-size: 9px; color: var(--muted); }

/* ── HOF CARD ─── */
.hof-card {
  background: var(--white); border: 1px solid var(--grey-line);
  border-radius: var(--rl); padding: 18px; display: flex; gap: 14px;
  cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s;
}
.hof-card:hover { border-color: var(--grey-mid); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.hof-num  { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--grey-light); line-height: 1; min-width: 32px; }
.hof-name { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.hof-det  { font-size: 11px; color: var(--muted); line-height: 1.5; }
.hof-yr   { font-family: 'DM Mono', monospace; font-size: 9px; color: var(--red); margin-top: 4px; }

/* ── DOJO ─── */
.dojo-row { display: flex; gap: 14px; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--b1); }
.dojo-row:last-child { border-bottom: none; }
.dojo-dot  { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.dojo-name { font-size: 13px; font-weight: 500; color: var(--ink); flex: 1; }
.dojo-det  { font-size: 11px; color: var(--muted); }
.dojo-link { font-size: 10px; color: var(--red); cursor: pointer; font-weight: 500; }

/* ── MAP ─── */
.map-mock {
  background: #e8ede8;
  border: 1px solid var(--b2);
  border-radius: var(--rl); height: 180px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,107,63,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,107,63,0.1) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ── CONTACT BOX ─── */
.contact-box {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-top: 4px solid var(--green);
  border-radius: var(--rl); padding: 22px;
}
.c-row { display: flex; gap: 10px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--b1); }
.c-row:last-child { border-bottom: none; }
.c-icon { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--muted); min-width: 60px; padding-top: 1px; }
.c-val  { font-size: 12px; color: var(--ink); line-height: 1.6; }

/* ── FORM ─── */
.form-box {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--rl); padding: 24px;
}
.f-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.f-field { display: flex; flex-direction: column; gap: 4px; }
.f-lbl   { font-family: 'DM Mono', monospace; font-size: 9px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
.f-inp {
  background: var(--off);
  border: 1px solid var(--grey-mid);
  border-radius: var(--r);
  padding: 9px 12px; font-size: 12px; color: var(--ink);
  outline: none; width: 100%;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.15s;
}
.f-inp:focus { border-color: var(--red); }

/* ── JAMAICA BAND ─── */
.jm-band {
  background: var(--off);
  border-top: 1px solid var(--grey-line);
  border-bottom: 1px solid var(--grey-line);
  padding: 14px 56px;
  display: flex; align-items: center; gap: 14px;
}
.jm-flag  { display: flex; gap: 3px; }
.jm-stripe{ width: 4px; height: 22px; border-radius: 1px; }
.jm-text  {
  font-family: 'DM Mono', monospace;
  font-size: 10px; color: var(--muted);
  letter-spacing: 2px; text-transform: uppercase;
}
.jm-text span { color: var(--ink); font-weight: 500; }

/* ── LOGO BAND (red stripe with logo) ─── */
.logo-band {
  background: var(--red);
  padding: 12px 56px;
  display: flex; align-items: center; gap: 14px;
}
.logo-band-img {
  width: 32px; height: 32px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
}
.logo-band-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(10); opacity: 0.85; }
.logo-band-text {
  font-family: 'DM Mono', monospace;
  font-size: 10px; color: rgba(255,255,255,0.65);
  letter-spacing: 2px; text-transform: uppercase;
}
.logo-band-text span { color: #fff; }

/* ── FOOTER ─── */
footer {
  background: var(--white);
  border-top: 1px solid var(--grey-line);
}
.foot-inner {
  padding: 40px 56px 28px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.foot-brand-logo {
  width: 48px; height: 48px; border-radius: 50%; overflow: hidden; margin-bottom: 12px;
}
.foot-brand-logo img { width: 100%; height: 100%; object-fit: cover; }
.foot-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 2px; color: var(--ink); margin-bottom: 4px;
}
.foot-brand-sub,
.foot-brand-desc { font-size: 11px; color: var(--muted); line-height: 1.6; max-width: 220px; }
.foot-col-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: 1.5px; color: var(--ink); margin-bottom: 12px;
}
.foot-link { font-size: 12px; color: var(--muted); cursor: pointer; display: block; margin-bottom: 7px; transition: color 0.15s; }
.foot-link:hover { color: var(--red); }

.foot-bottom {
  background: var(--off);
  padding: 14px 56px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--grey-line);
}
.foot-copy   { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--subtle); }

/* IKD logo in footer */
.foot-ikd-logo {
  display: flex; align-items: center; gap: 8px;
}
.foot-ikd-img {
  width: 24px; height: 24px; border-radius: 50%; overflow: hidden;
}
.foot-ikd-img img { width: 100%; height: 100%; object-fit: cover; }
.foot-ikd-text { font-family: 'DM Mono', monospace; font-size: 9px; color: var(--subtle); }

/* ── INLINE INFO STRIP ─── */
.info-strip {
  background: var(--off);
  border-top: 1px solid var(--grey-line);
  border-bottom: 1px solid var(--grey-line);
  padding: 12px 56px;
  display: flex; align-items: center; gap: 28px;
}
.info-item { display: flex; align-items: center; gap: 7px; font-size: 11px; color: var(--muted); }
.info-item strong { color: var(--ink); }
.info-sep { width: 1px; height: 14px; background: var(--grey-mid); }

/* ── RED CTA STRIP ─── */
.cta-strip {
  background: var(--red);
  padding: 28px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.cta-strip-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 1px; color: #fff;
}
.cta-strip-sub { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 2px; }

/* ── IKD LOGO MARK (used inline in headings) ─── */
.ikd-logo-mark {
  width: 28px; height: 28px; border-radius: 50%; overflow: hidden;
  display: inline-flex; flex-shrink: 0; vertical-align: middle; margin-right: 8px;
}
.ikd-logo-mark img { width: 100%; height: 100%; object-fit: cover; }


/* ── WORDPRESS OVERRIDES ─── */
.page { display: block; }
.current-menu-item > a,
.current_page_item > a { color: var(--red); font-weight: 500; }
.nav-links { display: flex; gap: 0; flex: 1; padding: 0; margin: 0; list-style: none; }
.page-numbers { padding: 6px 12px; border: 1px solid var(--grey-mid); border-radius: 4px; font-size: 12px; color: var(--muted); text-decoration: none; }
.page-numbers.current { background: var(--ink); color: #fff; border-color: var(--ink); }
.page-numbers:hover { border-color: var(--ink); color: var(--ink); }
.alignleft  { float: left; margin: 0 20px 12px 0; }
.alignright { float: right; margin: 0 0 12px 20px; }
.aligncenter { display: block; margin: 12px auto; }
.screen-reader-text { border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important; }
.g2, .g3 { display: grid; gap: 12px; }
.filter-bar { display: flex; }

/* ── Mission Teaser ─────────────────────────────────────────────────────── */
.mission-teaser {
  display: grid;
  grid-template-columns: 120px 1fr 160px;
  gap: 32px;
  align-items: start;
}
.mission-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.1;
}
.mission-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 520px;
}
.mission-values {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}
.mission-value { border-bottom: 1px solid var(--b1); padding-bottom: 10px; }
.mission-value:last-child { border-bottom: none; }
.mv-word {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
}
@media (max-width: 700px) {
  .mission-teaser { grid-template-columns: 1fr; }
  .mission-eye { display: none; }
}

/* ── Athlete Photo Strip ─────────────────────────────────────────────────── */
.athlete-strip {
  overflow: hidden;
  background: var(--off-white, #f7f6f4);
  border-top: 1px solid var(--b1);
  border-bottom: 1px solid var(--b1);
  padding: 14px 0;
}
.athlete-strip-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: strip-scroll 40s linear infinite;
}
.athlete-strip:hover .athlete-strip-track { animation-play-state: paused; }
.athlete-strip-item {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--b1);
}
.athlete-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes strip-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Contact Page ────────────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}
.ci-block { margin-bottom: 20px; }
.ci-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 4px;
}
.ci-value { font-size: 13px; color: var(--ink); line-height: 1.5; }
.ci-value a { color: var(--red); text-decoration: none; }
.ci-value a:hover { text-decoration: underline; }
.contact-form-wrap { max-width: 560px; }
.contact-form { display: flex; flex-direction: column; }
.form-notice {
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 13px;
  margin-bottom: 20px;
}
.form-notice--ok  { background: var(--green-bg, #e8f5ee); color: var(--green); }
.form-notice--err { background: var(--red-bg, #fdecea);   color: var(--red);   }
@media (max-width: 700px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.feat-event { display: grid; }

/* ── Program Cards ───────────────────────────────────────────────────────── */
.program-card {
  border: 1px solid var(--b1);
  border-radius: 6px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .15s;
}
.program-card:hover { box-shadow: 0 2px 16px rgba(0,0,0,0.07); }
.program-icon { margin-bottom: 4px; }
.program-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--ink);
  line-height: 1.1;
}
.program-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}
.program-link {
  font-size: 11px;
  font-family: 'DM Mono', monospace;
  color: var(--red);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 4px;
}
.program-link:hover { text-decoration: underline; }

/* ── Membership Tier Cards ───────────────────────────────────────────────── */
.tier-card {
  border: 1px solid var(--b1);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .15s;
}
.tier-card:hover { box-shadow: 0 2px 16px rgba(0,0,0,0.07); }
.tier-card--featured { border-color: var(--red); box-shadow: 0 0 0 1px var(--red); }
.tier-top { height: 4px; }
.tier-body { padding: 20px; flex: 1; }
.tier-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 4px;
}
.tier-sub {
  font-size: 11px;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 14px;
}
.tier-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tier-features li {
  font-size: 12px;
  color: var(--ink);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}
.tier-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 11px;
}
.tier-foot { padding: 16px 20px; border-top: 1px solid var(--b1); }
.tier-foot .btn-red,
.tier-foot .btn-outline { width: 100%; text-align: center; display: block; }
