/* ============================================================
   KEBROM NEGUSE — OFFICIAL FIGHTER WEBSITE
   Design system: high-contrast dark theme
   Rich black #0A0A0C · Charcoal #16181D · Teal #00D2C8 · Red #FF3355
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --bg: #0A0A0C;
  --bg-2: #16181D;
  --bg-3: #101216;
  --text: #FFFFFF;
  --muted: #94A3B8;
  --teal: #00D2C8;
  --teal-dim: rgba(0, 210, 200, 0.14);
  --red: #FF3355;
  --red-dim: rgba(255, 51, 85, 0.14);
  --border: #262931;
  --border-soft: #1E2128;
  --radius: 8px;
  --radius-sm: 4px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  --font-head: "Oswald", "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Inter", "Manrope", "Roboto", system-ui, sans-serif;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--teal); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: #ffffff; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  text-transform: uppercase;
  line-height: 1.12;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: var(--text);
}

h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { color: var(--muted); }
strong { color: var(--text); }

::selection { background: var(--teal); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Utilities ---------- */
.container { width: min(1200px, 92%); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 110px) 0; position: relative; }
.section-alt { background: var(--bg-2); }
.section-tight { padding: clamp(40px, 6vw, 72px) 0; }

.text-teal { color: var(--teal) !important; }
.text-red { color: var(--red) !important; }
.text-muted { color: var(--muted) !important; }
.center { text-align: center; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.kicker::before { content: ""; width: 34px; height: 2px; background: var(--red); display: inline-block; }
.kicker.center::after { content: ""; width: 34px; height: 2px; background: var(--red); display: inline-block; }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head h2 { margin-bottom: 14px; }
.section-head p { font-size: 1.05rem; }
.section-head.center { margin-inline: auto; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 2000;
  background: var(--teal); color: var(--bg); padding: 10px 18px;
  font-weight: 700; border-radius: var(--radius-sm);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head);
  font-size: 0.92rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  padding: 15px 30px; border-radius: var(--radius-sm);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
  min-height: 48px;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--teal); color: var(--bg); }
.btn-primary:hover { background: #2ee0d7; color: var(--bg); box-shadow: 0 8px 28px rgba(0, 210, 200, 0.35); }

.btn-accent { background: var(--red); color: #fff; }
.btn-accent:hover { background: #ff4d6b; color: #fff; box-shadow: 0 8px 28px rgba(255, 51, 85, 0.35); }

.btn-outline { border-color: var(--teal); color: var(--teal); background: transparent; }
.btn-outline:hover { background: var(--teal-dim); color: var(--teal); }

.btn-ghost { border-color: var(--border); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

.btn-sm { padding: 10px 18px; font-size: 0.8rem; min-height: 40px; }
.btn-lg { padding: 18px 38px; font-size: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 10, 12, 0.92);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom-color: var(--border-soft);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
}

.header-inner {
  width: min(1280px, 94%); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { width: 46px; height: 46px; border-radius: 6px; flex: none; }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name strong {
  font-family: var(--font-head); font-size: 1.05rem; letter-spacing: 0.08em;
  text-transform: uppercase; white-space: nowrap;
}
.brand-name span { font-size: 0.62rem; color: var(--teal); letter-spacing: 0.2em; text-transform: uppercase; white-space: nowrap; }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  color: #D7DEE8; font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--teal); transition: width .25s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--teal); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 16px; }

.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 6px;
  width: 44px; height: 44px; background: transparent; border: 1px solid var(--border);
  border-radius: 6px; cursor: pointer; padding: 10px;
}
.hamburger span { display: block; height: 2px; width: 100%; background: var(--text); transition: transform .3s var(--ease), opacity .2s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  overflow: hidden; isolation: isolate;
}
.hero-slides { position: absolute; inset: 0; z-index: -2; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 9s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,10,12,0.55) 0%, rgba(10,10,12,0.35) 40%, rgba(10,10,12,0.92) 100%),
    linear-gradient(90deg, rgba(10,10,12,0.75) 0%, rgba(10,10,12,0.15) 60%);
}

.hero-content { width: min(1200px, 92%); margin-inline: auto; padding: calc(var(--header-h) + 40px) 0 110px; }

.hero-micro {
  display: inline-block; color: var(--red); font-family: var(--font-head);
  text-transform: uppercase; letter-spacing: 0.3em; font-size: 0.78rem;
  border: 1px solid rgba(255, 51, 85, 0.5); padding: 7px 14px; border-radius: 999px;
  background: rgba(255, 51, 85, 0.08); margin-bottom: 26px;
}
.hero h1 { font-size: clamp(3.2rem, 10vw, 7rem); line-height: 0.98; letter-spacing: 0.01em; }
.hero h1 .accent { color: var(--teal); }
.hero-desc {
  font-family: var(--font-head); font-size: clamp(1rem, 2.4vw, 1.5rem);
  letter-spacing: 0.32em; color: #fff; margin: 18px 0 10px; text-transform: uppercase;
}
.hero-statement { max-width: 640px; color: #CBD5E1; font-size: clamp(1rem, 1.8vw, 1.18rem); font-weight: 500; margin-bottom: 38px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-nav {
  position: absolute; left: 0; right: 0; bottom: 44px;
  width: min(1200px, 92%); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.hero-dots { display: flex; gap: 10px; }
.hero-dots button {
  width: 34px; height: 4px; border: 0; border-radius: 2px; cursor: pointer;
  background: rgba(255, 255, 255, 0.28); transition: background .25s;
  padding: 0;
}
.hero-dots button.active { background: var(--teal); }
.hero-arrows { display: flex; gap: 10px; }
.hero-arrows button {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3); background: rgba(10, 10, 12, 0.4);
  color: #fff; font-size: 1.1rem; cursor: pointer; display: grid; place-items: center;
  transition: border-color .2s, background .2s, color .2s;
}
.hero-arrows button:hover { border-color: var(--teal); color: var(--teal); }

/* ---------- Cards ---------- */
.card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); border-color: var(--teal); box-shadow: var(--shadow); }

/* ---------- Stats ---------- */
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
}
.stat-card { text-align: center; padding: 30px 18px; border-top: 3px solid var(--border); }
.stat-card.teal { border-top-color: var(--teal); }
.stat-card.red { border-top-color: var(--red); }
.stat-num {
  font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700; line-height: 1; color: var(--text);
}
.stat-card.teal .stat-num { color: var(--teal); }
.stat-card.red .stat-num { color: var(--red); }
.stat-label { margin-top: 8px; color: var(--muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em; }

.wl-bar {
  display: flex; height: 26px; border-radius: 4px; overflow: hidden; background: var(--bg-3);
  margin: 22px 0 14px; border: 1px solid var(--border-soft);
}
.wl-bar .seg { transition: width 1.2s var(--ease); }
.wl-bar .w { background: var(--teal); }
.wl-bar .l { background: var(--red); }
.wl-bar .d { background: #475569; }
.wl-legend { display: flex; flex-wrap: wrap; gap: 22px; color: var(--muted); font-size: 0.85rem; }
.wl-legend span { display: inline-flex; align-items: center; gap: 8px; }
.wl-legend i { width: 12px; height: 12px; border-radius: 3px; display: inline-block; }
.wl-legend .w { background: var(--teal); }
.wl-legend .l { background: var(--red); }
.wl-legend .d { background: #475569; }

/* ---------- Discipline chips / pills ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 999px;
  border: 1px solid var(--border); color: var(--muted); background: var(--bg-3);
}
.chip.mt { color: var(--teal); border-color: rgba(0, 210, 200, 0.45); }
.chip.kb { color: #7DD3FC; border-color: rgba(125, 211, 252, 0.4); }
.chip.mma { color: var(--red); border-color: rgba(255, 51, 85, 0.5); }

.pill {
  font-family: var(--font-head); font-size: 0.8rem; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 9px 18px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--bg-3); color: var(--muted);
  cursor: pointer; transition: all .2s var(--ease);
}
.pill:hover { border-color: var(--teal); color: var(--teal); }
.pill.active { background: var(--teal); border-color: var(--teal); color: var(--bg); font-weight: 600; }

/* ---------- Result badges ---------- */
.badge {
  display: inline-block; font-family: var(--font-head); font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--radius-sm);
}
.badge.w { background: var(--teal); color: var(--bg); }
.badge.l { background: var(--red); color: #fff; }
.badge.d { background: #475569; color: #fff; }
.badge.u { background: var(--bg-3); color: var(--muted); border: 1px solid var(--border); }

/* ---------- Records table ---------- */
.record-wrap { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.record-table { width: 100%; border-collapse: collapse; }
.record-table th {
  text-align: left; font-family: var(--font-head); font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  padding: 16px 20px; border-bottom: 1px solid var(--border); background: var(--bg-3);
}
.record-table td { padding: 18px 20px; border-bottom: 1px solid var(--border-soft); vertical-align: middle; }
.record-table tr:last-child td { border-bottom: 0; }
.record-table tbody tr { transition: background .2s; }
.record-table tbody tr:hover { background: rgba(0, 210, 200, 0.05); }
.record-table .opp { font-weight: 600; color: var(--text); font-size: 0.98rem; }
.record-table .opp small { display: block; color: var(--muted); font-weight: 400; font-size: 0.78rem; margin-top: 2px; }
.record-table .tbl-note { color: var(--muted); font-size: 0.85rem; }

.filters { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 26px; }
.filters .select-wrap { position: relative; }
.filters select {
  appearance: none; -webkit-appearance: none;
  background: var(--bg-3) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='2' fill='none' stroke-linecap='round'/></svg>") no-repeat right 14px center;
  border: 1px solid var(--border); color: var(--muted); font-family: var(--font-head);
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 9px 38px 9px 18px; border-radius: 999px; cursor: pointer;
}

/* ---------- Video cards ---------- */
.video-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px;
}
.video-card { overflow: hidden; padding: 0; }
.video-card .thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #000; }
.video-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease), opacity .3s; }
.video-card:hover .thumb img { transform: scale(1.05); }
.play-btn {
  position: absolute; inset: 0; margin: auto; width: 64px; height: 64px;
  border-radius: 50%; border: 0; cursor: pointer; display: grid; place-items: center;
  background: rgba(255, 51, 85, 0.92); color: #fff;
  transition: transform .2s var(--ease), background .2s;
}
.play-btn::before { content: ""; position: absolute; inset: -8px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); }
.video-card:hover .play-btn { transform: scale(1.1); background: var(--red); }
.play-btn svg { width: 22px; height: 22px; margin-left: 3px; }
.video-card .body { padding: 20px 22px 24px; }
.video-card .title { font-family: var(--font-head); text-transform: uppercase; font-size: 1.02rem; letter-spacing: 0.03em; margin: 10px 0 8px; color: var(--text); }
.video-card .desc { font-size: 0.88rem; color: var(--muted); }
.video-card .meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.video-frame-wrap { position: relative; padding-top: 56.25%; background: #000; }
.video-frame-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Media gallery ---------- */
.media-grid { columns: 3 300px; column-gap: 18px; }
.media-item {
  break-inside: avoid; margin-bottom: 18px; position: relative; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--border-soft);
  background: var(--bg-2); cursor: zoom-in;
}
.media-item img { width: 100%; transition: transform .5s var(--ease), opacity .3s; }
.media-item:hover img { transform: scale(1.04); }
.media-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 40px 16px 14px;
  background: linear-gradient(transparent, rgba(10,10,12,0.92));
  color: #fff; font-size: 0.82rem; line-height: 1.4;
  opacity: 0; transform: translateY(8px); transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.media-item:hover figcaption, .media-item:focus-within figcaption { opacity: 1; transform: translateY(0); }
.media-item .cat-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(10,10,12,0.8); color: var(--teal); border: 1px solid rgba(0,210,200,.4);
  font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 2000; background: rgba(6, 6, 8, 0.97);
  display: none; align-items: center; justify-content: center; flex-direction: column;
  padding: 40px 16px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(92vw, 1200px); max-height: 78vh; object-fit: contain; border-radius: 6px; }
.lb-caption { margin-top: 18px; color: #D7DEE8; font-size: 0.95rem; max-width: 640px; text-align: center; }
.lb-count { color: var(--muted); font-size: 0.8rem; letter-spacing: 0.2em; margin-top: 6px; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(22, 24, 29, 0.9); color: #fff; border: 1px solid var(--border);
  border-radius: 50%; width: 52px; height: 52px; cursor: pointer; display: grid; place-items: center;
  font-size: 1.15rem; transition: border-color .2s, color .2s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { border-color: var(--teal); color: var(--teal); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }

/* ---------- Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.post-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.post-card .thumb { aspect-ratio: 16/10; overflow: hidden; background: #000; }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post-card:hover .thumb img { transform: scale(1.05); }
.post-card .body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-card .title { font-size: 1.15rem; margin: 10px 0 10px; }
.post-card .title a { color: var(--text); }
.post-card .title a:hover { color: var(--teal); }
.post-card .excerpt { font-size: 0.9rem; margin-bottom: 18px; }
.post-card .read-more { margin-top: auto; font-family: var(--font-head); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); display: inline-flex; align-items: center; gap: 8px; }
.post-card .read-more:hover { color: #fff; }
.post-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; }
.post-featured { display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; overflow: hidden; }
.post-featured .thumb { aspect-ratio: auto; min-height: 380px; }
.post-featured .body { padding: clamp(28px, 4vw, 48px); justify-content: center; }

/* ---------- Article page ---------- */
.article-hero { padding-top: calc(var(--header-h) + 70px); padding-bottom: 40px; }
.article-body { max-width: 760px; margin-inline: auto; }
.article-body h2 { font-size: 1.6rem; margin: 42px 0 16px; }
.article-body h3 { font-size: 1.2rem; margin: 34px 0 12px; }
.article-body p { margin-bottom: 20px; font-size: 1.03rem; }
.article-body figure { margin: 30px 0; }
.article-body figcaption { color: var(--muted); font-size: 0.82rem; margin-top: 10px; text-align: center; }
.article-body blockquote {
  border-left: 3px solid var(--red); background: var(--bg-2);
  padding: 22px 26px; margin: 30px 0; font-size: 1.1rem; color: #E2E8F0; font-style: italic;
}
.share-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 40px 0; padding: 24px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .full { grid-column: 1 / -1; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-family: var(--font-head); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: #D7DEE8; }
.form-field label .req { color: var(--red); }
.form-field .hint { color: var(--muted); font-size: 0.78rem; }
.form-field input, .form-field select, .form-field textarea {
  background: var(--bg-3); border: 1px solid var(--border); color: var(--text);
  border-radius: 6px; padding: 14px 16px; font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color .2s, box-shadow .2s; width: 100%;
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0, 210, 200, 0.15);
}
.form-field select option { background: var(--bg-2); }
.form-field.invalid input, .form-field.invalid select, .form-field.invalid textarea { border-color: var(--red); }
.error-msg { color: var(--red); font-size: 0.8rem; display: none; }
.form-field.invalid .error-msg { display: block; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-success {
  display: none; background: rgba(0, 210, 200, 0.1); border: 1px solid var(--teal);
  color: var(--teal); border-radius: var(--radius); padding: 22px 26px; margin-top: 24px; font-weight: 600;
}
.form-success.show { display: block; }

/* ---------- Contact cards ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.contact-card .icon {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: var(--teal-dim); color: var(--teal); margin-bottom: 18px;
}
.contact-card.red .icon { background: var(--red-dim); color: var(--red); }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.contact-card a.email { color: #D7DEE8; font-size: 0.92rem; word-break: break-all; }
.contact-card a.email:hover { color: var(--teal); }

/* ---------- Social ---------- */
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--muted); background: var(--bg-3);
  transition: all .2s var(--ease);
}
.social-row a:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-3px); }
.social-row svg { width: 19px; height: 19px; }

/* ---------- Footer ---------- */
.site-footer { background: #0D0E11; border-top: 1px solid var(--border-soft); padding-top: 64px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid var(--border-soft);
}
.footer-brand img { width: 56px; height: 56px; border-radius: 8px; margin-bottom: 16px; }
.footer-brand h3 { font-size: 1.35rem; margin-bottom: 6px; }
.footer-brand .tagline { color: var(--teal); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col h4 { font-size: 0.86rem; color: #fff; margin-bottom: 18px; letter-spacing: 0.14em; }
.footer-col a { display: block; color: var(--muted); font-size: 0.9rem; padding: 5px 0; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
  padding: 24px 0; color: var(--muted); font-size: 0.82rem;
}
.footer-bottom nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--teal); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; padding: calc(var(--header-h) + 70px) 0 64px;
  background: radial-gradient(1000px 420px at 80% -10%, rgba(0, 210, 200, 0.12), transparent 60%),
              radial-gradient(800px 380px at 10% 110%, rgba(255, 51, 85, 0.1), transparent 60%), var(--bg);
  border-bottom: 1px solid var(--border-soft);
}
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
.page-hero .lead { max-width: 640px; margin-top: 14px; }
.crumbs { color: var(--muted); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--teal); }

/* ---------- Work with us ---------- */
.offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.offer-card { padding: 30px; }
.offer-card .icon { width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center; background: var(--red-dim); color: var(--red); margin-bottom: 18px; }
.offer-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.offer-card ul li { color: var(--muted); font-size: 0.92rem; padding: 6px 0 6px 22px; position: relative; }
.offer-card ul li::before { content: ""; position: absolute; left: 0; top: 15px; width: 7px; height: 7px; background: var(--teal); border-radius: 2px; }

.booking-list { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; }
.booking-list h3 { margin-bottom: 16px; }
.booking-list ul li { color: var(--muted); padding: 7px 0 7px 24px; position: relative; font-size: 0.95rem; }
.booking-list ul li::before { content: "›"; position: absolute; left: 0; color: var(--red); font-size: 1.1rem; }
.booking-list ul li strong { color: #E2E8F0; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; padding: clamp(60px, 8vw, 96px) 0; text-align: center;
  background: radial-gradient(700px 300px at 50% -20%, rgba(255, 51, 85, 0.16), transparent 65%), var(--bg-2);
  border-block: 1px solid var(--border-soft);
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { max-width: 560px; margin: 0 auto 30px; }

/* ---------- Misc ---------- */
.titles-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.title-card { text-align: center; padding: 26px 18px; }
.title-card .trophy { font-size: 1.8rem; margin-bottom: 10px; }
.title-card h4 { font-size: 0.98rem; letter-spacing: 0.08em; }
.title-card p { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; margin-top: 8px; color: var(--teal); }

.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); border: 1px solid var(--border); }
.about-media::after {
  content: ""; position: absolute; inset: 18px -18px -18px 18px; z-index: -1;
  border: 1px solid var(--teal); border-radius: var(--radius); opacity: 0.5;
}
.about-body h2 { margin-bottom: 18px; }
.about-body p { margin-bottom: 16px; }
.about-body ul { margin: 8px 0 22px; }
.about-body ul li { color: var(--muted); padding: 5px 0 5px 24px; position: relative; }
.about-body ul li::before { content: ""; position: absolute; left: 0; top: 14px; width: 8px; height: 8px; background: var(--red); transform: rotate(45deg); }

.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); display: none; }
.empty-state.show { display: block; }

.search-box {
  display: flex; align-items: center; gap: 10px; background: var(--bg-3);
  border: 1px solid var(--border); border-radius: 999px; padding: 0 18px; flex: 1; min-width: 220px; max-width: 380px;
}
.search-box input { background: transparent; border: 0; color: var(--text); padding: 12px 0; font-size: 0.92rem; width: 100%; }
.search-box input:focus { outline: none; }
.search-box svg { width: 18px; height: 18px; color: var(--muted); flex: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; gap: 0;
    background: rgba(10, 10, 12, 0.98); border-bottom: 1px solid var(--border);
    padding: 12px 6% 26px; align-items: stretch;
    transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: all .3s var(--ease);
  }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .main-nav a { padding: 15px 4px; border-bottom: 1px solid var(--border-soft); font-size: 0.95rem; }
  .main-nav a::after { display: none; }
  .hamburger { display: flex; }
  .header-cta .btn { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .post-featured { grid-template-columns: 1fr; }
  .post-featured .thumb { min-height: 260px; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero-content { padding-top: calc(var(--header-h) + 30px); padding-bottom: 90px; }
  .hero-nav { flex-direction: column-reverse; align-items: flex-start; gap: 14px; bottom: 30px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .record-table thead { display: none; }
  .record-table, .record-table tbody, .record-table tr, .record-table td { display: block; width: 100%; }
  .record-table tr { padding: 16px 18px; border-bottom: 1px solid var(--border); }
  .record-table td { padding: 6px 0; border: 0; display: flex; justify-content: space-between; gap: 14px; text-align: right; }
  .record-table td::before {
    content: attr(data-label); font-family: var(--font-head); font-size: 0.72rem;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); flex: none;
  }
  .record-table td.opp-cell { display: block; text-align: left; }
  .record-table td.opp-cell::before { display: none; }
  .video-grid, .post-grid { grid-template-columns: 1fr; }
  .lb-prev { left: 6px; } .lb-next { right: 6px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   THE PREDATOR — fighter profile additions
   ============================================================ */

.profile-grid { display: grid; grid-template-columns: 1fr 1.18fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.profile-photo { position: relative; }
.profile-photo img { border-radius: var(--radius); border: 1px solid var(--border); width: 100%; }
.profile-photo::before {
  content: ""; position: absolute; inset: -16px 16px 16px -16px;
  border: 1px solid var(--red); border-radius: var(--radius); z-index: -1; opacity: 0.55;
}
.profile-photo .predator-tag {
  position: absolute; bottom: 20px; left: -12px;
  background: var(--teal); color: var(--bg);
  font-family: var(--font-head); font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; font-size: 0.8rem; padding: 9px 18px;
  border-radius: var(--radius-sm); box-shadow: var(--shadow);
}
.profile-title { font-size: clamp(2rem, 4.6vw, 3.2rem); margin-bottom: 14px; }
.profile-title .pred { color: var(--red); }
.profile-grid > div:last-child > p { margin-bottom: 20px; }

.fact-grid {
  display: grid; grid-template-columns: 1fr 1fr; margin: 26px 0 22px;
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--bg-2);
}
.fact-row { padding: 14px 18px; border-bottom: 1px solid var(--border-soft); }
.fact-row:nth-child(odd) { border-right: 1px solid var(--border-soft); }
.fact-row dt { color: var(--muted); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 4px; }
.fact-row dd { font-weight: 600; font-size: 0.95rem; color: var(--text); }

.record-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.record-chip { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 10px; text-align: center; }
.record-chip b { display: block; font-family: var(--font-head); font-size: 2rem; line-height: 1; color: var(--text); }
.record-chip span { color: var(--muted); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.18em; }
.record-chip.w b { color: var(--teal); }
.record-chip.l b { color: var(--red); }

.style-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.style-card { padding: 28px; }
.style-icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.5rem; background: var(--teal-dim); border: 1px solid rgba(0, 210, 200, 0.35); margin-bottom: 16px;
}
.style-card:nth-child(even) .style-icon { background: var(--red-dim); border-color: rgba(255, 51, 85, 0.35); }
.style-card h3 { font-size: 1.02rem; margin-bottom: 10px; }
.style-card p { font-size: 0.9rem; }

.weapon-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.weapon-chip {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.82rem;
  padding: 12px 22px; border-radius: 999px; border: 1px solid rgba(0, 210, 200, 0.45);
  background: rgba(0, 210, 200, 0.07); color: var(--teal); transition: all 0.2s var(--ease);
}
.weapon-chip:hover { background: var(--teal); color: var(--bg); transform: translateY(-2px); }

.country-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.country-chip {
  display: inline-flex; align-items: center; gap: 9px; font-size: 0.9rem; font-weight: 600;
  padding: 10px 18px; border-radius: 999px; background: var(--bg-3); border: 1px solid var(--border); color: #E2E8F0;
}
.flag { font-size: 1.05rem; line-height: 1; }

.exp-list { display: flex; flex-direction: column; gap: 12px; }
.exp-row {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px 20px; transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.exp-row:hover { border-color: var(--teal); transform: translateX(6px); }
.exp-row .opp { font-weight: 700; font-size: 0.98rem; flex: 1; min-width: 150px; color: var(--text); }
.exp-row .note { color: var(--muted); font-size: 0.84rem; }

.spar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.spar-card { text-align: center; padding: 30px 18px; }
.spar-card h4 { font-size: 1.15rem; letter-spacing: 0.06em; }
.spar-card p { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--teal); margin-top: 8px; }

.mentality-band {
  position: relative; overflow: hidden; padding: clamp(80px, 12vw, 150px) 0; text-align: center;
  background:
    radial-gradient(900px 400px at 50% -10%, rgba(255, 51, 85, 0.14), transparent 60%),
    radial-gradient(700px 360px at 50% 120%, rgba(0, 210, 200, 0.12), transparent 60%),
    var(--bg);
  border-block: 1px solid var(--border-soft);
}
.mentality-band .big {
  font-family: var(--font-head); font-size: clamp(2.6rem, 9vw, 6.2rem);
  text-transform: uppercase; line-height: 1; letter-spacing: 0.04em; margin-top: 10px;
}
.mentality-band .big .w1 { color: var(--text); }
.mentality-band .big .w2 { color: var(--teal); }
.mentality-band .big .w3 { color: var(--red); }
.mentality-band .lead2 { max-width: 660px; margin: 28px auto 8px; color: #CBD5E1; font-size: 1.05rem; }
.mentality-band .closer { margin-top: 36px; color: var(--muted); font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase; line-height: 2; }
.mentality-band .closer strong { color: var(--text); }

@media (max-width: 768px) {
  .profile-grid { grid-template-columns: 1fr; }
  .fact-grid { grid-template-columns: 1fr; }
  .fact-row:nth-child(odd) { border-right: 0; }
  .spar-grid { grid-template-columns: 1fr; }
}

/* ---------- Language switcher ---------- */
.lang-switch { display: flex; gap: 6px; align-items: center; }
.lang-btn {
  width: 34px; height: 24px; padding: 0; border: 1px solid var(--border); border-radius: 4px;
  background: var(--bg-3); cursor: pointer; overflow: hidden; line-height: 0;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s;
}
.lang-btn svg { width: 100%; height: 100%; display: block; }
.lang-btn:hover { border-color: var(--teal); transform: translateY(-2px); }
.lang-btn.active { border-color: var(--teal); box-shadow: 0 0 0 2px rgba(0, 210, 200, 0.25); }
@media (max-width: 640px) { .lang-switch { order: -1; } }
