/* GMA Jiu-Jitsu - main stylesheet
   Ported from Zach's WordPress build (WPCode snippet 'BJJ - Global Header CSS' id 17)
   + the 6 inline section <style> blocks from the homepage.
   WordPress block-theme overrides removed (5 rules) - not needed in a static build. */

/* ===== GLOBAL ===== */
/* ===== GMA MASTER PALETTE ===== */
:root {
  --gma-red: #C41E2A;
  --gma-red-light: #E53E3E;
  --gma-red-dark: #9B1B1B;
  --gma-blue: #2B4B9E;
  --gma-blue-light: #3A5CB5;
  --gma-blue-dark: #1E3578;
  --gma-black: #0A0A0A;
  --gma-white: #FFFFFF;
  --gma-off-white: #F5F5F5;
  --gma-gray-100: #E5E5E5;
  --gma-gray-300: #A3A3A3;
  --gma-gray-500: #6B6B6B;
  --gma-gray-700: #333333;
  --gma-gray-900: #1A1A1A;
}
:root {
  --bg: var(--gma-white);
  --bg-surface: var(--gma-off-white);
  --bg-card: var(--gma-white);
  --border: var(--gma-gray-100);
  --text-primary: var(--gma-black);
  --text-body: var(--gma-gray-500);
  --text-muted: var(--gma-gray-300);
  --accent-primary: var(--gma-red);
  --accent-primary-hover: var(--gma-red-light);
  --accent-secondary: var(--gma-black);
  --accent-secondary-hover: var(--gma-gray-700);
  --btn-primary-bg: var(--gma-red);
  --btn-primary-text: var(--gma-white);
  --btn-secondary-bg: transparent;
  --btn-secondary-border: var(--gma-black);
  --btn-secondary-text: var(--gma-black);
  --link: var(--gma-red);
  --link-hover: var(--gma-red-dark);
}


body { margin: 0; padding: 0; background: var(--bg); }



*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif; background: var(--bg); color: var(--text-body); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; }
h1, h2, h3, h4, h5, h6 { font-family: 'Teko', 'Arial Narrow', sans-serif; font-weight: 700; text-transform: uppercase; line-height: 1.0; letter-spacing: -0.02em; color: var(--text-primary); -webkit-font-smoothing: antialiased; }
h1 { font-size: clamp(44px, 5.5vw, 68px); }
h2 { font-size: clamp(32px, 4vw, 56px); }
h3 { font-size: clamp(24px, 3vw, 38px); }
h4 { font-size: clamp(18px, 2vw, 28px); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease-out, transform 0.65s ease-out; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.gma-global-nav { background: var(--gma-black); border-bottom: 1px solid #222; padding: 7px 0; font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; position: relative; z-index: 100; }
.gma-global-nav__inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.gma-global-nav__label { color: var(--gma-gray-500); margin-right: 8px; font-size: 11px; }
.gma-global-nav__link { color: var(--gma-gray-300); text-decoration: none; transition: color 0.2s ease; padding: 2px 8px; border-radius: 3px; font-size: 12px; }
.gma-global-nav__link:hover { color: var(--gma-white); }
.gma-global-nav__link--active { color: var(--gma-white); background: rgba(196,30,42,0.2); }
.site-nav { position: sticky; top: 0; z-index: 99; background: rgba(255,255,255,0.97); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(0,0,0,0.08); padding: 0 32px; }
.site-nav__inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.site-nav__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.site-nav__logo-img { width: 48px; height: 48px; border-radius: 50%; object-fit: contain; display: block; flex-shrink: 0; }
.site-nav__logo-text { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700; color: var(--gma-black); letter-spacing: -0.02em; line-height: 1.1; }
.site-nav__logo-sub { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 400; color: var(--gma-gray-500); letter-spacing: 0.04em; text-transform: uppercase; display: block; }
.site-nav__links { display: flex; align-items: center; gap: 2px; list-style: none; }
.site-nav__links a { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; letter-spacing: -0.01em; text-transform: none; color: var(--gma-gray-700); padding: 6px 14px; border-radius: 6px; transition: color 0.2s, background 0.2s; white-space: nowrap; }
.site-nav__links a:hover { color: var(--gma-black); background: var(--gma-off-white); }
.site-nav__cta { font-family: 'Inter', sans-serif !important; font-size: 13px !important; font-weight: 600 !important; letter-spacing: 0.01em !important; text-transform: none !important; background: var(--gma-red) !important; color: var(--gma-white) !important; padding: 9px 22px !important; border-radius: 50px !important; box-shadow: 0 2px 10px rgba(196,30,42,0.3) !important; }
.site-nav__cta:hover { background: var(--gma-red-light) !important; transform: translateY(-1px) !important; }
.site-nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.site-nav__hamburger span { width: 24px; height: 2px; background: var(--gma-black); border-radius: 2px; display: block; }
.btn-primary { background: var(--btn-primary-bg); color: var(--btn-primary-text); font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px; padding: 13px 28px; border-radius: 50px; border: none; cursor: pointer; transition: all 0.25s ease; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.btn-secondary { background: var(--btn-secondary-bg); color: var(--btn-secondary-text); font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px; padding: 11px 26px; border-radius: 50px; border: 2px solid var(--btn-secondary-border); cursor: pointer; transition: all 0.25s ease; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
@media (max-width: 768px) { .site-nav__links { display: none; } .site-nav__hamburger { display: flex; } }

/* ===== SECTIONS (from homepage inline styles) ===== */
.bjj-hero-wrap { background: #ffffff; position: relative; }

.bjj-hero {
  position: relative;
  height: 100vh; min-height: 600px; max-height: 900px;
  overflow: hidden; display: flex; flex-direction: column;
}
.bjj-hero__video-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.bjj-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to left,
    rgba(255,255,255,0.92) 0%,
    rgba(255,255,255,0.85) 35%,
    rgba(255,255,255,0.45) 60%,
    rgba(255,255,255,0.0) 80%
  );
  z-index: 1;
}
.bjj-hero__bottom-fade {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, #ffffff);
  z-index: 2; pointer-events: none;
}
.bjj-hero__inner {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: center;
  justify-content: flex-end;
  padding: 0 60px;
}
.bjj-hero__content {
  display: flex; flex-direction: column; gap: 20px;
  max-width: 560px; width: 100%;
}

.bjj-hero__eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(0,0,0,0.6);
}
.bjj-hero__eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #C41E2A; flex-shrink: 0;
  box-shadow: 0 0 8px rgba(196,30,42,0.9);
}

/* Exact match to Kurt's .gma-hero__headline */
.bjj-hero__headline {
  font-family: 'Teko', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #0A0A0A; margin: 0;
  margin-bottom: 8px;
}
.bjj-hero__headline em {
  font-style: normal;
  color: #C41E2A;
}

.bjj-hero__body {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 400; line-height: 1.65;
  color: rgba(0,0,0,0.65); margin: 0;
  max-width: 420px;
}

.bjj-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* The two hero CTAs are mirror images of each other and swap on hover:
   primary starts red-on-white-copy, secondary starts the inverse. */
.bjj-hero__btn-primary {
  display: inline-flex; align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 600;
  color: #fff; background: #C41E2A;
  border: 1.5px solid #C41E2A;
  padding: 12px 28px; border-radius: 6px;
  text-decoration: none; transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(196,30,42,0.5);
}
.bjj-hero__btn-primary:hover {
  background: #fff; color: #C41E2A; border-color: #C41E2A;
  transform: translateY(-2px); box-shadow: 0 6px 22px rgba(196,30,42,0.28);
}
.bjj-hero__btn-secondary {
  display: inline-flex; align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 600;
  color: #C41E2A; background: #fff;
  border: 1.5px solid #C41E2A;
  padding: 12px 28px; border-radius: 6px;
  text-decoration: none; transition: all 0.25s ease;
}
.bjj-hero__btn-secondary:hover {
  background: #C41E2A; color: #fff; border-color: #C41E2A;
  transform: translateY(-2px); box-shadow: 0 6px 22px rgba(196,30,42,0.28);
}

/* MARQUEE */
.bjj-marquee {
  width: 100%; overflow: hidden; padding: 16px 0; background: transparent;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.bjj-marquee__track { display: flex; width: max-content; animation: bjj-marquee-scroll 32s linear infinite; }
.bjj-marquee__track:hover { animation-play-state: paused; }
.bjj-marquee__set { display: flex; align-items: center; white-space: nowrap; }
.bjj-marquee__item { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(0,0,0,0.55); padding: 0 28px; }
.bjj-marquee__item em { font-style: normal; color: #C41E2A; }
.bjj-marquee__dot { color: rgba(196,30,42,0.4); font-size: 4px; flex-shrink: 0; }

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

@media (max-width: 768px) {
  .bjj-hero { height: 100svh; max-height: none; }
  .bjj-hero__inner { justify-content: flex-start; padding: 0 24px; }
  .bjj-hero__overlay { background: rgba(255,255,255,0.75); }
  .bjj-hero__headline { font-size: clamp(32px, 8vw, 48px); }
  .bjj-hero__btn-primary, .bjj-hero__btn-secondary { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .site-nav__links { display: none; }
  .site-nav__hamburger { display: flex; }
}

.bjj-programs {
  position: relative;
  padding: 80px 0 90px;
  overflow: hidden;
  background-color: #ffffff;
}

.bjj-programs__header,
.bjj-programs__grid { position: relative; z-index: 2; }

.bjj-programs__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 0 48px;
}
.bjj-programs__eyebrow {
  display: inline-block;
  font-family: 'Teko', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(0,0,0,0.50);
  margin-bottom: 10px;
}
.bjj-programs__title {
  font-family: 'Teko', sans-serif;
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 700; color: #0A0A0A;
  text-transform: uppercase; line-height: 0.95; margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.bjj-programs__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px; line-height: 1.7;
  color: rgba(0,0,0,0.65);
  max-width: 560px; margin: 0 auto;
}

.bjj-programs__grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Card */
.bjj-prog-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
}
.bjj-prog-card:hover {
  background: #ffffff;
  border-color: #C41E2A;
  transform: translateY(-5px);
  box-shadow:
    0 0 0 1px rgba(196,30,42,0.4),
    0 6px 20px rgba(196,30,42,0.3),
    0 12px 50px rgba(196,30,42,0.25),
    0 20px 80px rgba(196,30,42,0.15);
}
.bjj-prog-card--featured { background: rgba(255,252,252,0.98); }
.bjj-prog-card--featured:hover { background: #ffffff; border-color: #C41E2A; }

.bjj-prog-card__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  flex-shrink: 0;
}
.bjj-prog-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.bjj-prog-card__photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #e8e8e8 0%, #d4d4d4 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  border-bottom: 2px dashed #C41E2A;
}
.bjj-prog-card__photo-placeholder svg {
  width: 40px; height: 40px; fill: #bbb;
}
.bjj-prog-card__photo-placeholder span {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #bbb;
}

.bjj-prog-card__top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px 0;
}
.bjj-prog-card__icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(196,30,42,0.10);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.25s ease;
}
.bjj-prog-card__icon svg { width: 16px; height: 16px; fill: #C41E2A; }
.bjj-prog-card:hover .bjj-prog-card__icon { background: rgba(196,30,42,0.16); }
.bjj-prog-card__num { font-family: 'Teko', sans-serif; font-size: 12px; font-weight: 700; color: #CCC; letter-spacing: 0.1em; }

.bjj-prog-card__body { padding: 10px 18px 12px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.bjj-prog-card__tag { font-family: 'Inter', sans-serif; font-size: 9px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #C41E2A; }
.bjj-prog-card__title { font-family: 'Teko', sans-serif; font-size: 22px; font-weight: 700; color: #0A0A0A; text-transform: uppercase; line-height: 1; letter-spacing: 0.01em; }
.bjj-prog-card__desc { font-family: 'Inter', sans-serif; font-size: 11px; line-height: 1.55; color: #6B6B6B; }

.bjj-prog-card__footer { padding: 0 18px 16px; }
.bjj-prog-card__cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Teko', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff; background: #C41E2A;
  padding: 7px 14px; border-radius: 50px;
  text-decoration: none; white-space: nowrap;
  transition: background 0.25s ease;
  box-shadow: 0 2px 8px rgba(196,30,42,0.3);
}
.bjj-prog-card__cta svg { width: 11px; height: 11px; transition: transform 0.2s ease; }
.bjj-prog-card__cta:hover { background: #E53E3E; }
.bjj-prog-card__cta:hover svg { transform: translateX(2px); }

@media (max-width: 1024px) {
  .bjj-programs__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .bjj-programs__grid { grid-template-columns: 1fr; padding: 0 24px; gap: 12px; }
  .bjj-programs__header { padding: 0 24px; margin-bottom: 40px; }
  .bjj-programs { padding: 60px 0 80px; }
}

.bjj-instructors {
  background: #ffffff;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.bjj-instructors__glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* Strong centered glow — sits right behind the title, offset to work with bridge */
.bjj-instructors__glow--1 {
  width: 1000px; height: 600px;
  top: 100px; left: 50%;  /* moved down to work with bridge */
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(196,30,42,0.25) 0%,
    rgba(196,30,42,0.12) 35%,
    rgba(196,30,42,0.04) 60%,
    transparent 75%
  );
}
/* Subtle bottom-right accent */
.bjj-instructors__glow--2 {
  width: 400px; height: 400px;
  bottom: -80px; right: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,30,42,0.08) 0%, transparent 65%);
}

.bjj-instructors__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

.bjj-instructors__header { text-align: center; margin-bottom: 48px; }
.bjj-instructors__eyebrow {
  display: inline-block;
  font-family: 'Teko', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #C41E2A; margin-bottom: 10px;
}
.bjj-instructors__title {
  font-family: 'Teko', sans-serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 700; color: #0A0A0A;
  text-transform: uppercase; line-height: 1.0;
  letter-spacing: -0.01em; margin-bottom: 14px;
}
/* "Instructors" — black, not red */
.bjj-instructors__title em { font-style: normal; color: #0A0A0A; }
.bjj-instructors__subtitle {
  font-family: 'Inter', sans-serif; font-size: 15px; line-height: 1.65;
  color: #6B6B6B; max-width: 500px; margin: 0 auto;
}

.bjj-instructors__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.bjj-instructor-card {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
}
.bjj-instructor-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 60px rgba(196,30,42,0.45),
    0 0 80px rgba(196,30,42,0.25),
    0 0 0 1px rgba(196,30,42,0.3);
}

.bjj-instructor-card__img-wrap {
  position: relative;
  width: 100%; height: 320px;
  background: #1a1a1a; overflow: hidden;
  flex-shrink: 0;
}
.bjj-instructor-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block; }

.bjj-instructor-card__img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #2a2a2a 0%, #1a1a1a 100%);
}
.bjj-instructor-card__img-placeholder svg { width: 72px; height: 72px; fill: #444; }

/* overlay removed — text now lives in a block below the photo */

.bjj-instructor-card__rank-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: #C41E2A; color: #ffffff;
  font-family: 'Teko', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 4px;
}

.bjj-instructor-card__content {
  position: relative;
  padding: 22px 24px 24px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
  background: linear-gradient(to bottom, #1c1c1c 0%, #0a0a0a 100%);
}
.bjj-instructor-card--featured .bjj-instructor-card__content {
  background: linear-gradient(to bottom, #2a0b0e 0%, #0a0a0a 100%);
}
.bjj-instructor-card__level {
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: #FF6B7A;
}
.bjj-instructor-card__name {
  font-family: 'Teko', sans-serif;
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 700; color: #ffffff;
  text-transform: uppercase; line-height: 0.95; letter-spacing: -0.01em;
}
.bjj-instructor-card__creds { display: flex; flex-wrap: wrap; gap: 5px; }
.bjj-instructor-card__creds span {
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 500;
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 2px 9px; border-radius: 20px;
  backdrop-filter: blur(4px);
}
.bjj-instructor-card__bio {
  font-family: 'Inter', sans-serif; font-size: 12px; line-height: 1.6;
  color: rgba(255,255,255,0.65);
}
.bjj-instructor-card__cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Teko', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #ffffff; background: #C41E2A;
  padding: 9px 20px; border-radius: 50px;
  text-decoration: none; align-self: flex-start;
  transition: background 0.25s ease, transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(196,30,42,0.5); margin-top: 2px;
}
.bjj-instructor-card__cta:hover { background: #E53E3E; transform: translateY(-1px); }

@media (max-width: 768px) {
  .bjj-instructors__inner { padding: 0 24px; }
  .bjj-instructors { padding: 64px 0 72px; }
  .bjj-instructors__glow--1 { top: 80px; }
  .bjj-instructors__grid { grid-template-columns: 1fr; }
  .bjj-instructor-card__img-wrap { height: 380px; }
}

/* ===== TESTIMONIALS ===== */
.bjj-testimonials {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
}
.bjj-testimonials::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C41E2A 0%, #9B1B1B 60%, transparent 100%);
}

.bjj-testimonials__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Header */
.bjj-testimonials__header {
  text-align: center;
  margin-bottom: 56px;
}
.bjj-testimonials__eyebrow {
  display: inline-block;
  font-family: 'Teko', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C41E2A;
  margin-bottom: 12px;
}
.bjj-testimonials__title {
  font-family: 'Teko', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: #0A0A0A;
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.bjj-testimonials__title span { color: #C41E2A; }
.bjj-testimonials__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #6B6B6B;
  max-width: 520px;
  margin: 0 auto 20px;
}
.bjj-testimonials__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.bjj-testimonials__stars { display: flex; gap: 3px; }
.bjj-testimonials__stars svg { width: 20px; height: 20px; fill: #F59E0B; }
.bjj-testimonials__rating-score {
  font-family: 'Teko', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0A0A0A;
  line-height: 1;
}
.bjj-testimonials__rating-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #A3A3A3;
}

/* Carousel */
.bjj-testimonials__carousel-wrap {
  overflow: hidden;
  margin-bottom: 32px;
}
.bjj-testimonials__track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s ease;
  will-change: transform;
}

/* Card — white with light border */
.bjj-testimonial-card {
  background: #F8F8F8;
  border: 1px solid #E5E5E5;
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.bjj-testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(196,30,42,0.10);
}

/* Red top bar */
.bjj-testimonial-card__bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #C41E2A;
}

/* Quote mark */
.bjj-testimonial-card__icon {
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1;
  color: #C41E2A;
  opacity: 0.5;
  margin-bottom: -8px;
}

/* Stars per card */
.bjj-testimonial-card__stars { display: flex; gap: 3px; }
.bjj-testimonial-card__stars svg { width: 16px; height: 16px; fill: #F59E0B; }

/* Quote text */
.bjj-testimonial-card__quote {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #444444;
  flex: 1;
}

/* Author */
.bjj-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #E5E5E5;
}
.bjj-testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #C41E2A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Teko', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.bjj-testimonial-card__name {
  font-family: 'Teko', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0A0A0A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.bjj-testimonial-card__role {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #A3A3A3;
}

/* Controls */
.bjj-testimonials__controls {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.bjj-testimonials__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #E5E5E5;
  background: #F5F5F5;
  color: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.bjj-testimonials__btn svg { width: 18px; height: 18px; }
.bjj-testimonials__btn:hover {
  background: #C41E2A;
  border-color: #C41E2A;
  color: #ffffff;
}

@media (max-width: 900px) {
  .bjj-testimonials__inner { padding: 0 24px; }
  .bjj-testimonials { padding: 72px 0; }
  .bjj-testimonial-card { flex: 0 0 100%; }
}

/* ===== CTA — LIGHT THEME ===== */
.bjj-cta {
  background: #F5F5F5;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle red shape accent — light version */
.bjj-cta__bg-shape {
  position: absolute; top: 0; right: 0;
  width: 45%; height: 100%;
  background: var(--gma-red);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.04;
  pointer-events: none;
}

.bjj-cta__inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

/* Eyebrow */
.bjj-cta__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Teko', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #C41E2A; margin-bottom: 16px;
}
.bjj-cta__eyebrow::before { content: ''; width: 28px; height: 2px; background: #C41E2A; display: inline-block; }

/* Title — dark on light */
.bjj-cta__title {
  font-family: 'Teko', sans-serif;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 700;
  color: #0A0A0A;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.bjj-cta__title em { font-style: normal; color: #C41E2A; }

.bjj-cta__body {
  font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.65;
  color: #6B6B6B; margin-bottom: 40px; max-width: 440px;
}

.bjj-cta__buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.bjj-cta__btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Teko', sans-serif; font-size: 16px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 8px;
  text-decoration: none; transition: all 0.3s ease;
}
.bjj-cta__btn svg { width: 18px; height: 18px; fill: currentColor; }

/* Primary — red */
.bjj-cta__btn--primary { background: #C41E2A; color: #ffffff; }
.bjj-cta__btn--primary:hover { background: #E53E3E; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,30,42,0.35); }

/* Secondary — dark outline on light bg */
.bjj-cta__btn--secondary { background: transparent; color: #0A0A0A; border: 2px solid #0A0A0A; }
.bjj-cta__btn--secondary:hover { background: #0A0A0A; color: #ffffff; transform: translateY(-2px); }

.bjj-cta__contact {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-family: 'Inter', sans-serif; font-size: 13px; color: #A3A3A3;
}
.bjj-cta__contact a { color: #6B6B6B; text-decoration: none; transition: color 0.2s; }
.bjj-cta__contact a:hover { color: #C41E2A; }

/* Steps */
.bjj-cta__steps { display: flex; flex-direction: column; gap: 32px; }
.bjj-cta__step { display: flex; gap: 20px; align-items: flex-start; }

.bjj-cta__step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(196,30,42,0.10);
  border: 1px solid rgba(196,30,42,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Teko', sans-serif; font-size: 22px; font-weight: 700;
  color: #C41E2A; flex-shrink: 0;
}

.bjj-cta__step-title {
  font-family: 'Teko', sans-serif; font-size: 20px; font-weight: 600;
  color: #0A0A0A; text-transform: uppercase;
  letter-spacing: 0.04em; line-height: 1; margin-bottom: 6px;
}
.bjj-cta__step-body {
  font-family: 'Inter', sans-serif; font-size: 14px; line-height: 1.6; color: #6B6B6B;
}

/* Location card — light version */
.bjj-cta__location {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 20px 24px;
  background: #ffffff;
  border: 1px solid #E5E5E5;
  border-radius: 12px; margin-top: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.bjj-cta__location svg { width: 20px; height: 20px; fill: #C41E2A; flex-shrink: 0; margin-top: 2px; }
.bjj-cta__location-name {
  font-family: 'Teko', sans-serif; font-size: 16px; font-weight: 600;
  color: #0A0A0A; text-transform: uppercase;
  letter-spacing: 0.04em; line-height: 1.2; margin-bottom: 4px;
}
.bjj-cta__location-address { font-family: 'Inter', sans-serif; font-size: 13px; color: #6B6B6B; }

@media (max-width: 900px) {
  .bjj-cta__inner { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
  .bjj-cta { padding: 72px 0; }
  .bjj-cta__bg-shape { width: 100%; clip-path: none; }
}
@media (max-width: 480px) {
  .bjj-cta__buttons { flex-direction: column; }
  .bjj-cta__btn { justify-content: center; }
}

/* ===== FOOTER ===== */
.bjj-footer {
  background: var(--gma-black);
  border-top: 3px solid var(--gma-red);
}

/* Main footer */
.bjj-footer__main {
  padding: 72px 0 56px;
}
.bjj-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

/* Brand */
.bjj-footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  text-decoration: none;
}
.bjj-footer__logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gma-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Teko', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gma-white);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.bjj-footer__logo-name {
  font-family: 'Teko', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gma-white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}
.bjj-footer__logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: var(--gma-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.bjj-footer__tagline {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: var(--gma-gray-500);
  margin-bottom: 20px;
  max-width: 280px;
}
.bjj-footer__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.bjj-footer__badge {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--gma-gray-300);
  background: rgba(255,255,255,0.05);
  border: 1px solid #222;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* Columns */
.bjj-footer__col-title {
  font-family: 'Teko', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gma-white);
  margin-bottom: 20px;
}
.bjj-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bjj-footer__links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--gma-gray-500);
  text-decoration: none;
  transition: color 0.2s ease;
}
.bjj-footer__links a:hover { color: var(--gma-white); }

/* Contact list */
.bjj-footer__contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.bjj-footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--gma-gray-500);
  line-height: 1.5;
}
.bjj-footer__contact-list svg {
  width: 16px;
  height: 16px;
  fill: var(--gma-red);
  flex-shrink: 0;
  margin-top: 1px;
}
.bjj-footer__contact-list a {
  color: var(--gma-gray-500);
  text-decoration: none;
  transition: color 0.2s;
}
.bjj-footer__contact-list a:hover { color: var(--gma-white); }

.bjj-footer__cta {
  display: inline-block;
  font-family: 'Teko', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gma-white);
  background: var(--gma-red);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.bjj-footer__cta:hover { background: var(--gma-red-light); }

/* GMA Family bar */
.bjj-footer__family {
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 12px 0;
}
.bjj-footer__family-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.bjj-footer__family-label {
  font-family: 'Teko', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gma-gray-500);
  margin-right: 8px;
}
.bjj-footer__family-link {
  font-family: 'Teko', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gma-gray-500);
  text-decoration: none;
  padding: 3px 10px;
  border-radius: 3px;
  transition: color 0.2s ease;
}
.bjj-footer__family-link:hover { color: var(--gma-white); }
.bjj-footer__family-link--active {
  color: var(--gma-white);
  background: rgba(196,30,42,0.2);
}

/* Bottom bar */
.bjj-footer__bottom {
  padding: 20px 0;
}
.bjj-footer__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.bjj-footer__copy {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--gma-gray-700);
}
.bjj-footer__legal {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--gma-gray-700);
}
.bjj-footer__legal a {
  color: var(--gma-gray-700);
  text-decoration: none;
  transition: color 0.2s;
}
.bjj-footer__legal a:hover { color: var(--gma-gray-300); }

/* Responsive */
@media (max-width: 1024px) {
  .bjj-footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .bjj-footer__inner { grid-template-columns: 1fr; padding: 0 24px; }
  .bjj-footer__family-inner { padding: 0 24px; }
  .bjj-footer__bottom-inner { padding: 0 24px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .bjj-footer__main { padding: 48px 0 40px; }
}
