@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;900&display=swap');
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red: #C41E3A;
  --gold: #C9A84C;
  --black: #000000;
  --off-black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --gray: #888888;
  --gray-light: #aaaaaa;
  --light: #eeeeee;
  --white: #ffffff;
  --mexican-green: #006847;
}
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: 'Inter', sans-serif; overflow-x: hidden; }

/* ── MARQUEE ── */
.marquee-bar { background: var(--red); padding: 8px 0; overflow: hidden; white-space: nowrap; }
.marquee-bar.green { background: #006847; }
.marquee-track { display: inline-block; animation: marquee 30s linear infinite; }
.marquee-track span { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); padding: 0 20px; }
.marquee-track span.star { color: var(--gold); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── NAV ── */
nav {
  background: var(--black);
  padding: 0 48px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid #1a1a1a;
}
/* Mexican tricolor stripe under nav */
nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--mexican-green) 0%, var(--mexican-green) 33.33%,
    var(--white) 33.33%, var(--white) 66.66%,
    var(--red) 66.66%, var(--red) 100%
  );
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 0.1em;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 0;
}
.nav-logo .boxing { color: var(--red); margin: 0 6px; }
.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav-links a { color: var(--gray); text-decoration: none; font-size: 12px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; transition: color 0.15s; white-space: nowrap; }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--red) !important; color: var(--white) !important; padding: 9px 18px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; border: 2px solid var(--red); transition: background 0.15s !important; white-space: nowrap; }
.nav-cta:hover { background: #a01830 !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--white); }

/* ── HERO ── */
.hero {
  background: var(--black);
  padding: 32px 80px 32px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 680px;
  align-items: center;
  gap: 40px;
}
/* Red left accent line */
.hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--red);
}
.hero-text { position: relative; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--gold);
  color: var(--gold); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 8px 18px; margin-bottom: 32px;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 140px);
  line-height: 0.9; letter-spacing: 0.01em;
  color: var(--white); margin-bottom: 40px;
  display: block;
}
.hero-title .red { color: var(--red); display: block; }
.hero-belt {
  width: 100%;
  display: flex; align-items: center; justify-content: center;
}
.hero-belt img {
  width: 100%;
  max-width: 980px;
  height: auto;
  display: block;
  transform: scale(1.18);
  filter:
    drop-shadow(0 0 12px rgba(196, 30, 58, 1))
    drop-shadow(0 0 28px rgba(196, 30, 58, 0.8))
    drop-shadow(0 0 55px rgba(196, 30, 58, 0.5));
}
.belt-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-red { background: var(--red); color: var(--white); padding: 16px 38px; font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 0.08em; text-decoration: none; text-transform: uppercase; border: 2px solid var(--red); transition: background 0.15s; display: inline-block; }
.btn-red:hover { background: #a01830; border-color: #a01830; }
.btn-ghost { background: transparent; color: var(--white); padding: 16px 38px; font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 0.08em; text-decoration: none; text-transform: uppercase; border: 2px solid #444; transition: border-color 0.15s; display: inline-block; }
.btn-ghost:hover { border-color: var(--white); }

/* ── DIVIDER ── */
.divider { height: 4px; background: var(--red); }
.divider-thin { height: 1px; background: #1f1f1f; }

/* ── STATS ── */
.stats { background: var(--black); display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #1f1f1f; border-bottom: 1px solid #1f1f1f; }
.stat { padding: 40px 32px; border-right: 1px solid #1f1f1f; text-align: center; }
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 64px; color: var(--red); line-height: 1; }
.stat-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); margin-top: 6px; }

/* ── SECTION COMMONS ── */
section { padding: 96px 80px; }
.section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.section-eyebrow::before { content: '★'; font-size: 9px; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 5vw, 72px); letter-spacing: 0.03em; line-height: 1.0; margin-bottom: 16px; }
.section-sub { font-size: 15px; color: var(--gray); line-height: 1.7; max-width: 560px; margin-bottom: 56px; }

/* ── DIFFERENCE ── */
.difference { background: var(--dark); border-left: 5px solid var(--red); }
.diff-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; margin-bottom: 56px; }
.diff-header .section-sub { margin-bottom: 0; }
.diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: #1f1f1f; }
.diff-card { background: var(--dark); padding: 44px 40px; position: relative; }
.diff-num { font-family: 'Bebas Neue', sans-serif; font-size: 72px; color: rgba(196,30,58,0.08); line-height: 1; position: absolute; top: 20px; right: 28px; }
.diff-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 0.04em; margin-bottom: 10px; }
.diff-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ── SESSION ── */
.session { background: var(--black); }
.rounds-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #1f1f1f; }
.round-card { background: var(--dark); padding: 40px 32px; position: relative; }
.round-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); }
.round-tag { font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: 0.15em; color: var(--red); margin-bottom: 8px; }
.round-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 0.04em; margin-bottom: 14px; }
.round-card p { font-size: 13px; color: var(--gray); line-height: 1.7; }

/* ── LEVELS ── */
.levels { background: var(--dark); border-top: 1px solid #1f1f1f; border-bottom: 1px solid #1f1f1f; }
.levels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #1f1f1f; }
.level-card { background: var(--dark); padding: 48px 40px; }
.level-badge { display: inline-block; background: #222; padding: 4px 10px; font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); margin-bottom: 18px; }
.level-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 40px; letter-spacing: 0.02em; margin-bottom: 10px; }
.level-card p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.level-for { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.level-for span { color: var(--gray); font-weight: 400; text-transform: none; letter-spacing: 0; }

/* ── PRIVATE ── */
.private { background: var(--black); }
.private-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #1f1f1f; }
.private-card { background: var(--dark); padding: 40px 36px; }
.private-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 0.04em; margin-bottom: 10px; }
.private-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ── PRICING ── */
.pricing { background: var(--black); }
.pricing-note { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--gold); color: var(--gold); padding: 8px 16px; font-size: 13px; font-weight: 600; margin-bottom: 48px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #1f1f1f; }
.price-card { background: var(--dark); padding: 40px 36px; position: relative; }
.price-card.popular { border-top: 3px solid var(--red); }
.popular-badge { display: inline-block; background: var(--red); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 14px; margin-bottom: 16px; }
.price-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.08em; margin-bottom: 24px; color: var(--gray); }
.price-item { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-bottom: 1px solid #222; }
.price-item:last-of-type { border-bottom: none; }
.price-item-name { font-size: 14px; color: var(--light); font-weight: 500; }
.price-item-cost { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--white); }
.price-item-sub { font-size: 11px; color: var(--gray); }
.gear-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.gear-tag { background: #222; border: 1px solid #2a2a2a; padding: 10px 14px; font-size: 13px; color: var(--gray); }
.gear-tag strong { color: var(--white); display: block; font-size: 15px; }

/* ── SCHEDULE ── */
.schedule { background: var(--dark); border-left: 5px solid var(--red); }
.schedule-intro { font-size: 15px; color: var(--gray); line-height: 1.7; max-width: 720px; margin-bottom: 32px; }
.schedule-image { width: 100%; max-width: 900px; margin: 0 auto 32px; display: block; border: 2px solid #1f1f1f; }
.open-hours-banner { background: var(--black); border: 1px solid #1f1f1f; padding: 20px 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.open-hours-banner .label { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.04em; }
.open-hours-banner .info { font-size: 13px; color: var(--gray); }
.open-hours-banner .price { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--red); }
.day-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #1f1f1f; }
.day-card { background: var(--dark); padding: 28px 24px; }
.day-name { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 0.04em; margin-bottom: 16px; color: var(--white); border-bottom: 1px solid #1f1f1f; padding-bottom: 10px; }
.day-name .closed { color: var(--gray); }
.time-block { display: flex; align-items: baseline; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.time-block .time { font-size: 13px; font-weight: 600; color: var(--white); white-space: nowrap; }
.tag { display: inline-block; padding: 3px 9px; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.tag-beginner { background: rgba(196,30,58,0.15); color: #f87171; }
.tag-advanced { background: rgba(196,30,58,0.28); color: #fca5a5; }
.tag-private { background: rgba(201,168,76,0.15); color: var(--gold); }
.tag-youth { background: rgba(0,104,71,0.2); color: #4ade80; }
.tag-open { background: rgba(60,60,60,0.3); color: #888; }
.schedule-note { background: var(--dark); border: 1px solid #1f1f1f; padding: 28px 32px; margin-top: 0; }
.schedule-note p { font-size: 14px; color: var(--gray); line-height: 1.8; margin-bottom: 8px; }
.schedule-note p:last-child { margin-bottom: 0; }
.schedule-note strong { color: var(--white); font-weight: 600; }
@media (max-width: 768px) { .day-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .day-grid { grid-template-columns: 1fr; } }

/* ── BOOKING ── */
.booking { background: var(--red); text-align: center; padding: 88px 40px; }
.booking h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 6vw, 88px); letter-spacing: 0.03em; margin-bottom: 10px; }
.booking p { font-size: 15px; color: rgba(255,255,255,0.8); margin-bottom: 36px; }
.btn-white { background: var(--white); color: var(--red); padding: 16px 40px; font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.08em; text-decoration: none; text-transform: uppercase; display: inline-block; margin: 0 8px 12px; border: 2px solid var(--white); transition: background 0.15s; }
.btn-white:hover { background: #f0f0f0; }
.btn-outline-w { background: transparent; color: var(--white); padding: 16px 40px; font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.08em; text-decoration: none; text-transform: uppercase; display: inline-block; margin: 0 8px 12px; border: 2px solid rgba(255,255,255,0.5); transition: border-color 0.15s; }
.btn-outline-w:hover { border-color: var(--white); }
.booking-note { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 12px; }
.booking-note a { color: rgba(255,255,255,0.7); }

/* ── REVIEWS ── */
.reviews { background: var(--black); }
.ratings-row { display: flex; gap: 1px; background: #1f1f1f; margin-bottom: 48px; }
.rating-badge { flex: 1; display: flex; flex-direction: column; align-items: center; background: var(--dark); padding: 28px 20px; }
.rating-num { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: var(--white); line-height: 1; }
.rating-stars { color: var(--gold); font-size: 14px; margin: 4px 0; }
.rating-source { font-size: 11px; color: var(--gray); font-weight: 600; letter-spacing: 0.06em; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #1f1f1f; }
.review-card { background: var(--dark); padding: 28px; }
.review-stars { color: var(--gold); font-size: 13px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: var(--light); line-height: 1.7; margin-bottom: 14px; font-style: italic; }
.review-author { font-size: 12px; color: var(--gray); font-weight: 600; }
.featured-in { margin-top: 48px; padding-top: 36px; border-top: 1px solid #1f1f1f; }
.featured-label { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); margin-bottom: 16px; }
.featured-press { background: var(--dark); border: 1px solid #1f1f1f; padding: 24px 32px; display: inline-flex; align-items: center; gap: 20px; }
.press-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.06em; }
.press-quote { font-size: 13px; color: var(--gray); font-style: italic; }

/* ── LOCATION ── */
.location { background: var(--dark); border-right: 5px solid var(--red); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.location-info h3 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 0.04em; margin-bottom: 6px; }
.location-address { font-size: 15px; color: var(--gray); margin-bottom: 4px; }
.location-phone { font-size: 15px; color: var(--red); font-weight: 600; margin-bottom: 24px; }
.map-btn { display: inline-flex; align-items: center; gap: 8px; background: #222; color: var(--white); padding: 10px 18px; font-size: 13px; font-weight: 600; text-decoration: none; margin-bottom: 36px; transition: background 0.15s; }
.map-btn:hover { background: #333; }
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #1f1f1f; font-size: 14px; }
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--gray); }
.hours-time { color: var(--white); font-weight: 500; }
.hours-time.today { color: var(--red); font-weight: 700; }
.hours-time.closed { color: #3a3a3a; }
.map-embed-wrap { width: 100%; height: 400px; overflow: hidden; border: 2px solid #1f1f1f; }
.map-embed-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── FAQ ── */
.faq { background: var(--black); }
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid #1f1f1f; }
.faq-question { width: 100%; background: none; border: none; color: var(--white); text-align: left; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; font-size: 16px; font-weight: 600; cursor: pointer; gap: 16px; transition: color 0.15s; }
.faq-question:hover { color: var(--red); }
.faq-icon { flex-shrink: 0; width: 28px; height: 28px; border: 1px solid #333; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--gray); transition: all 0.2s; }
.faq-item.open .faq-icon { background: var(--red); border-color: var(--red); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { font-size: 14px; color: var(--gray); line-height: 1.8; padding-bottom: 22px; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ── FINAL CTA ── */
.final-cta { background: var(--dark); text-align: center; padding: 110px 40px; border-left: 5px solid var(--red); }
.final-cta .section-eyebrow { justify-content: center; }
.final-cta h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(44px, 7vw, 100px); letter-spacing: 0.02em; margin-bottom: 14px; }
.final-cta p { font-size: 16px; color: var(--gray); max-width: 520px; margin: 0 auto 44px; line-height: 1.7; }
.final-cta .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── SOCIAL ── */
.social-section { background: #050505; padding: 80px 80px; text-align: center; border-top: 1px solid #111; }
.social-links { display: flex; justify-content: center; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.social-card {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-decoration: none; color: var(--white);
  background: #0f0f0f; border: 1px solid #222;
  padding: 32px 40px; border-radius: 4px;
  transition: border-color 0.2s, transform 0.2s;
  min-width: 160px;
}
.social-card:hover { border-color: var(--red); transform: translateY(-4px); }
.social-card svg { width: 40px; height: 40px; fill: currentColor; }
.social-card span { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); }
.social-card .handle { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 0.06em; color: var(--white); }
.social-icons-footer { display: flex; gap: 16px; align-items: center; }
.social-icons-footer a { color: #444; transition: color 0.2s; }
.social-icons-footer a:hover { color: var(--white); }
.social-icons-footer svg { width: 20px; height: 20px; fill: currentColor; display: block; }

/* ── FOOTER ── */
footer { background: #050505; border-top: 4px solid var(--red); padding: 64px 80px 36px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 0.08em; color: var(--white); line-height: 1.1; margin-bottom: 10px; }
.footer-brand .r { color: var(--red); }
.footer-tagline { font-size: 13px; color: var(--gray); line-height: 1.6; max-width: 260px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: #555; text-decoration: none; margin-bottom: 10px; transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid #111; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: #444; }
.footer-hours { font-size: 12px; color: #444; }

/* ── GALLERY ── */
.gallery { background: var(--black); }
.gallery-box {
  border: 3px solid #006847;
  border-radius: 6px;
  padding: 12px;
  background: #0a0a0a;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
@media(max-width:900px){ .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
@media(max-width:600px){ .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.gallery-item img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-item::after {
  content: '⤢';
  position: absolute;
  inset: 0;
  background: rgba(196,30,58,0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--white);
  opacity: 0;
  transition: all 0.25s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:hover::after { background: rgba(196,30,58,0.45); opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.95);
  align-items: center; justify-content: center;
  cursor: pointer;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  border: 2px solid var(--red);
}
.lightbox-close {
  position: absolute; top: 20px; right: 28px;
  font-size: 36px; color: var(--white);
  cursor: pointer; line-height: 1;
  font-weight: 300; transition: color 0.15s;
}
.lightbox-close:hover { color: var(--red); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 48px; color: rgba(255,255,255,0.5);
  cursor: pointer; padding: 16px;
  transition: color 0.15s; user-select: none;
  font-weight: 300;
}
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--white); }
.lightbox-counter {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  font-size: 13px; color: rgba(255,255,255,0.4);
  font-weight: 600; letter-spacing: 0.1em;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr 520px; }
}
@media (max-width: 1024px) {
  section { padding: 80px 48px; }
  nav { padding: 0 24px; }
  .hero { padding: 60px 48px 48px; gap: 32px; }
  footer { padding: 60px 48px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  section { padding: 64px 24px; }
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--dark); padding: 24px; gap: 20px; border-bottom: 1px solid #1f1f1f; z-index: 99; }
  .nav-hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; padding: 40px 24px 48px; }
  .hero-belt { order: -1; }
  .hero-belt img { max-width: 320px; margin: 0 auto; }
  .hero-title { font-size: 72px; }
  .belt-cta { justify-content: flex-start; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid #1f1f1f; }
  .stat:nth-child(odd) { border-right: 1px solid #1f1f1f; }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  .diff-grid, .levels-grid, .pricing-grid, .reviews-grid, .private-grid { grid-template-columns: 1fr; }
  .rounds-grid { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .ratings-row { flex-wrap: wrap; background: none; gap: 8px; }
  .rating-badge { flex: none; width: calc(50% - 4px); }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  footer { padding: 48px 24px 28px; }
}
@media (max-width: 480px) {
  .rounds-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 56px; }
  .belt-img-wrap { max-width: 280px; }
  .belt-cta { flex-direction: column; align-items: center; }
}

/* ── GHOST POST / PAGE CONTENT (Koenig editor output) ── */
.gh-main { max-width: 720px; margin: 0 auto; padding: 64px 24px 96px; background: var(--black); color: var(--white); }
.gh-article-title { font-family: 'Bebas Neue', sans-serif; font-size: 48px; letter-spacing: 0.02em; color: var(--white); margin-bottom: 16px; }
.gh-article-excerpt { color: var(--gray-light); font-size: 18px; margin-bottom: 32px; }
.gh-feature-image { width: 100%; border-radius: 8px; margin-bottom: 40px; }
.gh-content { font-size: 18px; line-height: 1.7; color: var(--light); }
.gh-content p { margin-bottom: 1.5em; }
.gh-content h1, .gh-content h2, .gh-content h3 { font-family: 'Bebas Neue', sans-serif; color: var(--white); margin: 1.4em 0 0.6em; letter-spacing: 0.02em; }
.gh-content a { color: var(--red); text-decoration: underline; }
.gh-content img { max-width: 100%; border-radius: 8px; display: block; margin: 0 auto; }
.gh-content blockquote { border-left: 3px solid var(--gold); padding-left: 20px; color: var(--gray-light); font-style: italic; margin: 1.5em 0; }
.gh-content figcaption { text-align: center; font-size: 14px; color: var(--gray); margin-top: 8px; }

/* Required by Ghost 2.0+ for Koenig image-card sizing to render correctly */
.kg-width-wide { width: 100%; max-width: 1040px; margin-left: 50%; transform: translateX(-50%); }
.kg-width-full { width: 100vw; max-width: 100vw; margin-left: 50%; transform: translateX(-50%); }
.kg-width-full img { border-radius: 0; }
