/* =============================================
   RED CROC MARTIAL ARTS - MAIN STYLESHEET
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --red:          #cc1a2b;
  --red-dark:     #a51522;
  --black:        #111111;
  --dark:         #1a1a1a;
  --white:        #ffffff;
  --light-bg:     #f5f5f5;
  --mid-bg:       #e8e8e8;
  --text-dark:    #1c1c1c;
  --text-body:    #444444;
  --text-muted:   #888888;
  --border:       #dddddd;
  --gold:         #c9a227;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text-body);
  line-height: 1.65;
  background: var(--white);
  overflow-x: hidden;
  max-width: 100vw;
}
*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Impact', Arial Narrow, sans-serif;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: 0.5px;
}

/* ---------- TOP BAR ---------- */
.top-bar {
  background: var(--red);
  color: white;
  text-align: center;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ---------- NAVIGATION ---------- */
.navbar {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.logo-text-wrap {
  line-height: 1.1;
}

.logo-main {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
}

.logo-main span { color: var(--red); }

.logo-sub {
  font-size: 0.6rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: stretch;
  height: 70px;
  flex-wrap: nowrap;
}

.nav-menu > li {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-menu > li > a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 12px;
  height: 100%;
  display: flex;
  align-items: center;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-menu > li > a:hover {
  color: white;
  background: rgba(255,255,255,0.07);
}

.nav-menu > li > a.nav-cta {
  background: var(--red);
  color: white;
  font-weight: 600;
  padding: 0 16px;
  margin: 14px 0 14px 8px;
  height: auto;
  border-radius: 2px;
  transition: background 0.2s;
}
.nav-menu > li > a.nav-cta:hover { background: var(--red-dark); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-toggle::after { content: " ▾"; font-size: 0.65rem; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--dark);
  min-width: 220px;
  list-style: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  z-index: 200;
}
.has-dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu li a {
  display: block;
  padding: 12px 18px;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 0.77rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s, color 0.2s;
}
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover { background: var(--red); color: white; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 2px;
  line-height: 1;
}

.btn-red { background: var(--red); color: white; }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(204,26,43,0.4); }

.btn-dark { background: var(--dark); color: white; }
.btn-dark:hover { background: #333; transform: translateY(-2px); }

.btn-outline-white { background: transparent; color: white; border: 2px solid white; }
.btn-outline-white:hover { background: white; color: var(--red); }

.btn-outline-red { background: transparent; color: var(--red); border: 2px solid var(--red); }
.btn-outline-red:hover { background: var(--red); color: white; }

/* ---------- SECTION BASE ---------- */
section { padding: 75px 20px; }

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

.section-heading { text-align: center; margin-bottom: 50px; }

.section-heading .overline {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  display: block;
}

.section-heading h2 {
  font-size: 2.4rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.section-heading p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.section-heading.light h2 { color: white; }
.section-heading.light p  { color: rgba(255,255,255,0.72); }

/* ---------- HERO ---------- */
.hero {
  min-height: 640px;
  background:
    linear-gradient(rgba(10,10,10,0.68), rgba(10,10,10,0.68)),
    url('https://images.unsplash.com/photo-1555597673-b21d5c935865?w=1600&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  color: white;
}

.hero-content { max-width: 860px; }

.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  display: block;
}

.hero h1 {
  font-size: 3.8rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  line-height: 1.05;
}

.hero h1 em {
  font-style: normal;
  color: var(--red);
}

.hero-taglines {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hero-tagline-item {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  text-align: left;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin: 0 auto 35px;
}

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

/* ---------- RED BANNER ---------- */
.red-banner {
  background: var(--red);
  color: white;
  text-align: center;
  padding: 28px 20px;
}
.red-banner p {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ---------- ABOUT/PHILOSOPHY ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.text-col h2 {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  color: var(--text-dark);
}

.text-col h2 span { color: var(--red); }

.text-col p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.img-placeholder {
  background: var(--mid-bg);
  border-radius: 6px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

/* ---------- VALUES ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.value-card {
  text-align: center;
  padding: 30px 18px;
  background: var(--dark);
  color: white;
  border-radius: 4px;
  border-bottom: 3px solid var(--red);
  transition: transform 0.25s;
}
.value-card:hover { transform: translateY(-4px); }

.value-card .icon { font-size: 2.4rem; margin-bottom: 16px; color: var(--red); line-height: 1; display: inline-flex; align-items: center; justify-content: center; }

.value-card h3 {
  color: white;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ---------- PROGRAMS GRID ---------- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.prog-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.prog-card:hover { box-shadow: 0 8px 26px rgba(0,0,0,0.1); transform: translateY(-4px); }

.prog-card-top {
  background: var(--dark);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.prog-card-top .icon { font-size: 2.2rem; color: var(--red); display: inline-flex; align-items: center; line-height: 1; }

.prog-card-top h3 {
  color: white;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.prog-card-top p {
  color: var(--red);
  font-size: 0.8rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.prog-card-body { padding: 24px; }

.prog-card-body p { font-size: 0.88rem; line-height: 1.75; margin-bottom: 16px; }

/* ---------- TESTIMONIALS ---------- */
.testimonials { background: var(--dark); }

.t-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 6px;
  border-left: 3px solid var(--red);
}

.t-card .stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; }
.t-card .quote { font-size: 0.9rem; color: rgba(255,255,255,0.82); font-style: italic; line-height: 1.75; margin-bottom: 18px; }
.t-card .author { font-weight: 700; font-size: 0.88rem; color: white; }
.t-card .author-role { font-size: 0.78rem; color: var(--red); text-transform: uppercase; letter-spacing: 1px; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* ---------- GETTING STARTED ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 45px; }

.step-card { padding: 40px 28px; background: var(--light-bg); border-radius: 6px; text-align: center; }

.step-num {
  width: 64px; height: 64px;
  background: var(--red); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif; font-size: 1.7rem; font-weight: 700;
  margin: 0 auto 22px;
}

.step-card h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--dark); margin-bottom: 14px; }
.step-card p { font-size: 0.88rem; }

/* ---------- PAGE HERO ---------- */
.page-hero {
  background:
    linear-gradient(rgba(10,10,10,0.72), rgba(10,10,10,0.72)),
    url('https://images.unsplash.com/photo-1555597673-b21d5c935865?w=1400&q=80') center/cover no-repeat;
  padding: 90px 20px;
  text-align: center;
  color: white;
}

.page-hero h1 {
  color: white;
  font-size: 2.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.78); max-width: 600px; margin: 0 auto; }

/* ---------- INSTRUCTORS ---------- */
.instructors-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 35px; max-width: 900px; margin: 0 auto; }

.instructor-card { text-align: center; }

.instructor-photo {
  width: 180px; height: 180px;
  background: var(--mid-bg);
  border-radius: 50%;
  margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  border: 4px solid var(--red);
}

.instructor-card h3 { font-size: 1.4rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.instructor-card .belt { font-family: 'Oswald', sans-serif; color: var(--red); font-size: 0.88rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; display: block; }
.instructor-card p { font-size: 0.88rem; line-height: 1.75; }

/* ---------- QUALIFICATIONS CAROUSEL ---------- */
.qual-carousel { position: relative; max-width: 900px; margin: 30px auto 0; }
.qc-viewport { overflow: hidden; }
.qc-track { display: flex; transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1); }
.qc-slide {
  flex: 0 0 50%;
  padding: 0 8px;
  box-sizing: border-box;
  margin: 0;
}
.qc-slide-inner {
  position: relative;
  height: 320px;
  background: var(--mid-bg);
  border-radius: 6px;
  overflow: hidden;
}
.qc-slide-title {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: 'Oswald', sans-serif; font-size: 1.3rem; color: white;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 24px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--red-dark) 100%);
  line-height: 1.3;
}
.qc-slide-inner img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  display: block; z-index: 1;
}
.qc-slide-inner figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88), rgba(0,0,0,0));
  color: white; padding: 36px 16px 14px; text-align: center;
  font-family: 'Oswald', sans-serif; letter-spacing: 1.5px; text-transform: uppercase;
  font-size: 0.78rem; z-index: 2;
  line-height: 1.4;
}
.qc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--red); color: white; border: 0;
  font-size: 1.6rem; line-height: 1; cursor: pointer; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.qc-arrow:hover { background: var(--red-dark); transform: translateY(-50%) scale(1.05); }
.qc-prev { left: -22px; }
.qc-next { right: -22px; }
.qc-dots { display: flex; gap: 9px; justify-content: center; margin-top: 18px; flex-wrap: wrap; }
.qc-dot { width: 10px; height: 10px; border-radius: 50%; border: 0; background: var(--mid-bg); cursor: pointer; padding: 0; transition: background 0.2s ease, transform 0.2s ease; }
.qc-dot:hover { transform: scale(1.2); }
.qc-dot.is-active { background: var(--red); }
@media (max-width: 768px) {
  .qc-slide { flex: 0 0 100%; padding: 0; }
  .qc-slide-inner { height: 280px; }
  .qc-slide-title { font-size: 1.2rem; letter-spacing: 2px; }
  .qc-prev { left: 8px; }
  .qc-next { right: 8px; }
  .qc-arrow { width: 40px; height: 40px; font-size: 1.4rem; }
}

/* ---------- INLINE SVG ICONS ---------- */
.svg-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

/* ---------- KEF GALLERY ---------- */
.kef-pair {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 30px auto 20px;
}
.kef-pair a {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  flex: 0 0 auto;
}
.kef-pair img {
  height: 540px;
  width: auto;
  display: block;
  transition: transform 0.4s ease;
}
.kef-pair a:hover img { transform: scale(1.03); }
@media (max-width: 900px) {
  .kef-pair img { height: 380px; }
}
@media (max-width: 520px) {
  .kef-pair { flex-direction: column; align-items: center; gap: 12px; }
  .kef-pair img { height: auto; max-width: 100%; width: 100%; }
}

.kef-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 20px auto 0;
}
.kef-gallery a {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  aspect-ratio: 4 / 3;
}
.kef-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.kef-gallery a:hover img { transform: scale(1.04); }
@media (max-width: 768px) {
  .kef-gallery { grid-template-columns: 1fr; gap: 12px; }
}

/* ---------- INSTRUCTOR DETAIL ---------- */
.instructor-detail-photo { max-width: 320px; margin: 0 auto 30px; }
.instructor-detail-photo img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 50%; border: 4px solid var(--red); display: block; }
.instructor-bio { max-width: 820px; margin: 0 auto; }
.instructor-bio h3 {
  font-family: 'Oswald', sans-serif; font-size: 1.3rem;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin: 30px 0 14px; color: var(--dark);
  border-left: 3px solid var(--red); padding-left: 14px;
}
.instructor-bio p { font-size: 1rem; line-height: 1.8; margin-bottom: 14px; color: var(--text); }
.instructor-bio ul { list-style: none; padding: 0; margin: 0 0 14px; }
.instructor-bio ul li {
  position: relative; padding: 8px 0 8px 26px;
  font-size: 0.98rem; line-height: 1.6;
  border-bottom: 1px solid var(--mid-bg);
}
.instructor-bio ul li:last-child { border-bottom: 0; }
.instructor-bio ul li::before {
  content: ''; position: absolute; left: 0; top: 16px;
  width: 10px; height: 10px; background: var(--red); border-radius: 2px;
  transform: rotate(45deg);
}

/* ---------- LOCATIONS ---------- */
.locations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }

.location-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.location-card-header {
  background: var(--dark);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.location-card-header .icon { font-size: 2rem; color: var(--red); display: inline-flex; align-items: center; line-height: 1; }
.location-card-header h3 { color: white; font-size: 1.3rem; text-transform: uppercase; letter-spacing: 1px; }
.location-card-header p { color: var(--red); font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; font-family: 'Oswald', sans-serif; }

.location-card-body { padding: 24px; }

.location-detail { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.location-detail .icon { font-size: 1.1rem; color: var(--red); min-width: 24px; margin-top: 2px; display: inline-flex; align-items: center; line-height: 1; }
.location-detail p { font-size: 0.88rem; line-height: 1.55; }

.map-box {
  margin-top: 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.map-embed {
  width: 100%; height: 240px;
  border: 0; border-radius: 4px;
  display: block;
}

/* ---------- SCHEDULE (TIMETABLE) ---------- */
.schedule-tabs { display: flex; gap: 6px; margin-bottom: 28px; flex-wrap: wrap; }

.tab-btn {
  padding: 10px 20px;
  background: var(--mid-bg);
  color: var(--text-dark);
  border: none; cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 3px; transition: all 0.2s;
}
.tab-btn:hover { background: var(--dark); color: white; }
.tab-btn.active { background: var(--red); color: white; }

.tab-pane { display: none; }
.tab-pane.active { display: block; }

.schedule-list { display: flex; flex-direction: column; gap: 8px; }

.sched-item {
  background: white;
  padding: 18px 24px;
  border-radius: 4px;
  display: flex; align-items: center; gap: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  border-left: 3px solid var(--red);
}

.sched-time { font-family: 'Oswald', sans-serif; font-weight: 500; color: var(--red); min-width: 180px; font-size: 0.92rem; }
.sched-name { font-weight: 600; font-size: 0.92rem; color: var(--text-dark); flex: 1; }
.sched-age { font-size: 0.78rem; color: white; background: var(--dark); padding: 3px 12px; border-radius: 20px; font-weight: 600; letter-spacing: 0.5px; white-space: nowrap; }
.sched-note { font-size: 0.75rem; color: var(--text-muted); font-style: italic; margin-top: 3px; }

/* ---------- SESSION TYPES ---------- */
.session-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.session-card {
  background: var(--light-bg);
  border-radius: 6px;
  padding: 32px;
  border-top: 4px solid var(--red);
}

.session-card .age-badge {
  display: inline-block;
  background: var(--red);
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.session-card h3 { font-size: 1.4rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.session-card p { font-size: 0.88rem; line-height: 1.75; }

/* ---------- ETIQUETTE ---------- */
.etiquette-section h3 {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red);
  margin: 30px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.etiquette-section ul { list-style: none; margin-bottom: 20px; }
.etiquette-section ul li {
  padding: 9px 0 9px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  position: relative;
}
.etiquette-section ul li::before { content: "›"; color: var(--red); position: absolute; left: 0; font-weight: 700; font-size: 1.1rem; }

/* ---------- COMBATIVES ---------- */
.highlight-box {
  background: var(--dark);
  color: white;
  border-radius: 6px;
  padding: 40px;
  margin-bottom: 30px;
  border-left: 5px solid var(--red);
}
.highlight-box h3 { color: var(--red); font-size: 1.5rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; }
.highlight-box p { color: rgba(255,255,255,0.82); font-size: 0.95rem; line-height: 1.8; }

/* ---------- FORM STYLES ---------- */
.form-card {
  background: white;
  padding: 40px;
  border-radius: 6px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  max-width: 620px;
  margin: 0 auto;
}

.form-card h3 {
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 28px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 0.92rem;
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  background: white;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--red); }
.form-group textarea { height: 120px; resize: vertical; }
.form-note { font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-top: 14px; }
.form-submit { width: 100%; margin-top: 8px; }

/* ---------- NEWS ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.news-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.news-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-3px); }

.news-thumb {
  height: 200px; background: var(--dark);
  display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
}

.news-body { padding: 24px; }
.news-meta { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.news-body h3 { font-size: 1.1rem; line-height: 1.35; margin-bottom: 10px; }
.news-body h3 a { text-decoration: none; color: var(--text-dark); transition: color 0.2s; }
.news-body h3 a:hover { color: var(--red); }
.news-body p { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 18px; }
.read-more { font-family: 'Oswald', sans-serif; font-size: 0.82rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); text-decoration: none; }
.read-more:hover { text-decoration: underline; }

/* ---------- CTA BANNER ---------- */
.cta-banner { background: var(--red); color: white; text-align: center; padding: 80px 20px; }
.cta-banner h2 { color: white; font-size: 2.6rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; }
.cta-banner p { font-size: 1.1rem; color: rgba(255,255,255,0.88); max-width: 600px; margin: 0 auto 32px; }

/* ---------- NEWS CARDS ---------- */
.news-card-img-placeholder {
  height: 180px;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  border-radius: 6px 6px 0 0;
}
.news-card-body { padding: 22px 24px 26px; }
.news-card-body h3 { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.news-card-body h3 a { color: var(--text-dark); text-decoration: none; transition: color 0.2s; }
.news-card-body h3 a:hover { color: var(--red); }
.news-card-body p { font-size: 0.88rem; line-height: 1.75; color: var(--text-muted); margin-bottom: 14px; }
.news-read-more { font-size: 0.83rem; color: var(--red); font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; }
.news-read-more:hover { text-decoration: underline; }

/* ---------- CONTACT PAGE ---------- */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: start; }

.contact-form-col h2 { font-size: 1.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }

.contact-form button[type="submit"] { cursor: pointer; border: none; }

.contact-info-col { display: flex; flex-direction: column; gap: 24px; }

.contact-info-block {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px 26px;
}
.contact-info-block h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.contact-detail:last-child { margin-bottom: 0; }
.contact-icon { font-size: 1.2rem; line-height: 1; flex-shrink: 0; color: var(--red); display: inline-flex; align-items: center; }
.contact-detail strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 3px; }
.contact-detail p, .contact-detail div { font-size: 0.9rem; line-height: 1.7; color: var(--text-muted); }

/* ---------- POLICY ---------- */
.policy-updated { font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 28px; }
.policy-content { max-width: 820px; margin: 0 auto; }
.policy-content h2 { font-size: 1.7rem; text-transform: uppercase; margin: 35px 0 14px; padding-top: 35px; border-top: 1px solid var(--border); }
.policy-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.policy-content p { margin-bottom: 16px; line-height: 1.8; font-size: 0.95rem; }
.policy-content ul { margin-left: 24px; margin-bottom: 16px; }
.policy-content ul li { margin-bottom: 8px; font-size: 0.95rem; }

/* ---------- FOOTER ---------- */
footer { background: var(--black); color: rgba(255,255,255,0.75); padding: 0 20px; }

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 45px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  color: white; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 3px;
  margin-bottom: 20px;
}

.footer-col p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.65); margin-bottom: 10px; }

.footer-col a {
  display: block; font-size: 0.88rem;
  color: rgba(255,255,255,0.65); text-decoration: none;
  margin-bottom: 9px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--red); }

.footer-social { display: flex; justify-content: center; gap: 18px; margin-top: 2px; }
.fsoc-btn {
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.2s ease;
}
.fsoc-btn:hover { color: var(--red); transform: translateY(-2px); }
.fsoc-btn svg { width: 19px; height: 19px; display: block; fill: currentColor; }

.footer-simple {
  text-align: center;
  padding: 14px 0;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
}
.footer-simple p { font-size: 0.82rem; color: rgba(255,255,255,0.85); margin: 0; }
.footer-simple a { color: var(--red); text-decoration: none; transition: opacity 0.2s ease; }
.footer-simple a:hover { opacity: 0.8; }

/* ---------- GATE OVERLAY ---------- */
#gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(10,10,10,0.65);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}
#gate-overlay.hidden { display: none; }

.gate-modal {
  background: white;
  border-radius: 6px;
  width: 100%;
  max-width: 520px;
  max-height: 96vh;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
}

.gate-modal-header {
  background: var(--dark);
  color: white;
  padding: 18px 56px 14px 28px;
  flex-shrink: 0;
  border-top: 4px solid var(--red);
  position: relative;
}

.gate-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.gate-close:hover { background: var(--red); border-color: var(--red); transform: rotate(90deg); }
.gate-close svg { width: 14px; height: 14px; display: block; stroke: currentColor; fill: none; }

.gate-modal-header h2 { color: white; font-size: 1.3rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 4px; }
.gate-modal-header p { color: rgba(255,255,255,0.72); font-size: 0.82rem; line-height: 1.45; }

.gate-modal-body { padding: 0; flex: 1; min-height: 0; }

.ghl-frame-wrap { width: 100%; }
.ghl-frame-wrap iframe { width: 100%; border: none; display: block; min-height: 480px; }

/* Popup iframe gets scaled by JS — these reset rules keep layout sane */
.gate-modal-body .ghl-frame-wrap { position: relative; overflow: hidden; }
.gate-modal-body .ghl-frame-wrap iframe { position: absolute; top: 0; left: 0; }

/* Mobile: tighter header so more room for the scaled form */
@media (max-width: 600px) {
  .gate-modal { max-height: 94vh; overflow: hidden; border-radius: 6px; }
  .gate-modal-header { padding: 12px 18px 10px; }
  .gate-modal-header h2 { font-size: 1rem; letter-spacing: 1.5px; margin-bottom: 2px; }
  .gate-modal-header p  { font-size: 0.72rem; line-height: 1.35; }
}

/* ---------- TRIAL PAGE ---------- */
.age-select-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 900px;
  margin: 30px auto 0;
}
.age-card {
  background: white;
  padding: 28px 20px;
  border-radius: 8px;
  border: 2px solid var(--mid-bg);
  text-align: center;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.age-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
  border-color: var(--red);
}
.age-card:focus-visible {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(204,26,43,0.18);
}
.age-card.is-selected {
  border-color: var(--red);
  background: rgba(204,26,43,0.04);
  box-shadow: 0 6px 18px rgba(204,26,43,0.12);
}

/* Hide everything below Step 1 until an age group is picked */
.below-step1 { display: none; }
body.age-selected .below-step1 { display: revert; }
.age-card-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.7rem; font-weight: 700;
  color: var(--red);
  letter-spacing: 2px; text-transform: uppercase;
  line-height: 1.1;
}
.age-card-range {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem; font-weight: 500;
  color: var(--dark);
  letter-spacing: 2px; text-transform: uppercase;
}
.age-card-time {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}
@media (max-width: 600px) {
  .age-select-grid { grid-template-columns: 1fr; gap: 12px; max-width: none; }
  .age-card { padding: 20px 16px; }
  .age-card-name { font-size: 1.4rem; }
}

.trial-perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 30px;
}
.trial-perk {
  background: var(--light-bg);
  padding: 28px 22px;
  border-radius: 6px;
  text-align: center;
  border-top: 3px solid var(--red);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.trial-perk:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.trial-perk .icon { font-size: 2.2rem; margin-bottom: 10px; color: var(--red); display: inline-flex; align-items: center; justify-content: center; line-height: 1; }
.trial-perk h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem; text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.trial-perk p { font-size: 0.88rem; line-height: 1.6; color: var(--text-muted); margin: 0; }
@media (max-width: 900px) { .trial-perks-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .trial-perks-grid { grid-template-columns: 1fr; } }

.trial-faq { display: flex; flex-direction: column; gap: 16px; margin-top: 30px; }
.faq-item {
  background: var(--light-bg);
  padding: 22px 24px;
  border-radius: 6px;
  border-left: 3px solid var(--red);
}
.faq-item h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem; text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.faq-item p { font-size: 0.95rem; line-height: 1.7; margin: 0; color: var(--text); }

/* ---------- PHONE BLOCK (CONTACT) ---------- */
.contact-phone-block { border-left: 4px solid var(--red); }
.phone-row {
  display: flex; align-items: center; gap: 16px;
  text-decoration: none; color: inherit;
  padding: 10px 0;
  transition: transform 0.2s ease;
}
.phone-row:hover { transform: translateX(2px); }
.phone-icon {
  width: 48px; height: 48px;
  background: var(--red); color: white;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.phone-icon svg { width: 22px; height: 22px; display: block; }
.phone-text { display: flex; flex-direction: column; gap: 2px; }
.phone-text strong {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted);
}
.phone-number {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--red); letter-spacing: 1px;
}
.phone-row:hover .phone-number { color: var(--red-dark); }

#page-content { transition: filter 0.4s ease; }
#page-content.blurred { filter: blur(5px); pointer-events: none; user-select: none; }

#unlock-flash {
  display: none;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a7f37;
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 3000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  animation: slideDown 0.4s ease;
}
@keyframes slideDown {
  from { top: -60px; opacity: 0; }
  to   { top: 20px; opacity: 1; }
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.reveal-left  { transform: translateX(-50px) translateY(0); }
.reveal.reveal-right { transform: translateX(50px) translateY(0); }
.reveal.reveal-zoom  { transform: scale(0.92); }

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-menu > li > a { padding: 0 9px; font-size: 0.72rem; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    height: auto;
    padding: 10px 0 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu > li > a { height: auto; padding: 13px 20px; }
  .nav-menu > li > a.nav-cta { margin: 10px 20px 0; padding: 13px 20px; height: auto; text-align: center; }
  .has-dropdown .dropdown-menu { position: static; box-shadow: none; background: rgba(255,255,255,0.05); min-width: unset; display: none; }
  .has-dropdown.is-open .dropdown-menu { display: block; }
  .has-dropdown:hover .dropdown-menu { display: none; }

  section { padding: 55px 20px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-taglines { flex-wrap: nowrap; gap: 10px; }
  .hero-tagline-item { font-size: clamp(0.55rem, 2.5vw, 0.85rem); letter-spacing: 0.6px; white-space: nowrap; }
  .two-col { grid-template-columns: 1fr !important; }
  .mission-vision-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
  .img-placeholder { height: auto !important; background: none !important; }
  .img-placeholder img { height: auto !important; max-height: none !important; object-fit: contain !important; width: 100% !important; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .session-grid { grid-template-columns: 1fr; }
  .instructors-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner h2 { font-size: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .schedule-tabs { gap: 4px; }
  .tab-btn { padding: 8px 12px; font-size: 0.78rem; }
  .sched-item { flex-wrap: wrap; gap: 8px; }
  .sched-time { min-width: unset; }
}
