/* ============================================================
   NEW YORK BOXING COMMUNITY — STYLESHEET
   Vintage 1920s–1940s Fight Bill Broadsheet Aesthetic
   ============================================================ */

/* --- CUSTOM PROPERTIES --- */
:root {
  --cream: #F0E6CC;
  --newsprint: #E8D9B8;
  --aged-paper: #DFCEAa;
  --ink: #1A1410;
  --soot: #2A2018;
  --blood-red: #8B1A1A;
  --crimson: #A31515;
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --worn-gold: #B8952A;
  --mid-gray: #5A4E3A;
  --light-gray: #9A8E7A;

  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Libre Baskerville', Georgia, serif;
  --font-accent: 'Old Standard TT', Georgia, serif;
  --font-sub: 'EB Garamond', Georgia, serif;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.85;
  overflow-x: hidden;
}

/* Paper texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }

p { margin-bottom: 1.2em; }
a { color: var(--blood-red); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--crimson); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* --- NAVIGATION --- */
.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--ink);
  border-bottom: 3px solid var(--gold);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  flex-wrap: nowrap;
  gap: 0;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1.1;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
}
.nav-links li a {
  display: block;
  padding: 0 0.75rem;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  line-height: 70px;
  white-space: nowrap;
  border-right: 1px solid rgba(201,168,76,0.2);
  transition: background 0.2s, color 0.2s;
}
.nav-links li a:hover,
.nav-links li a.active {
  background: var(--blood-red);
  color: var(--cream);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- NAV LOGO IMAGE --- */
.nav-logo-img {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 4px 0;
  line-height: 1;
  text-decoration: none;
}
.nav-logo-image {
  height: 54px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.2s;
}
.nav-logo-img:hover .nav-logo-image {
  opacity: 0.85;
}
@media (max-width: 768px) {
  .nav-logo-image {
    height: 44px;
  }
}
@media (max-width: 480px) {
  .nav-logo-image {
    height: 38px;
  }
}


/* ============================================
   WE STAND TOGETHER SECTION
   ============================================ */
.we-stand-section {
  background: var(--ink);
  border-top: 4px solid var(--blood-red);
  border-bottom: 4px solid var(--blood-red);
  padding: 5rem 0;
  text-align: center;
}
.we-stand-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.we-stand-label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.we-stand-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7.5rem);
  color: var(--cream);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin: 0 0 1.5rem 0;
  text-transform: uppercase;
  text-align: center;
}
.we-stand-rule {
  width: 80px;
  height: 3px;
  background: var(--blood-red);
  margin: 0 auto 2.5rem auto;
  display: block;
}
.we-stand-text {
  width: 100%;
  max-width: 720px;
  text-align: center;
  margin-bottom: 3rem;
}
.we-stand-body {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.9;
  color: rgba(240,232,216,0.88);
  margin-bottom: 1.3rem;
  text-align: center;
}
.we-stand-figure {
  width: 100%;
  max-width: 820px;
  margin: 0 auto 3rem auto;
}
.we-stand-img {
  width: 100%;
  height: auto;
  display: block;
  border: 3px solid var(--gold);
  filter: sepia(15%) contrast(1.05);
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}
.we-stand-caption {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(201,168,76,0.7);
  text-transform: uppercase;
  text-align: center;
  margin-top: 0.9rem;
  line-height: 1.7;
}
.we-stand-caption em {
  font-style: italic;
  text-transform: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(240,232,216,0.6);
}
.we-stand-tagline {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 1rem;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .we-stand-title {
    font-size: clamp(3rem, 14vw, 5rem);
  }
  .we-stand-body {
    font-size: 1rem;
  }
  .we-stand-section {
    padding: 3.5rem 0;
  }
}
@media (max-width: 480px) {
  .we-stand-title {
    font-size: clamp(2.5rem, 14vw, 3.5rem);
  }
  .we-stand-section {
    padding: 2.5rem 0;
  }
}

/* --- HERO --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: sepia(60%) contrast(1.1) brightness(0.7);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,20,16,0.5) 0%,
    rgba(26,20,16,0.3) 40%,
    rgba(26,20,16,0.7) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream);
  padding: 2rem;
  max-width: 900px;
  width: 100%;
}
.hero-kicker {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--cream);
  text-shadow: 3px 3px 20px rgba(0,0,0,0.8);
  margin-bottom: 1.5rem;
}
.hero-rule {
  width: 120px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}
.hero-subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.hero-tagline {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2rem;
}

/* --- BUTTONS --- */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--blood-red);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid var(--blood-red);
  transition: all 0.2s;
}
.btn-primary:hover {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-secondary {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: transparent;
  color: var(--blood-red);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid var(--blood-red);
  transition: all 0.2s;
}
.btn-secondary:hover {
  background: var(--blood-red);
  color: var(--cream);
}
.btn-primary-light {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: all 0.2s;
}
.btn-primary-light:hover {
  background: transparent;
  color: var(--gold);
}
.btn-link {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blood-red);
  border-bottom: 1px solid var(--blood-red);
  padding-bottom: 2px;
}
.btn-link:hover { color: var(--crimson); border-color: var(--crimson); }

/* --- SECTION HEADERS --- */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { color: var(--ink); margin-bottom: 0.5rem; }
.section-header.light h2 { color: var(--cream); }
.section-sub {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--mid-gray);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.ornament {
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.5em;
  margin-bottom: 1rem;
  display: block;
}
.ornament.light { color: var(--gold-light); }
.rule-double {
  width: 200px;
  margin: 1rem auto 0;
  border-top: 3px double var(--gold);
}
.rule-double.light { border-color: var(--gold-light); }
.rule-single {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 1rem 0;
}
.rule-single.light { background: var(--gold-light); }

/* --- MANIFESTO --- */
.manifesto {
  padding: 6rem 0;
  background: var(--cream);
  position: relative;
}
.manifesto::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--blood-red) 0, var(--blood-red) 20px,
    var(--gold) 20px, var(--gold) 40px
  );
}
.manifesto-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--ink);
}
.drop-cap::first-letter {
  float: left;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 0.85;
  margin: 0.1em 0.15em 0 0;
  color: var(--blood-red);
  font-weight: 900;
}
.pull-quote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--blood-red);
  background: rgba(201,168,76,0.08);
}

/* --- FIGHT BILL SECTION --- */
.fight-bill-section {
  background: var(--ink);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.fight-bill-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.01) 2px,
    rgba(255,255,255,0.01) 4px
  );
}
.fight-bill-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.fb-kicker {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.fb-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: var(--cream);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.fight-bill-text p {
  color: rgba(240,230,204,0.85);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}
.fight-bill-image img {
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  border: 3px solid var(--gold);
  transform: rotate(1.5deg);
}

/* --- CHAMPIONS GRID --- */
.champions-preview {
  padding: 6rem 0;
  background: var(--newsprint);
  position: relative;
}
.champions-preview::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--blood-red) 0, var(--blood-red) 20px,
    var(--gold) 20px, var(--gold) 40px
  );
}
.champions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.champion-card {
  background: var(--cream);
  border: 2px solid var(--gold);
  padding: 2rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.champion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(139,26,26,0.2);
}
.champion-card::before {
  content: '';
  position: absolute;
  top: 6px; left: 6px; right: 6px; bottom: 6px;
  border: 1px solid rgba(201,168,76,0.3);
  pointer-events: none;
}
.champion-star {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.champion-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--blood-red);
  margin-bottom: 0.3rem;
}
.champion-title {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--mid-gray);
  margin-bottom: 1rem;
  font-style: italic;
}
.champion-desc {
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 1rem;
}
.section-cta { text-align: center; }

/* --- COMMUNITY SECTION --- */
.community-section {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.community-image-wrap {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.community-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: sepia(30%) contrast(1.1) brightness(0.6);
}
.community-text {
  padding: 5rem 0;
  background: var(--ink);
}
.community-text p {
  color: rgba(240,230,204,0.85);
  font-size: 1.05rem;
  max-width: 800px;
  margin-bottom: 1.2rem;
}

/* --- IMMIGRANT SECTION --- */
.immigrant-section {
  padding: 6rem 0;
  background: var(--cream);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.col-image img {
  width: 100%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  border: 3px solid var(--gold);
  filter: sepia(20%);
}
.image-caption {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-style: italic;
  color: var(--mid-gray);
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.col-text h2 { color: var(--ink); margin-bottom: 0.5rem; }
.col-text p { color: var(--soot); }

/* --- MSG SECTION --- */
.msg-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.msg-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: sepia(40%) contrast(1.2) brightness(0.5);
}
.msg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26,20,16,0.9) 0%,
    rgba(26,20,16,0.7) 50%,
    rgba(26,20,16,0.3) 100%
  );
}
.msg-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 4rem 2rem 4rem 6rem;
  color: var(--cream);
}
.msg-kicker {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.msg-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: var(--cream);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.msg-content p {
  color: rgba(240,230,204,0.85);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

/* --- TRAINER SECTION --- */
.trainer-section {
  padding: 6rem 0;
  background: var(--newsprint);
}
.trainer-section .col-text h2 { color: var(--ink); }
.trainer-section .col-text p { color: var(--soot); }

/* --- STAND TOGETHER --- */
.stand-together {
  padding: 6rem 0;
  background: var(--ink);
  text-align: center;
  position: relative;
}
.stand-together::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0, var(--gold) 20px,
    var(--blood-red) 20px, var(--blood-red) 40px
  );
}
.stand-together .section-header h2 { color: var(--cream); }
.stand-together .rule-double { border-color: var(--gold); }
.stand-text {
  max-width: 800px;
  margin: 0 auto 3rem;
}
.stand-text p {
  color: rgba(240,230,204,0.85);
  font-size: 1.1rem;
  margin-bottom: 1.4rem;
}
.stand-cta-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.4rem !important;
  color: var(--gold) !important;
}
.star-of-david-display {
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.6;
  margin-top: 2rem;
}

/* --- FOOTER --- */
/* --- UPGRADED FOOTER --- */
.site-footer {
  background: #0E0B08;
  color: rgba(240,230,204,0.7);
  padding: 4rem 0 2rem;
  border-top: 4px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col p { font-size: 0.9rem; line-height: 1.6; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul li a {
  color: rgba(240,230,204,0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-rule {
  height: 1px;
  background: rgba(201,168,76,0.3);
  margin-bottom: 1.5rem;
}
.footer-copy {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-align: center;
  color: rgba(240,230,204,0.5);
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.85rem;
  text-align: center;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 0;
}

/* Footer brand column */
.footer-col-brand { max-width: 280px; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 1rem;
}

/* Social links */
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.2rem;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(240,230,204,0.65);
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}
.social-link:hover { color: var(--gold); }
.social-link svg { flex-shrink: 0; }

/* Footer star decoration */
.footer-star {
  font-size: 1.8rem;
  color: var(--gold);
  opacity: 0.5;
  margin-top: 1.5rem;
}

/* Footer bottom row */
.footer-bottom-inner {
  text-align: center;
}

/* Footer grid — 4 columns on desktop */
.footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }

/* --- INNER PAGE STYLES --- */
.page-hero {
  padding: 120px 0 60px;
  background: var(--ink);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--blood-red) 0, var(--blood-red) 20px,
    var(--gold) 20px, var(--gold) 40px
  );
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 6rem);
  color: var(--cream);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.page-hero .page-sub {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--gold);
  font-size: 1.2rem;
}
.page-content {
  padding: 5rem 0;
}
.page-content p { color: var(--soot); font-size: 1.05rem; }
.page-content h2 { color: var(--blood-red); margin: 2.5rem 0 1rem; }
.page-content h3 { color: var(--ink); margin: 2rem 0 0.8rem; }

/* Fighter profile cards */
.fighter-profile {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  margin: 3rem 0;
  padding: 3rem;
  background: var(--newsprint);
  border: 2px solid var(--gold);
  position: relative;
}
.fighter-profile::before {
  content: '';
  position: absolute;
  top: 8px; left: 8px; right: 8px; bottom: 8px;
  border: 1px solid rgba(201,168,76,0.3);
  pointer-events: none;
}
.fighter-profile-image img {
  width: 100%;
  filter: sepia(30%) contrast(1.1);
  border: 2px solid var(--gold);
}
.fighter-profile-text h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--blood-red);
  margin-bottom: 0.3rem;
}
.fighter-record {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--mid-gray);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.fighter-stats {
  display: flex;
  gap: 2rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  min-width: 80px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--blood-red);
  display: block;
}
.stat-label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 3rem;
  margin: 3rem 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
}
.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}
.timeline-item::before {
  content: '✡';
  position: absolute;
  left: -2.8rem;
  top: 0.1rem;
  font-size: 1rem;
  color: var(--gold);
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--blood-red);
  margin-bottom: 0.3rem;
}
.timeline-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  margin-top: 0;
}
.timeline-item p { font-size: 0.95rem; color: var(--soot); margin-bottom: 0; }

/* --- STILLMAN'S GYM SECTION --- */
.stillmans-section {
  padding: 5rem 0;
  background: var(--cream);
  border-top: 4px double var(--gold);
  border-bottom: 4px double var(--gold);
}
.stillmans-kicker {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blood-red);
  margin-bottom: 1.2rem;
}
.stillmans-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}
.stillmans-image {
  position: relative;
}
.stillmans-image picture {
  display: block;
  border: 3px solid var(--gold);
  box-shadow: 6px 6px 0 var(--worn-gold);
  overflow: hidden;
}
.stillmans-image img {
  width: 100%;
  display: block;
  filter: sepia(35%) contrast(1.1) brightness(0.95);
  transition: transform 0.4s ease;
}
.stillmans-image:hover img {
  transform: scale(1.02);
}
.stillmans-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 1.2em;
}
.stillmans-text em {
  font-style: italic;
  color: var(--soot);
}

/* Responsive */
@media (max-width: 900px) {
  .stillmans-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* --- HISTORY SECTION --- */
.history-section {
  padding: 5rem 0;
  background: var(--newsprint);
  border-top: 4px double var(--gold);
  border-bottom: 4px double var(--gold);
}
.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
}
.history-photo-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.history-photo-wrap {
  position: relative;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 4px 4px 0 var(--worn-gold);
}
.history-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(26,20,16,0.4) 100%);
  pointer-events: none;
}
.history-photo-wrap img {
  width: 100%;
  display: block;
  filter: sepia(40%) contrast(1.1) brightness(0.95);
  transition: transform 0.4s ease;
}
.history-photo-wrap:hover img {
  transform: scale(1.03);
}
.history-photo-caption {
  padding: 0 0.5rem;
}
.caption-year {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--blood-red);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.history-photo-caption h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.history-photo-caption p {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.7;
}
.history-quote {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,168,76,0.4);
}

/* --- SCROLL ANIMATIONS --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .champions-grid { grid-template-columns: repeat(2, 1fr); }
  .fight-bill-inner { grid-template-columns: 1fr; gap: 3rem; }
  .fight-bill-image { text-align: center; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col-brand { max-width: 100%; }
  .msg-content { padding: 3rem 2rem; }
  .fighter-profile { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .champions-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col-brand { grid-column: 1 / -1; }
  .footer-social { flex-direction: row; flex-wrap: wrap; }
  .hero-title { font-size: clamp(1.8rem, 10vw, 3.5rem); }
}
/* --- MOBILE NAV IMPROVEMENTS --- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--ink);
    border-top: 1px solid var(--gold);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    line-height: 1;
    padding: 0.9rem 1.5rem;
    border-right: none;
    border-bottom: 1px solid rgba(201,168,76,0.2);
    font-size: 0.85rem;
  }
  .nav-toggle { display: block; }
  .nav-logo { font-size: 0.9rem; letter-spacing: 0.08em; }
  .history-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .nav-has-dropdown > a::after {
    content: " ▼";
    font-size: 0.6em;
  }
  .nav-dropdown {
    position: static !important;
    display: none;
    border: none;
    border-top: 1px solid rgba(201,168,76,0.15);
    box-shadow: none;
    background: rgba(0,0,0,0.25);
    min-width: unset;
  }
  .nav-has-dropdown.open .nav-dropdown {
    display: block;
  }
  .nav-dropdown li a {
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    font-size: 0.78rem;
    border-bottom: 1px solid rgba(201,168,76,0.1);
    line-height: 1.4;
  }
  /* Stillman's section responsive */
  .stillmans-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  /* Footer 2-column on tablet */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
  .footer-social {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

}
@media (max-width: 480px) {
  .nav-logo { font-size: 0.78rem; letter-spacing: 0.05em; }
  .nav-inner { padding: 0 1rem; }
  .history-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-logo { font-size: 1.3rem; }
  .stillmans-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-social { flex-direction: column; }
  .section-header h2 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
}

