/* ================================================================
   Strabane Martial Arts Academy — Global Stylesheet
   Design: Dark premium, gold accents, Oswald + Open Sans
================================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #d4a017;
  --gold-light: #f0c040;
  --gold-dim: rgba(212,160,23,0.12);
  --gold-border: rgba(212,160,23,0.25);
  --silver: #c0c0c0;
  --dark: #111112;
  --dark2: #1a1a1c;
  --dark3: #222224;
  --text: #e8e8e8;
  --text-muted: #999;
  --footer-bg: #0a0a0b;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; display: block; }

/* ── SITE HEADER & NAV ──────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
}

.site-nav {
  height: 70px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(17,17,18,.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold-border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.nav-logo img { width: 46px; height: 46px; object-fit: contain; }

.nav-brand {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.2;
  color: var(--text);
}

.nav-brand span {
  display: block;
  font-size: .7rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: .14em;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  height: 70px;
}

.nav-list > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 0 14px;
  height: 100%;
  font-family: 'Oswald', sans-serif;
  font-size: .83rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.caret { font-size: .6rem; opacity: .7; }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 70px; left: 0;
  background: var(--dark2);
  border: 1px solid var(--gold-border);
  border-top: 2px solid var(--gold);
  min-width: 210px;
  list-style: none;
  z-index: 300;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
}

.has-dropdown:hover .dropdown { display: block; }

.dropdown li a {
  display: block;
  padding: 11px 20px;
  font-family: 'Oswald', sans-serif;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background .15s, color .15s, padding-left .15s;
}

.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--gold-dim); color: var(--gold); padding-left: 28px; }

/* Hamburger */
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.ham span { display: block; width: 24px; height: 2px; background: var(--text); transition: all .3s; }
.ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--dark2);
  border-bottom: 2px solid var(--gold);
  padding: 16px 5% 24px;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}

.mobile-menu.open { display: flex; }

.mobile-menu > a {
  display: block;
  padding: 12px 0;
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.mobile-menu > a:hover { color: var(--gold); }

.mobile-has-sub { border-bottom: 1px solid rgba(255,255,255,.06); }

.mobile-sub-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
}

.mobile-sub-toggle .arrow { font-size: 1.1rem; color: var(--gold); transition: transform .2s; }
.mobile-has-sub.open .arrow { transform: rotate(45deg); }

.mobile-sub { display: none; list-style: none; padding: 0 0 10px 16px; }
.mobile-has-sub.open .mobile-sub { display: block; }

.mobile-sub li a {
  display: block;
  padding: 8px 0;
  font-size: .85rem;
  color: var(--text-muted);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.mobile-sub li a:hover { color: var(--gold); }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 15px 36px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background .2s, transform .15s;
}

.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); color: #000; transform: translateY(-2px); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 34px;
  border: 2px solid rgba(255,255,255,.25);
  cursor: pointer;
  transition: border-color .2s, color .2s, transform .15s;
}

.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 11px 28px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background .2s, color .2s;
}

.btn-outline:hover { background: var(--gold); color: #000; }

/* ── SECTIONS ────────────────────────────────────────── */
section { padding: 90px 5%; }

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.section-title .gold { color: var(--gold); }

.section-intro {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 52px;
}

.divider { width: 48px; height: 3px; background: var(--gold); margin-bottom: 20px; }

/* ── PAGE HERO (inner pages) ─────────────────────────── */
.page-hero {
  padding-top: 70px;
  background: var(--dark2);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(212,160,23,.07) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-inner { position: relative; padding: 60px 5% 70px; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,.2); }

.page-hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); color: #fff; margin-bottom: 16px; }
.page-hero-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.page-hero-line { width: 60px; height: 3px; background: var(--gold); margin: 24px auto 0; }

/* ── HERO (homepage) ─────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 5% 80px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(10,10,11,0.74), rgba(10,10,11,0.80)),
    url('../assets/background.jpg') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,160,23,.06) 0%, transparent 55%);
}

.hero-ring {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(212,160,23,.08);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}

.hero-ring::before {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212,160,23,.06);
}

.hero-ring::after {
  content: '';
  position: absolute;
  inset: 80px;
  border-radius: 50%;
  border: 1px solid rgba(212,160,23,.04);
}

.hero-inner { position: relative; max-width: 820px; }

.hero-badge {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,160,23,.1);
  border: 1px solid rgba(212,160,23,.3);
  padding: 6px 18px;
  margin-bottom: 24px;
}

.hero-logo {
  display: block;
  margin: 0 auto 28px;
  width: 195px; height: 195px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(212,160,23,.4));
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 8px;
  color: #fff;
}

.hero h1 .gold { color: var(--gold); }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--silver);
  margin-bottom: 14px;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero p { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; margin: 0 auto 38px; }

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

.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}

.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }

/* ── STATS BAR ───────────────────────────────────────── */
.stats-bar {
  background: var(--gold);
  padding: 18px 5%;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat { text-align: center; color: #000; }
.stat-num { font-family: 'Oswald', sans-serif; font-size: 1.8rem; font-weight: 700; line-height: 1; }
.stat-label { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; opacity: .75; }

/* ── CLASS CARDS ─────────────────────────────────────── */
.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.class-card {
  background: var(--dark3);
  border: 1px solid rgba(212,160,23,.12);
  border-radius: 6px;
  padding: 36px 28px;
  transition: border-color .25s, transform .2s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.class-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.class-card:hover { border-color: rgba(212,160,23,.4); transform: translateY(-4px); }
.class-card:hover::before { transform: scaleX(1); }

.class-icon { font-size: 2.2rem; margin-bottom: 18px; display: block; }
.class-card h3 { font-size: 1.3rem; color: #fff; margin-bottom: 10px; }
.class-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.7; flex: 1; }

.class-tag {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Oswald', sans-serif;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,160,23,.1);
  border: 1px solid rgba(212,160,23,.2);
  padding: 4px 12px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .2s;
}

.card-link:hover { gap: 10px; }

/* ── WHY US ──────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 36px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }

.why-icon {
  width: 48px; height: 48px;
  background: rgba(212,160,23,.1);
  border: 1px solid rgba(212,160,23,.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.why-text h4 { font-size: 1rem; color: #fff; margin-bottom: 6px; }
.why-text p { font-size: .87rem; color: var(--text-muted); line-height: 1.65; }

/* ── CTA BAND ────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #1a1500 0%, #0d0d0e 50%, #1a1500 100%);
  border-top: 1px solid rgba(212,160,23,.2);
  border-bottom: 1px solid rgba(212,160,23,.2);
  text-align: center;
  padding: 80px 5%;
}

.cta-band .section-title { font-size: clamp(2rem, 5vw, 3.2rem); }
.cta-band p { color: var(--text-muted); max-width: 500px; margin: 0 auto 36px; }

/* ── TESTIMONIALS ────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

.testi-card {
  background: var(--dark3);
  border: 1px solid rgba(212,160,23,.12);
  border-radius: 6px;
  padding: 36px 28px 28px;
  position: relative;
}

.testi-card::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: .25;
  position: absolute;
  top: 0; left: 18px;
  line-height: 1;
}

.testi-stars { color: var(--gold); font-size: .9rem; margin-bottom: 16px; margin-top: 28px; }
.testi-text { font-style: italic; font-size: .93rem; color: var(--text); line-height: 1.75; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 12px; }

.testi-avatar {
  width: 42px; height: 42px;
  background: rgba(212,160,23,.15);
  border: 2px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  color: var(--gold);
  flex-shrink: 0;
}

.testi-name { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .06em; font-size: .9rem; color: var(--text); }
.testi-detail { font-size: .78rem; color: var(--text-muted); margin-top: 2px; }

/* ── INSTRUCTOR CARDS ────────────────────────────────── */
.instructors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }

.instructor-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .25s;
}

.instructor-card:hover { transform: translateY(-4px); }

.instructor-img {
  height: 220px;
  background: var(--dark2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border-bottom: 3px solid var(--gold);
}

.instructor-info { padding: 22px 24px; }
.instructor-name { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .06em; font-size: 1.1rem; color: #fff; margin-bottom: 4px; }
.instructor-role { font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); margin-bottom: 12px; font-family: 'Oswald', sans-serif; }
.instructor-bio { font-size: .88rem; color: var(--text-muted); line-height: 1.65; }

/* ── CLASS DETAIL PAGE ───────────────────────────────── */
.class-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.class-sidebar {
  background: var(--dark3);
  border: 1px solid var(--gold-border);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 6px 6px;
  padding: 28px;
  position: sticky;
  top: 90px;
}

.class-sidebar h3 { font-size: .9rem; letter-spacing: .14em; color: var(--text); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.08); }

.sidebar-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.05); font-size: .88rem; }
.sidebar-row:last-of-type { border-bottom: none; }
.sidebar-label { color: var(--text-muted); }
.sidebar-value { color: var(--text); font-weight: 600; }

.sidebar-cta { margin-top: 24px; }
.sidebar-cta .btn-primary { display: block; text-align: center; }

.benefit-list { list-style: none; margin: 24px 0; }

.benefit-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: .93rem;
  color: var(--text-muted);
}

.benefit-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

.class-description p { color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; font-size: .97rem; }
.class-description h3 { color: #fff; margin: 36px 0 16px; font-size: 1.1rem; letter-spacing: .1em; }

/* ── GALLERY ─────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 6px; }

.gallery-item {
  aspect-ratio: 4/3;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .2s;
}

.gallery-item:hover { transform: scale(.98); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212,160,23,.12);
  opacity: 0;
  transition: opacity .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── CONTACT ─────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 28px; }

.contact-icon {
  width: 40px; height: 40px;
  background: rgba(212,160,23,.1);
  border: 1px solid rgba(212,160,23,.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-text { padding-top: 2px; }
.contact-text strong { display: block; font-family: 'Oswald', sans-serif; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-text span, .contact-text a { font-size: .93rem; color: var(--text); }
.contact-text a:hover { color: var(--gold); }

.social-row { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 3px;
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: border-color .2s, color .2s;
}

.social-btn:hover { border-color: var(--gold); color: var(--gold); }

.contact-form form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input, .form-group select, .form-group textarea {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  color: var(--text);
  font-family: 'Open Sans', sans-serif;
  font-size: .93rem;
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--dark3); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  background: var(--gold);
  color: #000;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 15px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background .2s;
  width: 100%;
}

.form-submit:hover { background: var(--gold-light); }
.form-note { font-size: .78rem; color: var(--text-muted); text-align: center; }

.map-wrap { margin-top: 36px; border-radius: 6px; overflow: hidden; border: 1px solid rgba(212,160,23,.15); height: 280px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(60%) invert(90%) hue-rotate(180deg); }

/* ── HOURS ───────────────────────────────────────────── */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(255,255,255,.06); }
.hours-table td { padding: 11px 0; font-size: .9rem; color: var(--text-muted); }
.hours-table td:first-child { color: var(--text); font-weight: 600; }
.hours-table td:last-child { text-align: right; }

/* ── MEMBERSHIP ──────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; counter-reset: steps; }

.step-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 6px;
  padding: 32px 24px;
  position: relative;
  counter-increment: steps;
  margin-top: 18px;
}

.step-card::before {
  content: counter(steps);
  position: absolute;
  top: -18px; left: 24px;
  width: 36px; height: 36px;
  background: var(--gold);
  color: #000;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.step-card h3 { color: #fff; margin-bottom: 10px; font-size: 1rem; letter-spacing: .12em; }
.step-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.65; }

.includes-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }

.includes-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--dark3);
  border: 1px solid rgba(212,160,23,.12);
  border-radius: 4px;
  font-size: .9rem;
  color: var(--text-muted);
}

.includes-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ── YOUTH PROGRAMME ─────────────────────────────────── */
.age-groups-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }

.age-group-card {
  background: var(--dark3);
  border: 1px solid rgba(212,160,23,.15);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 6px 6px;
  padding: 24px 20px;
  text-align: center;
}

.age-group-age { font-family: 'Oswald', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.age-group-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-muted); margin-bottom: 14px; }
.age-group-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

/* ── INFO BOX ────────────────────────────────────────── */
.info-box {
  background: var(--dark2);
  border: 1px solid var(--gold-border);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  margin: 28px 0;
}

.info-box p { font-size: .9rem; color: var(--text-muted); }
.info-box strong { color: var(--gold); }

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

.about-img-block {
  background: var(--dark3);
  border: 1px solid rgba(212,160,23,.15);
  border-radius: 6px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.about-img-block::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}

/* ── FOOTER ──────────────────────────────────────────── */
.site-footer { background: var(--footer-bg); border-top: 1px solid var(--gold-border); padding: 64px 5% 0; }

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

.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-logo-wrap img { width: 40px; height: 40px; object-fit: contain; opacity: .85; }
.footer-brand-name { font-family: 'Oswald', sans-serif; font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); }

.footer-tagline { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .16em; font-size: .8rem; color: var(--gold); margin-bottom: 12px; }
.footer-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }

.footer-socials { display: flex; gap: 8px; }

.footer-socials a {
  width: 36px; height: 36px;
  background: var(--dark3);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--text-muted);
  border-radius: 3px;
  transition: background .2s, color .2s, border-color .2s;
}

.footer-socials a:hover { background: rgba(212,160,23,.15); border-color: var(--gold); color: var(--gold); }

.footer-col h4 { font-family: 'Oswald', sans-serif; font-size: .8rem; text-transform: uppercase; letter-spacing: .16em; color: var(--text); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .87rem; color: var(--text-muted); }
.footer-col ul li a:hover { color: var(--gold); }

.fc-row { display: flex; gap: 10px; margin-bottom: 12px; font-size: .85rem; color: var(--text-muted); align-items: flex-start; }
.fc-row .fi { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.fc-row a { color: var(--text-muted); }
.fc-row a:hover { color: var(--gold); }

.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .78rem; color: var(--text-muted); opacity: .6; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .78rem; color: var(--text-muted); opacity: .6; }
.footer-legal a:hover { opacity: 1; color: var(--gold); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .class-detail-layout { grid-template-columns: 1fr; }
  .class-sidebar { position: static; }
  .about-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-list { display: none; }
  .ham { display: flex; }
  section { padding: 70px 4%; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-bar { gap: 28px; }
}

@media (max-width: 480px) {
  .site-nav { padding: 0 4%; }
  section { padding: 60px 4%; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .footer-legal { flex-direction: column; align-items: center; }
}
