:root {
  --bg: #080a08;
  --panel: #101510;
  --panel-2: #151c16;
  --text: #f3f6ef;
  --muted: #b8c0b0;
  --line: rgba(243, 246, 239, 0.12);
  --accent: #26b96f;
  --accent-2: #b7ff32;
  --accent-dark: #082714;
  --danger: #ff4136;
  --max: 1180px;
}

@font-face {
  font-family: "Anton";
  src: url("../fonts/Anton-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Anton", "Barlow Condensed", "Oswald", Arial, sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
li,
input,
select,
textarea,
button {
  font-family: Arial, sans-serif;
  letter-spacing: 0;
}

p,
li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 10, 8, 0.9);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 112px;
  height: auto;
  display: block;
}

.logo-mark {
  width: 82px;
  height: 54px;
  border: 3px solid var(--text);
  border-radius: 999px;
  display: grid;
  place-items: center;
  position: relative;
  background: #060806;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.12);
}

.logo-main {
  color: var(--accent);
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 900;
  font-family: "Anton", "Barlow Condensed", Arial, sans-serif;
}

.logo-top,
.logo-sub {
  position: absolute;
  color: var(--text);
  font-size: 0.5rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  font-family: "Anton", "Barlow Condensed", Arial, sans-serif;
}

.logo-top {
  top: 6px;
}

.logo-sub {
  bottom: 6px;
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.95rem;
}

.nav a {
  color: rgba(243, 246, 239, 0.86);
}

.nav a:hover,
.nav a.active {
  color: var(--accent);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 8px;
}

.lang-switch a {
  border: 1px solid var(--line);
  padding: 7px 9px;
  border-radius: 999px;
  font-size: 0.78rem;
}

.lang-switch a.active {
  border-color: var(--accent);
  color: var(--bg);
  background: var(--accent);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
}

.menu-btn span {
  display: block;
  height: 2px;
  width: 20px;
  background: var(--text);
  margin: 5px auto;
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 8, 0.94), rgba(8, 10, 8, 0.58), rgba(8, 10, 8, 0.8)),
    radial-gradient(circle at 72% 24%, rgba(183, 255, 50, 0.18), transparent 34%);
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #172117, #080a08 55%, #202a1e);
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 80px 0 96px;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
}

h1,
h2,
h3 {
  margin: 0;
  text-transform: uppercase;
  line-height: 0.9;
  font-weight: 400;
}

h1 {
  max-width: 980px;
  font-size: clamp(4rem, 12vw, 9.5rem);
}

h2 {
  font-size: clamp(2.6rem, 7vw, 5.8rem);
}

h3 {
  font-size: 2rem;
}

.lead {
  max-width: 760px;
  color: #e3eadb;
  font-size: 1.2rem;
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 0 20px;
  border: 1px solid var(--line);
  text-transform: uppercase;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 400;
}

.btn.primary {
  background: var(--accent-2);
  color: var(--accent-dark);
  border-color: var(--accent-2);
  box-shadow: 0 0 0 1px rgba(8, 39, 20, 0.5), 0 14px 30px rgba(183, 255, 50, 0.12);
}

.btn.secondary {
  background: rgba(243, 246, 239, 0.06);
  color: var(--text);
}

.grid {
  display: grid;
  gap: 18px;
}

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

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 26px;
  overflow: hidden;
}

.card.highlight {
  background: linear-gradient(135deg, rgba(183, 255, 50, 0.16), rgba(21, 28, 22, 0.92));
  border-color: rgba(183, 255, 50, 0.34);
}

.card h3 {
  margin-bottom: 12px;
}

.media-card {
  padding: 0;
}

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  filter: saturate(0.92) contrast(1.04);
}

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

.media-card[href],
.feature-link {
  display: block;
  transition: transform 180ms ease, border-color 180ms ease;
}

.media-card[href]:hover,
.feature-link:hover {
  transform: translateY(-3px);
  border-color: rgba(183, 255, 50, 0.55);
}

.wide-photo {
  min-height: 360px;
  border-radius: 8px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--panel);
}

.wide-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06);
}

.photo-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.photo-strip img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.feature-link {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  min-height: 420px;
  background: var(--panel);
}

.feature-link img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  filter: saturate(0.9) contrast(1.06);
}

.feature-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(5, 7, 5, 0.95), rgba(5, 7, 5, 0));
}

.feature-caption h3,
.feature-caption p {
  max-width: 520px;
}

.mission-bg {
  position: relative;
  overflow: hidden;
}

.mission-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 8, 0.96), rgba(8, 10, 8, 0.72)),
    url("../img/mma-wall-grappling.jpg") center / cover;
  opacity: 1;
}

.mission-bg .section {
  position: relative;
  z-index: 1;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  align-items: stretch;
}

.pricing-grid .card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 300px;
}

.pricing-grid h2 {
  font-size: 2.15rem;
  line-height: 1;
  overflow-wrap: anywhere;
}

.pricing-grid .price {
  font-size: clamp(3.2rem, 6vw, 4.5rem);
  line-height: 0.95;
}

.pricing-grid .btn {
  width: fit-content;
  margin-top: 8px;
}

.meta {
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Anton", "Barlow Condensed", Arial, sans-serif;
}

.page-hero {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(8, 10, 8, 0.96), rgba(8, 10, 8, 0.82)),
    radial-gradient(circle at 80% 20%, rgba(183, 255, 50, 0.18), transparent 36%);
}

.page-hero .section {
  padding-top: 100px;
  padding-bottom: 70px;
}

.content {
  max-width: 900px;
}

.content p {
  font-size: 1.08rem;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.price {
  font-size: 4.5rem;
  line-height: 0.9;
  font-weight: 900;
  color: var(--accent);
  font-family: "Anton", "Barlow Condensed", Arial, sans-serif;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Anton", "Barlow Condensed", Arial, sans-serif;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 48px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #0b0f0b;
  color: var(--text);
  padding: 12px 14px;
  font-size: 1rem;
}

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

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 20px 22px;
}

.faq details + details {
  margin-top: 12px;
}

.faq summary {
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 1.35rem;
}

.footer {
  border-top: 1px solid var(--line);
  background: #050705;
}

.footer .section {
  padding: 42px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.small {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 920px) {
  .menu-btn {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 78px 0 auto 0;
    display: none;
    min-height: calc(100vh - 78px);
    padding: 26px 18px;
    background: rgba(8, 10, 8, 0.98);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.25rem;
  }

  .lang-switch {
    padding: 18px 0 0;
  }

  .lang-switch a {
    border-bottom: 1px solid var(--line);
    padding: 10px 12px;
    width: auto;
  }

  .grid.two,
  .grid.three,
  .pricing-grid,
  .split,
  .photo-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 720px;
  }

  h1 {
    font-size: clamp(3.8rem, 18vw, 7rem);
  }

  .photo-strip img,
  .wide-photo img {
    height: auto;
    min-height: 260px;
  }
}
