/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:    #FFA100;
  --red-dk: #cc8100;
  --black:  #111111;
  --dark:   #1a1a1a;
  --gray:   #2c2c2c;
  --mid:    #555;
  --light:  #f5f5f5;
  --white:  #ffffff;
  --font-head: 'Bebas Neue', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Inter', Arial, sans-serif;
  --nav-h: 68px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.7;
}

a { color: var(--red); text-decoration: none; }
a:hover { color: #ffb733; text-decoration: underline; }

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600&display=swap');

/* ── Nav ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(10,10,10,0.97);
  border-bottom: 2px solid var(--red);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  gap: 1rem;
}

.nav-brand {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none; color: var(--white);
}
.nav-brand img { height: 40px; width: auto; }
.nav-brand-text { font-family: var(--font-head); font-size: 1.3rem; letter-spacing: 0.05em; line-height: 1.1; }
.nav-brand-sub { font-size: 0.65rem; color: #aaa; font-family: var(--font-body); letter-spacing: 0.08em; text-transform: uppercase; }

.nav-links { display: flex; gap: 0.25rem; list-style: none; }
.nav-links a {
  color: #ccc; text-decoration: none; font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.4rem 0.8rem; border-radius: 3px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: var(--red); }

.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.6rem; cursor: pointer; padding: 0.25rem; }

/* ── Hero ── */
.hero {
  margin-top: var(--nav-h);
  background: linear-gradient(135deg, var(--black) 0%, var(--dark) 50%, #1a0f00 100%);
  min-height: 420px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  position: relative; overflow: hidden;
  padding: 4rem 2rem;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px, transparent 40px,
    rgba(255,161,0,0.04) 40px, rgba(255,161,0,0.04) 41px
  );
}
.hero-inner { position: relative; z-index: 1; }
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--white);
}
.hero h1 span { color: var(--red); }
.hero-sub {
  font-size: 1rem; color: #aaa; margin-top: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.hero-badges { display: flex; gap: 1rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
.badge {
  border: 1px solid var(--red); color: var(--red);
  padding: 0.35rem 1rem; border-radius: 2px;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
}

/* ── Page header (non-home) ── */
.page-header {
  margin-top: var(--nav-h);
  background: var(--dark);
  border-bottom: 2px solid var(--red);
  padding: 2.5rem 2rem;
  text-align: center;
}
.page-header h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.06em;
  color: var(--white);
}
.page-header p { color: #aaa; margin-top: 0.35rem; font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* ── Main content wrapper ── */
.main { max-width: 900px; margin: 0 auto; padding: 3rem 1.5rem; }
.main-wide { max-width: 1100px; margin: 0 auto; padding: 3rem 1.5rem; }

/* ── Section titles ── */
.section-title {
  font-family: var(--font-head);
  font-size: 2rem; letter-spacing: 0.05em;
  color: var(--white);
  border-left: 4px solid var(--red);
  padding-left: 0.75rem;
  margin-bottom: 1.25rem;
}

/* ── Cards ── */
.card {
  background: var(--dark);
  border: 1px solid var(--gray);
  border-radius: 4px;
  padding: 1.5rem;
}
.card + .card { margin-top: 1rem; }

/* ── Activity list ── */
.activity-list { list-style: none; }
.activity-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray);
  font-size: 0.95rem;
  color: #ddd;
  display: flex; gap: 0.5rem;
}
.activity-list li::before { content: '▸'; color: var(--red); flex-shrink: 0; }

/* ── Training table ── */
.training-table {
  width: 100%; border-collapse: collapse; margin-bottom: 2rem;
}
.training-table th {
  background: var(--red); color: var(--white);
  font-family: var(--font-head); letter-spacing: 0.08em; font-size: 1rem;
  padding: 0.75rem 1rem; text-align: left;
}
.training-table td {
  padding: 0.9rem 1rem; border-bottom: 1px solid var(--gray);
  color: #ddd; font-size: 0.95rem;
}
.training-table tr:last-child td { border-bottom: none; }
.training-table tr:hover td { background: rgba(255,161,0,0.06); }

/* ── Location cards ── */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; }
.location-card {
  background: var(--dark); border: 1px solid var(--gray); border-radius: 4px;
  overflow: hidden;
}
.location-card iframe { width: 100%; height: 180px; border: none; display: block; }
.location-info { padding: 1rem 1.25rem; }
.location-info h3 { font-family: var(--font-head); font-size: 1.3rem; letter-spacing: 0.04em; color: var(--red); margin-bottom: 0.25rem; }
.location-info p { font-size: 0.9rem; color: #bbb; }
.location-info a { color: var(--red); font-size: 0.85rem; display: inline-block; margin-top: 0.4rem; }

/* ── Downloads ── */
.download-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0.75rem; }
.download-list li a {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--dark); border: 1px solid var(--gray); border-radius: 4px;
  padding: 0.75rem 1rem; color: #ddd; font-size: 0.9rem;
  transition: border-color 0.15s, color 0.15s;
  text-decoration: none;
}
.download-list li a:hover { border-color: var(--red); color: var(--white); }
.download-list li a::before { content: '↓'; color: var(--red); font-weight: 700; font-size: 1rem; flex-shrink: 0; }

/* ── Pricing ── */
.price-box { background: var(--dark); border: 1px solid var(--gray); border-radius: 4px; padding: 1.5rem; }
.price-box ul { list-style: none; margin-top: 0.75rem; }
.price-box ul li {
  padding: 0.4rem 0; border-bottom: 1px solid var(--gray);
  font-size: 0.95rem; color: #ddd;
}
.price-box ul li:last-child { border-bottom: none; }
.price-box ul li strong { color: var(--white); }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.trainer-card {
  background: var(--dark); border: 1px solid var(--gray); border-radius: 4px;
  padding: 1.25rem 1.5rem; display: flex; gap: 1rem; align-items: flex-start;
}
.trainer-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--red); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.2rem; color: var(--white); flex-shrink: 0;
}
.trainer-info h3 { font-size: 1rem; font-weight: 600; color: var(--white); }
.trainer-info p { font-size: 0.85rem; color: #aaa; }

/* ── Gallery grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 6px;
}
.gallery-thumb {
  aspect-ratio: 4/3; overflow: hidden; border-radius: 3px;
  cursor: pointer; background: var(--gray); position: relative;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.25s; }
.gallery-thumb:hover img { transform: scale(1.06); }
.gallery-thumb .g-overlay {
  position: absolute; inset: 0; background: rgba(255,161,0,0);
  transition: background 0.2s;
}
.gallery-thumb:hover .g-overlay { background: rgba(255,161,0,0.2); }

.gallery-note {
  text-align: center; padding: 3rem; color: #555; font-size: 0.95rem;
}
.gallery-note strong { color: #aaa; display: block; margin-bottom: 0.5rem; font-size: 1rem; }

/* ── Lightbox ── */
.lb {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 999; opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.lb.open { opacity: 1; pointer-events: all; }
.lb-top {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px; color: #fff; font-size: 13px; flex-shrink: 0;
}
.lb-close {
  background: none; border: none; color: #fff; font-size: 1.5rem;
  cursor: pointer; padding: 4px 10px; border-radius: 4px; line-height: 1;
}
.lb-close:hover { background: var(--red); }
.lb-body {
  flex: 1; display: flex; align-items: center; justify-content: center;
  width: 100%; gap: 12px; padding: 0 8px; min-height: 0;
}
.lb-nav {
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  font-size: 1.4rem; cursor: pointer; border-radius: 50%;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.15s;
}
.lb-nav:hover { background: var(--red); }
.lb-img-wrap { flex: 1; display: flex; align-items: center; justify-content: center; max-height: 72vh; }
.lb-img-wrap img { max-width: 100%; max-height: 72vh; object-fit: contain; border-radius: 3px; display: block; }
.lb-strip {
  display: flex; gap: 5px; padding: 10px 16px;
  overflow-x: auto; width: 100%; flex-shrink: 0;
  scrollbar-width: thin;
}
.lb-strip::-webkit-scrollbar { height: 3px; }
.lb-strip::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }
.lb-strip img {
  width: 72px; height: 50px; object-fit: cover; border-radius: 2px;
  cursor: pointer; opacity: 0.45; transition: opacity 0.15s; flex-shrink: 0;
  border: 2px solid transparent;
}
.lb-strip img.active { opacity: 1; border-color: var(--red); }

/* ── Footer ── */
footer {
  background: var(--dark); border-top: 2px solid var(--red);
  text-align: center; padding: 1.5rem;
  font-size: 0.8rem; color: #555;
  margin-top: 4rem;
}
footer a { color: #777; }

/* ── Divider ── */
.divider { border: none; border-top: 1px solid var(--gray); margin: 2.5rem 0; }

/* ── Spacing helpers ── */
.mt1 { margin-top: 1rem; }
.mt2 { margin-top: 2rem; }
.mb1 { margin-bottom: 1rem; }

/* ── Responsive ── */
@media (max-width: 700px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: #0a0a0a; border-bottom: 2px solid var(--red); padding: 1rem; gap: 0.25rem; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .location-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}

/* ── Logo watermark background ── */
.logo-bg {
  position: fixed;
  inset: 0;
  background-image: url('logo-white.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 70vmin;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

body > *:not(.logo-bg) {
  position: relative;
  z-index: 1;
}
