/* ============================================================
   SMITHY'S TGW GYM — Design System
   Ported from homepage mockup v4 (design source of truth).
   All colours/spacing flow from :root tokens. Sharp corners,
   orange accent, dark theme. Bebas / Oswald / Inter.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --tgw-orange: #F58220;        /* primary accent, CTAs, eyebrows */
  --tgw-orange-bright: #FF9933; /* hover state */
  --tgw-red: #E63312;           /* rarely used, alerts */
  --tgw-black: #0A0A0A;         /* page background */
  --tgw-charcoal: #141414;      /* alternating section background */
  --tgw-graphite: #1F1F1F;      /* disabled/closed states */
  --tgw-bone: #F5F1E8;
  --tgw-muted: rgba(255, 255, 255, 0.6);
  --tgw-line: rgba(255, 255, 255, 0.1);

  --maxw: 1280px;
  --gutter: 32px;
  --section-pad: 120px;

  --font-display: 'Bebas Neue', 'Oswald', sans-serif;
  --font-ui: 'Oswald', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--tgw-black);
  color: #FFFFFF;
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--tgw-orange);
  outline-offset: 3px;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 2000;
  background: var(--tgw-orange); color: var(--tgw-black);
  font-family: var(--font-ui); font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 12px 20px;
}
.skip-link:focus { left: 8px; top: 8px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Shared layout ---------- */
.section { padding: var(--section-pad) 0; position: relative; }
.section-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.bg-charcoal { background: var(--tgw-charcoal); }
.bg-black { background: var(--tgw-black); }

.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: 64px;
}
.section-link {
  font-family: var(--font-ui);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--tgw-orange);
  display: inline-flex; align-items: center; gap: 10px;
  flex-shrink: 0; padding-bottom: 16px;
}
.section-link::after { content: '→'; }
.section-link:hover { color: var(--tgw-orange-bright); }

.eyebrow, .section-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-ui);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--tgw-orange);
  margin-bottom: 16px;
}
.eyebrow::before, .section-eyebrow::before {
  content: ''; width: 32px; height: 2px; background: var(--tgw-orange);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.95; font-weight: 400;
  letter-spacing: 0.005em; max-width: 900px;
}
.section-title em, .accent-italic {
  font-family: var(--font-ui);
  font-style: italic; font-weight: 300;
  color: var(--tgw-orange);
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--tgw-orange); color: var(--tgw-black);
  font-family: var(--font-ui);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 18px 32px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-primary::after { content: '→'; font-size: 18px; }
.btn-primary:hover { background: var(--tgw-orange-bright); transform: translateX(4px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 12px;
  background: transparent; color: #FFFFFF;
  font-family: var(--font-ui);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 18px 32px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}
.btn-sm { padding: 12px 24px; font-size: 12px; }

/* ---------- Event banner ---------- */
.event-banner {
  background: linear-gradient(90deg, #0A0A0A 0%, #2A0A0A 100%);
  border-bottom: 1px solid var(--tgw-line);
  padding: 14px 0;
  font-family: var(--font-ui);
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
}
.event-banner-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
}
.event-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--tgw-orange);
  box-shadow: 0 0 0 0 rgba(245, 130, 32, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245, 130, 32, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(245, 130, 32, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 130, 32, 0); }
}
.event-banner-label { color: var(--tgw-orange); font-weight: 600; }
.event-banner-text { color: #FFFFFF; }
.event-banner-text strong { color: var(--tgw-orange); }
.event-banner-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: #FFFFFF; font-weight: 600; padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.event-banner-link:hover { background: var(--tgw-orange); color: var(--tgw-black); border-color: var(--tgw-orange); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--tgw-line);
  padding: 20px 0;
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 28px; letter-spacing: 0.04em;
  color: var(--tgw-orange);
}
.nav-logo em { color: #FFFFFF; font-style: normal; font-weight: 400; }
.nav-menu {
  display: flex; gap: 32px;
  font-family: var(--font-ui);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.nav-menu a { color: var(--tgw-muted); transition: color 0.2s ease; position: relative; padding: 4px 0; }
.nav-menu a:hover { color: #FFFFFF; }
.nav-menu a.active { color: #FFFFFF; }
.nav-menu a.active::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 24px; height: 2px; background: var(--tgw-orange);
}
.nav-cta {
  background: var(--tgw-orange); color: var(--tgw-black);
  font-family: var(--font-ui);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 12px 22px; transition: background 0.2s ease;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--tgw-orange-bright); }

/* Mobile nav toggle (checkbox hack — no JS) */
.nav-toggle, .nav-toggle-label { display: none; }
.nav-right { display: flex; align-items: center; gap: 20px; }

/* ---------- Hero (homepage) ---------- */
.hero {
  position: relative; min-height: 88vh; overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero-image { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto; padding: 80px var(--gutter); width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-ui);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--tgw-orange); margin-bottom: 28px;
}
.hero-eyebrow::before { content: ''; width: 36px; height: 2px; background: var(--tgw-orange); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 140px);
  font-weight: 400; line-height: 0.92; letter-spacing: 0.005em;
  max-width: 900px; margin-bottom: 24px;
}
.hero-title em { font-family: var(--font-ui); font-style: italic; font-weight: 300; color: var(--tgw-orange); }
.hero-tagline {
  font-family: var(--font-ui);
  font-weight: 300; font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 560px; line-height: 1.5; margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-caption {
  position: absolute; bottom: 32px; right: 32px; z-index: 2;
  font-family: var(--font-ui);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--tgw-muted);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
}

/* ---------- Inner page hero ---------- */
.page-hero {
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  min-height: 52vh; border-bottom: 1px solid var(--tgw-line);
}
.page-hero.tall { min-height: 64vh; }
.page-hero-image { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto; padding: 72px var(--gutter); width: 100%;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 104px);
  line-height: 0.92; font-weight: 400; letter-spacing: 0.005em;
  max-width: 900px; margin-bottom: 16px;
}
.page-hero-title em { font-family: var(--font-ui); font-style: italic; font-weight: 300; color: var(--tgw-orange); }
.page-hero-lede {
  font-family: var(--font-ui); font-weight: 300; font-size: 18px;
  color: rgba(255,255,255,0.85); max-width: 620px; line-height: 1.55;
}

/* Breadcrumb */
.breadcrumb {
  font-family: var(--font-ui);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--tgw-muted); margin-bottom: 20px;
  display: flex; gap: 10px; flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--tgw-orange); }
.breadcrumb span[aria-hidden] { color: rgba(255,255,255,0.3); }

/* ---------- Stat strip ---------- */
.strip { background: var(--tgw-orange); color: var(--tgw-black); padding: 28px 0; overflow: hidden; }
.strip-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.strip-item-value { font-family: var(--font-display); font-size: 48px; line-height: 1; letter-spacing: 0.01em; display: block; }
.strip-item-label {
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.75; margin-top: 4px; display: block;
}

/* ---------- Story ---------- */
.story-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.story-image { aspect-ratio: 16/10; background-size: cover; background-position: 68% center; position: relative; }
.story-image::after {
  content: ''; position: absolute; bottom: -24px; right: -24px;
  width: 120px; height: 120px; background: var(--tgw-orange); z-index: -1;
}
.story-content { padding-left: 24px; }
.story-content p { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.story-content p.dropcap:first-letter,
.story-content p:first-of-type.dropcap::first-letter {
  font-family: var(--font-display);
  font-size: 88px; float: left; line-height: 0.8; padding: 8px 14px 0 0; color: var(--tgw-orange);
}
.story-signature { display: flex; gap: 20px; align-items: center; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--tgw-line); }
.story-signature-name { font-family: var(--font-display); font-size: 24px; letter-spacing: 0.02em; }
.story-signature-title { font-family: var(--font-ui); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tgw-muted); }

/* ---------- Disciplines ---------- */
.disciplines-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.discipline-card {
  position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
  display: block;
}
.discipline-card:hover { transform: translateY(-6px); border-color: var(--tgw-orange); }
.discipline-image {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s;
  filter: brightness(0.65) contrast(1.1) saturate(0.9);
}
.discipline-card:hover .discipline-image { transform: scale(1.08); filter: brightness(0.55) contrast(1.15) saturate(1); }
.discipline-slash {
  position: absolute; top: 0; right: 0; width: 84px; height: 84px;
  background: var(--tgw-orange);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  transform: translate(42px, -42px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); z-index: 2;
}
.discipline-card:hover .discipline-slash { transform: translate(0, 0); }
.discipline-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0.2) 75%, rgba(0,0,0,0.4) 100%);
}
.discipline-content { position: absolute; inset: 0; z-index: 3; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; }
.discipline-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--tgw-muted); align-self: flex-start;
}
.discipline-tag::before { content: ''; width: 6px; height: 6px; background: var(--tgw-orange); border-radius: 50%; }
.discipline-bottom { display: flex; flex-direction: column; gap: 14px; }
.discipline-name { font-family: var(--font-display); font-size: 48px; font-weight: 400; line-height: 0.9; letter-spacing: 0.02em; }
.discipline-line { font-family: var(--font-ui); font-weight: 300; font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.45; max-width: 92%; }
.discipline-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.15);
  font-family: var(--font-ui); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
}
.discipline-time { color: var(--tgw-muted); }
.discipline-time strong { color: #FFFFFF; font-weight: 600; }
.discipline-arrow {
  width: 34px; height: 34px; border-radius: 50%;
  background: #FFFFFF; color: var(--tgw-black);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  transition: background 0.3s, transform 0.3s;
}
.discipline-card:hover .discipline-arrow { background: var(--tgw-orange); transform: translateX(4px); }

/* ---------- Fighters (homepage feature grid) ---------- */
.fighters-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 20px; }
.fighter-card-large, .fighter-card {
  position: relative; overflow: hidden;
  background: var(--tgw-charcoal); border: 1px solid var(--tgw-line);
  cursor: pointer; transition: border-color 0.3s, transform 0.4s;
}
.fighter-card-large:hover, .fighter-card:hover { border-color: var(--tgw-orange); transform: translateY(-4px); }
.fighter-card-large { grid-row: span 2; display: flex; flex-direction: column; }
.fighter-card-large-image { flex: 1; min-height: 480px; background-size: cover; background-position: center top; position: relative; }
.fighter-card-large-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.7) 100%); }
.fighter-card-large-content { padding: 32px; }
.fighter-eyebrow { font-family: var(--font-ui); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--tgw-orange); margin-bottom: 12px; }
.fighter-name { font-family: var(--font-display); font-size: 56px; line-height: 0.95; margin-bottom: 8px; }
.fighter-nickname { font-family: var(--font-ui); font-style: italic; font-weight: 300; font-size: 16px; color: var(--tgw-orange); margin-bottom: 24px; }
.fighter-bio { font-family: var(--font-ui); font-weight: 300; font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.75); max-width: 500px; }
.fighter-stats { display: flex; gap: 24px; margin: 24px 0; padding: 20px 0; border-top: 1px solid var(--tgw-line); border-bottom: 1px solid var(--tgw-line); flex-wrap: wrap; }
.fighter-stat-label { font-family: var(--font-ui); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tgw-muted); display: block; margin-bottom: 4px; }
.fighter-stat-value { font-family: var(--font-display); font-size: 28px; letter-spacing: 0.02em; color: #FFFFFF; }
.fighter-stat-value em { font-family: var(--font-ui); font-style: italic; font-weight: 300; font-size: 14px; color: var(--tgw-orange); margin-left: 8px; }
.fighter-card { display: flex; flex-direction: column; }
.fighter-card-image { aspect-ratio: 4/5; background-size: cover; background-position: center top; filter: brightness(0.85); }
.fighter-card-content { padding: 20px; flex-shrink: 0; }
.fighter-card-name { font-family: var(--font-display); font-size: 26px; line-height: 1; margin-bottom: 4px; }
.fighter-card-nickname { font-family: var(--font-ui); font-style: italic; font-weight: 300; font-size: 13px; color: var(--tgw-orange); margin-bottom: 8px; }
.fighter-card-meta { font-family: var(--font-ui); font-size: 11px; font-weight: 300; letter-spacing: 0.16em; text-transform: uppercase; color: var(--tgw-muted); }
.fighter-card-meta strong { color: var(--tgw-orange); font-weight: 500; }

/* ---------- BeeHive ---------- */
.beehive {
  margin-top: 32px; padding: 24px 28px;
  border: 1px solid rgba(245, 130, 32, 0.3);
  background: rgba(245, 130, 32, 0.04);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.beehive-label { font-family: var(--font-ui); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--tgw-orange); }
.beehive-title { font-family: var(--font-display); font-size: 28px; margin-top: 4px; }
.beehive-text { font-family: var(--font-ui); font-weight: 300; font-size: 14px; color: rgba(255,255,255,0.75); max-width: 480px; margin-top: 8px; }

/* ---------- Tribute (Great White Campaign) ---------- */
.tribute {
  background: #111; padding: 100px 0;
  border-top: 1px solid var(--tgw-line); border-bottom: 1px solid var(--tgw-line);
  position: relative; overflow: hidden;
}
.tribute-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: stretch; }
.tribute-photo { background-size: cover; background-position: center; min-height: 560px; width: 100%; }
.tribute-right { display: flex; flex-direction: column; justify-content: space-between; gap: 40px; }
.tribute-text { border-left: 2px solid var(--tgw-orange); padding-left: 28px; }
.tribute-text h3 { font-family: var(--font-display); font-size: 56px; line-height: 0.95; font-weight: 400; margin-bottom: 16px; }
.tribute-text h3 em { font-family: var(--font-ui); font-style: italic; font-weight: 300; color: var(--tgw-orange); display: block; font-size: 0.55em; margin-top: 8px; }
.tribute-text p { font-family: var(--font-ui); font-weight: 300; font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.tribute-text p em { color: rgba(255,255,255,0.45); font-style: italic; }
.tribute-text .btn-secondary { margin-top: 8px; }
.tribute-logo-panel { background: #FFFFFF; padding: 32px 40px; display: flex; align-items: center; justify-content: center; margin-left: 30px; }
.tribute-logo-panel img { max-height: 140px; width: auto; max-width: 100%; object-fit: contain; }
.tribute-placeholder-flag {
  display: inline-block; margin-bottom: 16px;
  font-family: var(--font-ui); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #FF8A78; border: 1px solid rgba(230,51,18,0.4); background: rgba(230,51,18,0.08); padding: 5px 10px;
}

/* ---------- Schedule ---------- */
.schedule-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.schedule-text h3 { font-family: var(--font-display); font-size: 56px; line-height: 0.95; font-weight: 400; margin-bottom: 20px; }
.schedule-text p { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.schedule-table { background: var(--tgw-charcoal); border: 1px solid var(--tgw-line); }
.schedule-row { display: grid; grid-template-columns: 100px 1fr; border-bottom: 1px solid var(--tgw-line); transition: background 0.2s ease; }
.schedule-row:hover { background: rgba(245,130,32,0.04); }
.schedule-row:last-child { border-bottom: none; }
.schedule-day {
  background: var(--tgw-orange); color: var(--tgw-black);
  padding: 20px 16px; font-family: var(--font-display); font-size: 22px; letter-spacing: 0.04em;
  display: flex; align-items: center; justify-content: center;
}
.schedule-row.closed .schedule-day { background: var(--tgw-graphite); color: var(--tgw-muted); }
.schedule-sessions { padding: 16px 24px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.schedule-session-name { font-family: var(--font-ui); font-size: 13px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; display: block; }
.schedule-session-time { font-family: var(--font-ui); font-weight: 300; font-size: 12px; color: var(--tgw-muted); }
.schedule-row.closed .schedule-sessions { color: var(--tgw-muted); font-family: var(--font-ui); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; }

/* ---------- Step inside ---------- */
.step-inside { position: relative; height: 70vh; min-height: 540px; overflow: hidden; display: flex; align-items: center; }
.step-inside-image { position: absolute; inset: 0; background-size: cover; background-position: center; }
.step-inside-content { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); width: 100%; }
.step-inside h3 { font-family: var(--font-display); font-size: clamp(56px, 7vw, 96px); line-height: 0.95; font-weight: 400; max-width: 700px; margin-bottom: 16px; }
.step-inside h3 em { font-family: var(--font-ui); font-style: italic; font-weight: 300; color: var(--tgw-orange); }
.step-inside p { font-family: var(--font-ui); font-weight: 300; font-size: 18px; color: rgba(255,255,255,0.85); max-width: 500px; line-height: 1.5; margin-bottom: 32px; }

/* ---------- CTA banner ---------- */
.cta-banner { background: var(--tgw-orange); color: var(--tgw-black); padding: 80px 0; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(135deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.15) 100%); }
.cta-banner-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-banner h3 { font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px); line-height: 0.95; font-weight: 400; max-width: 700px; }
.cta-banner h3 em { font-family: var(--font-ui); font-style: italic; font-weight: 300; color: rgba(0,0,0,0.55); }
.cta-banner-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.cta-banner-btn {
  background: var(--tgw-black); color: #FFFFFF;
  font-family: var(--font-ui); font-size: 14px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; padding: 20px 36px;
  display: inline-flex; align-items: center; gap: 14px; transition: background 0.2s ease;
}
.cta-banner-btn::after { content: '→'; }
.cta-banner-btn:hover { background: #1F1F1F; }
.cta-banner-sub { font-family: var(--font-ui); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(0,0,0,0.7); }

/* ---------- Sponsors ---------- */
.sponsors { background: var(--tgw-charcoal); padding: 100px 0; }
.sponsors-header { text-align: center; margin-bottom: 56px; }
.sponsors-header .section-eyebrow { display: inline-flex; margin: 0 auto 16px; }
.sponsors-header h3 { font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px); line-height: 0.95; font-weight: 400; }
.sponsors-header h3 em { font-family: var(--font-ui); font-style: italic; font-weight: 300; color: var(--tgw-orange); }
.sponsors-header p { font-family: var(--font-ui); font-weight: 300; font-size: 16px; color: rgba(255,255,255,0.7); max-width: 580px; margin: 16px auto 0; }
.sponsors-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--tgw-line); border: 1px solid var(--tgw-line); }
.sponsor-slot {
  aspect-ratio: 16/9; background: var(--tgw-black);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-ui); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); transition: background 0.3s; padding: 16px; text-align: center;
}
.sponsor-slot img { max-height: 64px; max-width: 80%; width: auto; object-fit: contain; filter: grayscale(1) brightness(1.6); opacity: 0.85; transition: filter 0.3s, opacity 0.3s; }
.sponsor-slot:hover { background: rgba(245, 130, 32, 0.06); color: var(--tgw-orange); }
.sponsor-slot:hover img { filter: none; opacity: 1; }
.sponsors-cta { margin-top: 48px; text-align: center; }
.sponsors-cta p { font-family: var(--font-ui); font-weight: 300; font-size: 15px; color: var(--tgw-muted); margin-bottom: 16px; }

/* ---------- Prose (About, discipline detail, GWC page) ---------- */
.prose { max-width: 720px; }
.prose p { font-size: 17px; line-height: 1.75; color: rgba(255,255,255,0.82); margin-bottom: 24px; }
.prose h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); line-height: 1; font-weight: 400; margin: 48px 0 20px; }
.prose h3 { font-family: var(--font-ui); font-weight: 600; font-size: 20px; letter-spacing: 0.02em; margin: 32px 0 12px; }
.prose ul { list-style: none; margin: 0 0 24px; padding: 0; }
.prose ul li { position: relative; padding-left: 26px; margin-bottom: 12px; font-size: 16px; line-height: 1.65; color: rgba(255,255,255,0.82); }
.prose ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 10px; height: 2px; background: var(--tgw-orange); }
.prose a { color: var(--tgw-orange); border-bottom: 1px solid rgba(245,130,32,0.4); }
.prose a:hover { border-bottom-color: var(--tgw-orange); }

/* Two-column content layout */
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: start; }
.split.reverse { grid-template-columns: 0.9fr 1.1fr; }
.split-media { position: relative; }
.split-media .ratio { aspect-ratio: 4/5; background-size: cover; background-position: center; border: 1px solid var(--tgw-line); }
.split-media .ratio.wide { aspect-ratio: 4/3; }

/* Feature list / "what to expect" cards */
.feature-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: var(--tgw-line); border: 1px solid var(--tgw-line); }
.feature-item { background: var(--tgw-charcoal); padding: 32px 28px; }
.feature-item .num { font-family: var(--font-display); font-size: 32px; color: var(--tgw-orange); line-height: 1; }
.feature-item h4 { font-family: var(--font-ui); font-weight: 600; font-size: 16px; letter-spacing: 0.04em; margin: 16px 0 8px; }
.feature-item p { font-family: var(--font-ui); font-weight: 300; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.7); }

/* Info stat row (used on discipline pages) */
.info-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1px; background: var(--tgw-line); border: 1px solid var(--tgw-line); margin: 40px 0; }
.info-cell { background: var(--tgw-black); padding: 24px; }
.info-cell .label { font-family: var(--font-ui); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tgw-muted); display: block; margin-bottom: 8px; }
.info-cell .value { font-family: var(--font-display); font-size: 26px; letter-spacing: 0.02em; }

/* ---------- Fighter directory ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.filter-btn {
  font-family: var(--font-ui); font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--tgw-muted); background: transparent;
  border: 1px solid var(--tgw-line); padding: 12px 22px; transition: all 0.2s;
}
.filter-btn:hover { color: #FFF; border-color: rgba(255,255,255,0.4); }
.filter-btn.active { color: var(--tgw-black); background: var(--tgw-orange); border-color: var(--tgw-orange); }
.directory-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.directory-card { position: relative; overflow: hidden; background: var(--tgw-charcoal); border: 1px solid var(--tgw-line); transition: border-color 0.3s, transform 0.4s; display: flex; flex-direction: column; }
.directory-card:hover { border-color: var(--tgw-orange); transform: translateY(-4px); }
.directory-card-image { aspect-ratio: 4/5; background-size: cover; background-position: center top; filter: brightness(0.85); }
.directory-card-body { padding: 22px; }
.directory-card-name { font-family: var(--font-display); font-size: 30px; line-height: 1; margin-bottom: 4px; }
.directory-card-nick { font-family: var(--font-ui); font-style: italic; font-weight: 300; font-size: 14px; color: var(--tgw-orange); margin-bottom: 10px; }
.directory-card-meta { font-family: var(--font-ui); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tgw-muted); }
.directory-card-meta strong { color: var(--tgw-orange); font-weight: 500; }
.is-hidden { display: none !important; }

/* ---------- Fighter profile ---------- */
.profile-hero { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: stretch; }
.profile-photo { min-height: 520px; background-size: cover; background-position: center top; border: 1px solid var(--tgw-line); }
.profile-titles { list-style: none; margin: 24px 0 0; }
.profile-titles li { font-family: var(--font-ui); font-weight: 300; padding-left: 26px; position: relative; margin-bottom: 10px; color: rgba(255,255,255,0.82); }
.profile-titles li::before { content: '★'; position: absolute; left: 0; color: var(--tgw-orange); font-size: 12px; top: 3px; }
.sponsor-block { margin-top: 40px; padding: 28px; border: 1px solid rgba(245,130,32,0.3); background: rgba(245,130,32,0.04); }

/* ---------- Events ---------- */
.event-list { display: grid; gap: 20px; }
.event-item {
  display: grid; grid-template-columns: 120px 1fr auto; gap: 32px; align-items: center;
  background: var(--tgw-charcoal); border: 1px solid var(--tgw-line); padding: 28px 32px;
  transition: border-color 0.3s;
}
.event-item:hover { border-color: var(--tgw-orange); }
.event-date-block { text-align: center; border-right: 1px solid var(--tgw-line); padding-right: 24px; }
.event-date-day { font-family: var(--font-display); font-size: 44px; line-height: 0.9; color: var(--tgw-orange); }
.event-date-mon { font-family: var(--font-ui); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tgw-muted); }
.event-title { font-family: var(--font-display); font-size: 30px; line-height: 1; margin-bottom: 6px; }
.event-venue { font-family: var(--font-ui); font-weight: 300; font-size: 14px; letter-spacing: 0.06em; color: var(--tgw-muted); }
.event-tag { display: inline-block; margin-top: 8px; font-family: var(--font-ui); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--tgw-orange); border: 1px solid rgba(245,130,32,0.35); padding: 4px 10px; }
.events-past-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.event-past-card { background: var(--tgw-charcoal); border: 1px solid var(--tgw-line); padding: 24px; }
.event-past-card .d { font-family: var(--font-ui); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--tgw-muted); margin-bottom: 8px; }
.event-past-card .t { font-family: var(--font-display); font-size: 24px; line-height: 1; }

/* Empty state */
.empty-state { text-align: center; padding: 72px 24px; border: 1px dashed var(--tgw-line); }
.empty-state h3 { font-family: var(--font-display); font-size: 36px; margin-bottom: 12px; }
.empty-state p { font-family: var(--font-ui); font-weight: 300; color: var(--tgw-muted); max-width: 460px; margin: 0 auto 24px; }

/* ---------- News (styled feed) ---------- */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.news-card { background: var(--tgw-charcoal); border: 1px solid var(--tgw-line); display: flex; flex-direction: column; transition: border-color 0.3s, transform 0.4s; }
.news-card:hover { border-color: var(--tgw-orange); transform: translateY(-4px); }
.news-card-media { aspect-ratio: 16/9; background-size: cover; background-position: center; background-color: #0d0d0d; }
.news-card-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.news-card-date { font-family: var(--font-ui); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--tgw-orange); }
.news-card-text { font-family: var(--font-ui); font-weight: 300; font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.82); }
.news-card-link { margin-top: auto; font-family: var(--font-ui); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tgw-orange); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-detail { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--tgw-line); }
.contact-detail:first-child { padding-top: 0; }
.contact-detail .ic { width: 40px; height: 40px; flex-shrink: 0; border: 1px solid rgba(245,130,32,0.4); display: flex; align-items: center; justify-content: center; color: var(--tgw-orange); }
.contact-detail .label { font-family: var(--font-ui); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tgw-muted); display: block; margin-bottom: 4px; }
.contact-detail .value { font-family: var(--font-ui); font-size: 16px; color: #FFF; }
.contact-detail .value a:hover { color: var(--tgw-orange); }
.map-embed { margin-top: 40px; border: 1px solid var(--tgw-line); }
.map-embed iframe { display: block; width: 100%; height: 340px; border: 0; filter: grayscale(0.3) invert(0.9) hue-rotate(180deg) contrast(0.9); }

/* ---------- Forms ---------- */
.form { display: grid; gap: 22px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-family: var(--font-ui); font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--tgw-muted); }
.form-field label .req { color: var(--tgw-orange); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body); font-size: 15px; color: #FFF;
  background: var(--tgw-charcoal); border: 1px solid var(--tgw-line);
  padding: 14px 16px; transition: border-color 0.2s; width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--tgw-orange); outline: none; }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--tgw-orange) 50%), linear-gradient(135deg, var(--tgw-orange) 50%, transparent 50%); background-position: calc(100% - 20px) center, calc(100% - 15px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form button[type="submit"] { justify-self: start; margin-top: 8px; border: none; }
.form-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-note { font-family: var(--font-ui); font-weight: 300; font-size: 13px; color: var(--tgw-muted); line-height: 1.6; }
.form-status { font-family: var(--font-ui); font-size: 14px; padding: 16px 18px; display: none; }
.form-status.is-visible { display: block; }
.form-status.ok { background: rgba(245,130,32,0.1); border: 1px solid rgba(245,130,32,0.4); color: var(--tgw-orange-bright); }
.form-status.err { background: rgba(230,51,18,0.1); border: 1px solid rgba(230,51,18,0.4); color: #FF8A78; }

/* ---------- 404 ---------- */
.error-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px var(--gutter); }
.error-code { font-family: var(--font-display); font-size: clamp(120px, 22vw, 260px); line-height: 0.9; color: var(--tgw-orange); }
.error-page h1 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 60px); margin: 8px 0 16px; }
.error-page p { font-family: var(--font-ui); font-weight: 300; color: var(--tgw-muted); max-width: 440px; margin: 0 auto 32px; }

/* ---------- Footer ---------- */
.footer { background: var(--tgw-black); padding: 80px 0 40px; border-top: 1px solid var(--tgw-line); }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--tgw-line); }
.footer-brand-logo { font-family: var(--font-display); font-size: 32px; letter-spacing: 0.04em; color: var(--tgw-orange); margin-bottom: 16px; }
.footer-brand-logo em { color: #FFFFFF; font-style: normal; }
.footer-brand-text { font-family: var(--font-ui); font-weight: 300; font-size: 14px; line-height: 1.6; color: var(--tgw-muted); max-width: 280px; }
.footer-col h4 { font-family: var(--font-ui); font-size: 11px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--tgw-orange); margin-bottom: 24px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; font-family: var(--font-ui); font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.8); }
.footer-col li a:hover { color: var(--tgw-orange); }
.footer-bottom { padding-top: 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-family: var(--font-ui); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--tgw-muted); }
.footer-socials { display: flex; gap: 24px; }
.footer-socials a:hover { color: var(--tgw-orange); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  :root { --section-pad: 96px; }
  .disciplines-grid { grid-template-columns: repeat(2, 1fr); }
  .fighters-grid { grid-template-columns: 1fr 1fr; }
  .fighter-card-large { grid-column: span 2; grid-row: auto; }
  .fighter-card-large-image { min-height: 360px; }
  .story-grid, .schedule-grid, .split, .split.reverse, .profile-hero, .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .tribute-inner { grid-template-columns: 1fr; gap: 40px; }
  .tribute-photo { min-height: 420px; }
  .tribute-logo-panel { margin-left: 0; }
  .story-content { padding-left: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .sponsors-grid { grid-template-columns: repeat(4, 1fr); }
  .profile-photo { min-height: 420px; }
}
@media (max-width: 720px) {
  :root { --section-pad: 72px; --gutter: 20px; }
  /* Mobile nav */
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    flex-direction: column; gap: 8px;
    background: var(--tgw-black); border-left: 1px solid var(--tgw-line);
    padding: 96px 32px 32px; transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1); font-size: 16px; z-index: 90;
  }
  .nav-menu a { padding: 12px 0; border-bottom: 1px solid var(--tgw-line); }
  .nav-toggle:checked ~ .nav-menu { transform: translateX(0); }
  .nav-toggle-label {
    display: flex; flex-direction: column; gap: 5px; width: 28px; height: 22px;
    justify-content: center; z-index: 95; position: relative;
  }
  .nav-toggle-label span { display: block; height: 2px; width: 100%; background: #FFF; transition: transform 0.3s, opacity 0.3s; }
  .nav-toggle:checked ~ .nav-right .nav-toggle-label span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-right .nav-toggle-label span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-right .nav-toggle-label span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .section { padding: var(--section-pad) 0; }
  .disciplines-grid { grid-template-columns: 1fr; }
  .fighters-grid { grid-template-columns: 1fr; }
  .fighter-card-large { grid-column: span 1; }
  .hero { min-height: 76vh; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .strip-inner { grid-template-columns: 1fr 1fr; }
  .cta-banner-inner { flex-direction: column; align-items: flex-start; }
  .cta-banner-actions { align-items: flex-start; }
  .sponsors-grid { grid-template-columns: repeat(3, 1fr); }
  .section-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 40px; }
  .event-item { grid-template-columns: 88px 1fr; gap: 20px; }
  .event-item .btn-primary, .event-item .btn-secondary { grid-column: 1 / -1; }
  .form-row { grid-template-columns: 1fr; }
  .hero-caption { display: none; }
}

/* Show mobile toggle only on small screens */
@media (min-width: 721px) { .nav-toggle-label { display: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
