/* ============================================================
   WFA — WARRIORS FIGHT ACADEMY
   Black & White Minimal BJJ Website
   ============================================================ */

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

:root {
  /* Monochrome Palette */
  --black: #000000;
  --off-black: #0a0a0a;
  --dark: #111111;
  --dark-gray: #1a1a1a;
  --mid-dark: #222222;
  --gray: #888888;
  --light-gray: #cccccc;
  --off-white: #f0f0f0;
  --white: #ffffff;

  /* Accent — subtle warm white */
  --accent: #ffffff;
  --accent-dim: rgba(255, 255, 255, 0.08);
  --accent-hover: rgba(255, 255, 255, 0.15);

  /* Schedule colors (muted) */
  --gi-color: #e0e0e0;
  --nogi-color: #a0a0a0;
  --kids-color: #c8c8c8;
  --open-color: #909090;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Bebas Neue', 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-width: 1200px;

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--off-white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--light-gray);
}

::selection {
  background: var(--white);
  color: var(--black);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}


/* ---------- NAVIGATION ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
  height: 44px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
  flex-wrap: nowrap;
}

.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 10px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.nav-active::after {
  transform: scaleX(1);
}

.nav-link.nav-active {
  color: var(--white);
}

.nav-cta {
  background: var(--white);
  color: var(--black) !important;
  border-radius: 4px;
  margin-left: 8px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--light-gray);
  color: var(--black) !important;
}

/* Language Toggle */
.nav-lang {
  margin-left: 16px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.lang-toggle:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.lang-option {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.lang-option.active {
  color: var(--white);
}

.lang-divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 11px;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.03) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  padding: 0 24px;
  z-index: 1;
  animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo {
  width: 160px;
  height: auto;
  margin: 0 auto 32px;
  filter: brightness(0) invert(1);
  animation: heroPulse 4s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 1; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 auto 24px;
}

.hero-tagline {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}


/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--white);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--light-gray);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}


/* ---------- SECTIONS ---------- */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section:nth-child(even) {
  background: var(--off-black);
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 16px;
}

.title-line {
  width: 50px;
  height: 2px;
  background: var(--white);
  margin: 0 auto;
}


/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(100%);
  transition: var(--transition-slow);
}

.about-image:hover img {
  filter: grayscale(60%);
}

.about-image-accent {
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: -1;
}

.about-content h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  color: var(--white);
}

.about-content p {
  color: var(--light-gray);
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--white);
}

.stat-label {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}


/* ---------- WHAT IS BJJ ---------- */
.bjj-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.bjj-content p {
  font-size: 15px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 20px;
}

.bjj-highlights {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  padding-left: 32px;
  margin-top: 8px;
}

.bjj-highlight-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bjj-highlight-item:last-child {
  border-bottom: none;
}

.bjj-highlight-year {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 6px;
}

.bjj-highlight-text {
  font-size: 14px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.6;
}


/* ---------- OUR HISTORY ---------- */
.history-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.history-text {
  font-size: 15px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 20px;
}

.history-text:last-child {
  margin-bottom: 0;
}

.history-timeline {
  position: relative;
  padding-left: 32px;
}

.history-timeline::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -38px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--off-black);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.timeline-content h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.7;
}


/* ---------- CLASSES ---------- */
.classes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.class-card {
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: var(--transition);
}

.class-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.class-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.class-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: var(--transition-slow);
}

.class-card:hover .class-image img {
  filter: grayscale(50%);
  transform: scale(1.05);
}

.class-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 16px;
}

.class-badge {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.class-info {
  padding: 28px;
}

.class-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 12px;
}

.class-info p {
  color: var(--gray);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 20px;
}

.class-details {
  display: flex;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.class-details span {
  font-size: 12px;
  color: var(--light-gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}


/* ---------- COACH ---------- */
.coach-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.coach-grid:last-child {
  margin-bottom: 0;
}

.coach-grid-reverse {
  grid-template-columns: 1fr 400px;
  direction: ltr;
}

.coach-grid-reverse .coach-image {
  order: 2;
}

.coach-grid-reverse .coach-content {
  order: 1;
}

.coach-image {
  position: relative;
}

.coach-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(100%);
  transition: var(--transition-slow);
}

.coach-image:hover img {
  filter: grayscale(50%);
}

.coach-image-frame {
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: -1;
}

.coach-role {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
}

.coach-content h3 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 24px;
}

.coach-content p {
  color: var(--light-gray);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 20px;
}

.coach-highlights {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight {
  display: flex;
  align-items: center;
  gap: 10px;
}

.highlight-icon {
  color: var(--white);
  font-size: 16px;
}

.highlight span {
  font-size: 13px;
  color: var(--light-gray);
  font-weight: 400;
  letter-spacing: 0.02em;
}


/* ---------- PAGE HERO (About Us) ---------- */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--off-black);
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: 0.12em;
  color: var(--white);
  line-height: 1;
  margin-top: 12px;
}


/* ---------- ABOUT STORY ---------- */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-story-image {
  position: relative;
}

.about-story-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.about-story-image:hover img {
  filter: grayscale(40%);
}

.about-story-content h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 20px;
}

.about-story-content p {
  font-size: 15px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 20px;
}


/* ---------- COACH DETAIL ---------- */
.coach-detail .coach-grid {
  gap: 60px;
}


/* ---------- FOUNDER ---------- */
.founder-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: center;
}

.founder-image {
  position: relative;
}

.founder-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.founder-image:hover img {
  filter: grayscale(40%);
}

.founder-content h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
}

.founder-content p {
  font-size: 15px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 16px;
}


/* ---------- CTA SECTION ---------- */
.cta-section {
  background: var(--dark);
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 16px;
  color: var(--gray);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 32px;
}


/* ---------- FEATURED IN ---------- */
.featured-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.featured-intro {
  font-size: 15px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 48px;
}

/* Featured article cards with images */
.featured-articles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.featured-article {
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: var(--transition);
  text-align: left;
}

.featured-article:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-6px);
}

.featured-article-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.featured-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(60%);
  transition: all 0.5s ease;
}

.featured-article:hover .featured-article-image img {
  filter: grayscale(20%);
  transform: scale(1.05);
}

.featured-article-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.featured-article:hover .featured-article-overlay {
  opacity: 1;
}

.featured-read-more {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--white);
  padding: 10px 24px;
  border: 1px solid var(--white);
  transition: var(--transition);
}

.featured-article:hover .featured-read-more {
  background: var(--white);
  color: var(--black);
}

.featured-article-body {
  padding: 28px;
}

.featured-article-source {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-bottom: 8px;
}

.featured-article-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.featured-article-excerpt {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.7;
}

/* Old card styles (kept for backward compat) */
.featured-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.featured-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px 28px;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
  text-align: left;
}

.featured-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  background: var(--mid-dark);
}

.featured-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  color: var(--white);
}

.featured-info {
  flex: 1;
}

.featured-info h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 4px;
}

.featured-info p {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 0;
}

.featured-arrow {
  font-size: 20px;
  color: var(--gray);
  transition: var(--transition);
}

.featured-card:hover .featured-arrow {
  color: var(--white);
  transform: translateX(4px);
}


/* ---------- SCHEDULE ---------- */
.schedule-wrapper {
  overflow: hidden;
}

.schedule-table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 32px;
}

.schedule-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

.schedule-table th {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--white);
  padding: 20px 16px;
  text-align: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  font-weight: 400;
}

.schedule-table td {
  padding: 20px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: middle;
}

.time-cell {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
  text-align: left !important;
  letter-spacing: 0.02em;
}

.schedule-table tbody tr {
  transition: var(--transition);
}

.schedule-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.schedule-season {
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 40px;
}

.schedule-gi,
.schedule-nogi,
.schedule-kids,
.schedule-open,
.schedule-striking,
.schedule-mma,
.schedule-comp {
  display: inline-block;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid;
  transition: var(--transition);
  white-space: nowrap;
}

.schedule-gi {
  color: var(--gi-color);
  border-color: rgba(224, 224, 224, 0.3);
  background: rgba(224, 224, 224, 0.05);
}

.schedule-nogi {
  color: var(--nogi-color);
  border-color: rgba(160, 160, 160, 0.3);
  background: rgba(160, 160, 160, 0.05);
}

.schedule-kids {
  color: var(--kids-color);
  border-color: rgba(200, 200, 200, 0.3);
  background: rgba(200, 200, 200, 0.05);
}

.schedule-open {
  color: var(--open-color);
  border-color: rgba(144, 144, 144, 0.3);
  background: rgba(144, 144, 144, 0.05);
}

.schedule-striking {
  color: #d4d4d4;
  border-color: rgba(212, 212, 212, 0.3);
  background: rgba(212, 212, 212, 0.05);
}

.schedule-mma {
  color: #b0b0b0;
  border-color: rgba(176, 176, 176, 0.3);
  background: rgba(176, 176, 176, 0.05);
}

.schedule-comp {
  color: #e8e8e8;
  border-color: rgba(232, 232, 232, 0.35);
  background: rgba(232, 232, 232, 0.07);
}

.schedule-empty {
  color: rgba(255, 255, 255, 0.15);
}

.schedule-legend {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border: 1px solid;
}

.legend-gi {
  border-color: var(--gi-color);
  background: rgba(224, 224, 224, 0.15);
}

.legend-nogi {
  border-color: var(--nogi-color);
  background: rgba(160, 160, 160, 0.15);
}

.legend-kids {
  border-color: var(--kids-color);
  background: rgba(200, 200, 200, 0.15);
}

.legend-open {
  border-color: var(--open-color);
  background: rgba(144, 144, 144, 0.15);
}

.legend-striking {
  border-color: #d4d4d4;
  background: rgba(212, 212, 212, 0.15);
}

.legend-mma {
  border-color: #b0b0b0;
  background: rgba(176, 176, 176, 0.15);
}

.legend-comp {
  border-color: #e8e8e8;
  background: rgba(232, 232, 232, 0.2);
}


/* ---------- PRICING ---------- */
.pricing-note {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 48px;
  padding: 8px 24px;
  background: rgba(255, 255, 255, 0.05);
  display: inline-block;
  margin-left: 50%;
  transform: translateX(-50%);
}

.pricing-category {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--white);
  text-align: center;
  margin: 60px 0 32px;
}

.pricing-category:first-of-type {
  margin-top: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 40px;
}

.pricing-grid-kids {
  grid-template-columns: repeat(2, 1fr);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.pricing-card {
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.pricing-featured {
  border-color: rgba(255, 255, 255, 0.25);
  background: var(--mid-dark);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--black);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 20px;
}

.pricing-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 4px;
}

.pricing-desc {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 24px;
}

.pricing-amount {
  margin-bottom: 32px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
}

.price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.02em;
}

.currency {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gray);
  margin-top: 12px;
  letter-spacing: 0.05em;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--light-gray);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 300;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li del {
  color: var(--gray);
  font-size: 12px;
}


/* ---------- GALLERY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item-lg {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: var(--transition-slow);
}

.gallery-item:hover img {
  filter: grayscale(30%);
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}


/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  filter: grayscale(50%);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 32px;
  padding: 16px;
  transition: var(--transition);
  z-index: 2001;
}

.lightbox-close {
  top: 20px;
  right: 20px;
  font-size: 40px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--light-gray);
}

.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}


/* ---------- PRICING ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.pricing-featured {
  border-color: rgba(255, 255, 255, 0.25);
  background: var(--mid-dark);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--black);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 20px;
}

.pricing-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 4px;
}

.pricing-desc {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 24px;
}

.pricing-amount {
  margin-bottom: 32px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
}

.currency {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gray);
  margin-top: 8px;
}

.price {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.02em;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--light-gray);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 300;
}

.pricing-features li:last-child {
  border-bottom: none;
}


/* ---------- FAQ ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.faq-question:hover {
  color: var(--light-gray);
}

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--gray);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  color: var(--gray);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
}


/* ---------- CONTACT ---------- */
.contact-grid {
  display: flex;
  justify-content: center;
}

.contact-info {
  max-width: 600px;
  text-align: center;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--gray);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
  align-items: center;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  color: var(--white);
}

.contact-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 14px;
  color: var(--gray);
  font-weight: 300;
}

.social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--gray);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.contact-form select {
  color: var(--gray);
}

.contact-form select option {
  background: var(--dark);
  color: var(--white);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}


/* ---------- FOOTER ---------- */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 64px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
  height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--gray);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: var(--gray);
  padding: 6px 0;
  font-weight: 300;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}


/* ---------- ANIMATIONS ---------- */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}


/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .coach-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .coach-grid-reverse {
    grid-template-columns: 1fr;
  }

  .coach-grid-reverse .coach-image,
  .coach-grid-reverse .coach-content {
    order: unset;
  }

  .coach-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }

  /* BJJ & History */
  .bjj-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .history-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* About page */
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .founder-image {
    max-width: 400px;
  }

  /* Featured */
  .featured-articles {
    grid-template-columns: 1fr;
  }

  .featured-links {
    grid-template-columns: 1fr;
  }

  /* Mobile Nav */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    justify-content: center;
    gap: 4px;
    transform: translateX(100%);
    transition: var(--transition);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 16px;
    padding: 16px 24px;
    color: rgba(255, 255, 255, 0.8);
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    margin: 16px 24px 0;
    text-align: center;
  }

  .nav-lang {
    margin: 16px 24px 0;
  }

  .lang-toggle {
    width: 100%;
    justify-content: center;
  }

  /* Classes */
  .classes-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item-lg {
    grid-column: span 2;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Coach Highlights */
  .coach-highlights {
    flex-direction: column;
    gap: 16px;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid-kids {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  /* About Stats */
  .about-stats {
    gap: 24px;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Hero */
  .hero-logo {
    width: 120px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-scroll {
    display: none;
  }

  /* Lightbox Nav */
  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 60px;
    transform: none;
  }

  .lightbox-prev {
    left: 40px;
  }

  .lightbox-next {
    right: 40px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 64px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }

  .gallery-item-lg {
    grid-column: span 2;
  }

  .about-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  .schedule-legend {
    gap: 16px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
