/* ============================================
   SOFMA - School of Freestyle Martial Arts
   Dark Martial Arts Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@400;600;700&display=swap');

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-grey: #1a1a1a;
  --mid-grey: #2a2a2a;
  --light-grey: #888;
  --white: #f5f5f5;
  --red: #c0392b;
  --red-bright: #e74c3c;
  --red-dark: #96281b;
  --blue: #1a3a6b;
  --blue-bright: #2e6bc6;
  --gold: #d4a841;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --max-width: 1280px;
  --header-height: 80px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red-bright); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold); }
ul { list-style: none; }

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192,57,43,0.3);
  height: var(--header-height);
  transition: background 0.3s;
}
.site-header.scrolled { background: rgba(10,10,10,0.98); }

.nav-container {
  max-width: var(--max-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;
  gap: 12px;
}
.nav-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
}
.nav-logo .logo-text span { color: var(--red-bright); }

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  padding: 8px 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px; right: 16px;
  height: 2px;
  background: var(--red-bright);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--red-bright); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--red-bright); }

.nav-cta {
  font-family: var(--font-condensed) !important;
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 4px;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  transition: background 0.3s, transform 0.3s !important;
}
.nav-cta:hover { background: var(--red-bright) !important; transform: translateY(-2px); }
.nav-cta::after { display: none !important; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3) contrast(1.1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(192,57,43,0.15) 50%, rgba(10,10,10,0.9) 100%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192,57,43,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,57,43,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--red-bright);
  border: 1px solid var(--red);
  padding: 8px 20px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease both;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.15s both;
}
.hero h1 .highlight { color: var(--red-bright); }
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 550px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.45s both;
}

/* Buttons */
.btn {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 36px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
}
.btn-primary:hover { background: var(--red-bright); color: var(--white); transform: translateY(-3px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--red-bright); color: var(--red-bright); }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 1s ease 0.8s both;
}
.hero-scroll span {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--red-bright), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 100px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-dark { background: var(--dark); }
.section-darker { background: var(--black); }
.section-red { background: var(--red-dark); }
.section-full { max-width: 100%; padding-left: 0; padding-right: 0; }

.section-header {
  margin-bottom: 60px;
  max-width: 700px;
}
.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-tag {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--red-bright);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 16px;
}
.section-subtitle {
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
}

/* Red accent line */
.accent-line {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 16px 0;
}
.center .accent-line { margin: 16px auto; }

/* ============================================
   CLASSES / DISCIPLINES GRID
   ============================================ */
.disciplines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.discipline-card {
  background: var(--dark-grey);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s, border-color 0.4s;
}
.discipline-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
}
.discipline-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s;
}
.discipline-card:hover::before { transform: scaleY(1); }

.discipline-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.discipline-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.discipline-card .schedule {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red-bright);
  margin-bottom: 12px;
}
.discipline-card p {
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

/* ============================================
   TIMETABLE
   ============================================ */
.timetable-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
}
.timetable-tab {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 32px;
  background: var(--mid-grey);
  color: var(--light-grey);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.timetable-tab.active, .timetable-tab:hover {
  background: var(--red);
  color: var(--white);
}

.timetable-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.timetable {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}
.timetable th {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 16px 12px;
  background: var(--red);
  color: var(--white);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
}
.timetable td {
  padding: 14px 12px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  background: var(--dark-grey);
  vertical-align: middle;
  transition: background 0.3s;
}
.timetable td:hover { background: var(--mid-grey); }
.timetable td.has-class {
  background: rgba(192,57,43,0.12);
  color: var(--white);
  font-weight: 500;
}
.timetable .time-col {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--red-bright);
  white-space: nowrap;
  background: var(--dark);
  text-align: right;
  padding-right: 16px;
}

/* ============================================
   TEAM
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--dark-grey);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: transform 0.4s, border-color 0.4s;
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
}
.team-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  filter: grayscale(30%);
  transition: filter 0.4s;
}
.team-card:hover .team-card-img { filter: grayscale(0%); }

.team-card-info {
  padding: 20px;
  border-top: 3px solid var(--red);
}
.team-card-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.team-card-info .role {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red-bright);
  margin-bottom: 4px;
}
.team-card-info .rank {
  font-size: 0.85rem;
  color: var(--light-grey);
}

/* ============================================
   VALUES
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.value-card {
  background: var(--dark-grey);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.4s, border-color 0.4s;
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
}
.value-kanji {
  font-size: 2.2rem;
  color: var(--red-bright);
  margin-bottom: 8px;
  line-height: 1;
}
.value-name {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 8px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover::after { opacity: 1; }

/* ============================================
   HISTORY TIMELINE
   ============================================ */
.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--red), var(--red-dark), transparent);
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 24px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--red);
  border-radius: 50%;
  border: 3px solid var(--dark);
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red-bright);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 4px;
}
.timeline-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

/* ============================================
   STUDENT OF THE MONTH
   ============================================ */
.sotm-banner {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--dark) 100%);
  border: 1px solid rgba(192,57,43,0.3);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.sotm-banner img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 3px solid var(--red);
}
.sotm-info .sotm-label {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
}
.sotm-info h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 2px;
}
.sotm-info p { color: rgba(255,255,255,0.6); }

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.contact-info-item h4 {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red-bright);
  margin-bottom: 4px;
}
.contact-info-item p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--light-grey);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--dark-grey);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red-bright);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ============================================
   ETIQUETTE
   ============================================ */
.etiquette-list {
  counter-reset: etiquette;
}
.etiquette-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--dark-grey);
  border-left: 3px solid var(--red);
}
.etiquette-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red-bright);
  line-height: 1;
  flex-shrink: 0;
}
.etiquette-item .jp { color: var(--gold); font-weight: 600; }
.etiquette-item p { color: rgba(255,255,255,0.7); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 24px 30px;
}
.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.footer-col p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--red-bright); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
}
.footer-bottom .credit { color: rgba(255,255,255,0.3); }
.footer-bottom .credit a { color: var(--red-bright); }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--red);
  padding: 40px 24px;
}
.stats-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item h3 {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-item p {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  text-align: center;
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--dark) 0%, rgba(192,57,43,0.15) 50%, var(--dark) 100%);
  position: relative;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 32px;
}

/* ============================================
   PAGE HERO (sub pages)
   ============================================ */
.page-hero {
  padding: 160px 24px 80px;
  background: linear-gradient(135deg, var(--dark) 0%, rgba(192,57,43,0.1) 100%);
  position: relative;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 3px;
}
.page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 12px auto 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   BELT SYSTEM
   ============================================ */
.belt-system {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0;
}
.belt {
  width: 80px;
  height: 16px;
  border-radius: 2px;
  position: relative;
}
.belt-white { background: #f0f0f0; }
.belt-yellow { background: #f1c40f; }
.belt-orange { background: #e67e22; }
.belt-blue { background: #2e6bc6; }
.belt-green { background: #27ae60; }
.belt-brown { background: #8b5e3c; }
.belt-black { background: #1a1a1a; border: 1px solid #444; }

/* ============================================
   MAP
   ============================================ */
.map-container {
  width: 100%;
  height: 350px;
  background: var(--dark-grey);
  border: 1px solid rgba(255,255,255,0.06);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(80%) invert(92%) contrast(83%);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-container { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }

  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s, opacity 0.4s;
    border-bottom: 2px solid var(--red);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a {
    padding: 14px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100%;
  }
  .nav-links a::after { display: none; }
  .nav-cta {
    margin-top: 12px;
    text-align: center;
    width: 100%;
    display: block !important;
  }

  .section { padding: 60px 20px; }
  .hero { min-height: 100svh; }
  .hero h1 { font-size: clamp(2.5rem, 10vw, 4rem); }

  .stats-container { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-item h3 { font-size: 2.2rem; }

  .footer-container { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

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

  .sotm-banner { flex-direction: column; text-align: center; }
  .sotm-banner img { width: 150px; height: 150px; }

  .form-row { grid-template-columns: 1fr; }
  .disciplines-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .belt-system { gap: 2px; }
  .belt { width: 36px; height: 12px; }
}
