/* ACCENT PACK 6: Вариант 6 — монохром (без цвета) */
:root {
  /* Base — dark tiles on light metal page */
  --bg: #0e0e0e;
  --bg-card: #161616;
  --bg-elevated: #1c1c1c;
  --text: #b8b8b8;
  --text-light: #e8e8e8;
  --text-bright: #fff;
  --border: #2a2a2a;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);

  /* Accents: gold primary, burgundy secondary, khaki niche (ARB) */
  --gold: #2A2A2A;
  --gold-deep: #111111;
  --gold-soft: #666666;
  --red: #333333;
  --red-dark: #1a1a1a;
  --yellow: #2A2A2A; /* alias → gold for legacy rules */
  --khaki: #3a3a3a;
  --khaki-deep: #222222;
  --accent: var(--gold);
  --accent-strong: var(--red);

  --font-display: 'Kanit', sans-serif;
  --font-body: 'Kanit', sans-serif;
  --font-heading: 'Kanit', sans-serif;
  --font-section: 'Kanit', sans-serif;
  --title-size: clamp(32px, 4.5vw, 48px);
  --header-logo-height: calc(104px * 0.8 * 4 / 3 * 4 / 3);
  --header-logo-band: calc(var(--header-logo-height) + 8px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-heading);
  background: #9a9ea4;
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* Weathered cast-metal texture */
.metal-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.metal-plate {
  position: absolute;
  inset: 0;
  background: url('/assets/img/metal-texture.jpg?v=2final') center center / cover no-repeat;
  background-attachment: fixed;
  filter: contrast(1.04) brightness(1.03);
}

.metal-plate::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 45%, rgba(0, 0, 0, 0.02) 100%);
  pointer-events: none;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* V3 header */
.site-header {
  position: relative;
  z-index: 1001;
}
.header-logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 8px 24px 4px;
  position: relative;
  z-index: 1;
  background: transparent;
}
.header-logo-row .tagline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
  flex: 0 0 auto;
  font-family: var(--font-heading);
  color: #000;
  font-weight: 700;
  font-style: italic;
  font-size: calc(var(--header-logo-height) * 0.288);
  line-height: 1.1;
  text-transform: uppercase;
}
.header-logo-row .tagline span { display: block; }
.header-logo-row .logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--header-logo-height);
  text-decoration: none;
}
.header-logo-row .logo img {
  height: 100%;
  width: auto;
  display: block;
}

/* Desktop only: stamped text into aluminum (logo stays flat) */
@media (min-width: 993px) {
  .header-logo-row .tagline {
    color: rgba(22, 24, 26, 0.72);
    text-shadow:
      -2.5px -2.5px 0 rgba(0, 0, 0, 0.62),
      -1.5px -1.5px 0 rgba(0, 0, 0, 0.4),
      -0.5px -0.5px 0 rgba(0, 0, 0, 0.25),
      1px 1px 0 rgba(255, 255, 255, 0.95),
      2.5px 2.5px 0 rgba(255, 255, 255, 0.55),
      3.5px 3.5px 3px rgba(255, 255, 255, 0.28),
      0 0 1px rgba(0, 0, 0, 0.35);
    mix-blend-mode: multiply;
  }
}
.header-nav-spacer {
  height: var(--header-nav-height, 44px);
}
.header-main {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1002;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.4s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}
.header-main.is-at-top { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35); }
.header-main.scrolled {
  background: #000;
  backdrop-filter: none;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 6px 24px;
  flex-wrap: wrap;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text-bright);
  transition: 0.3s;
}
.main-nav { margin-left: 0; }
.nav-list { display: flex; list-style: none; gap: 4px; flex-wrap: wrap; justify-content: center; }
.nav-link {
  display: block;
  padding: 8px 12px;
  color: var(--text-bright);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: calc(11px * 1.3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.nav-link:hover { color: #FF1A1A; }
.nav-item { position: relative; }
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: rgba(8, 8, 8, 0.95);
  border: 1px solid var(--glass-border);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.3s;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  z-index: 10;
}
.nav-item:hover .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu a {
  display: block;
  padding: 10px 16px;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 13px;
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.2s, color 0.2s;
}
.sub-menu a:hover { background: #FF1A1A; color: #fff; }

/* V3 hero (без bento) */
.hero {
  position: relative;
  min-height: 80vh;
  padding: 40px 0 44px;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
  background: #0e0e0e; /* solid — hide page metal behind hero */
}
.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0e0e0e;
}
.hero-img-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  filter: contrast(1.1);
  transform-origin: center center;
  will-change: transform, opacity, filter;
  z-index: 0;
}
/* Slide 1: crop from bottom (keep top) */
.hero-img-layer--1 {
  z-index: 1;
  background-position: center top;
}
.hero-img-layer--2 {
  z-index: 2;
  background-position: center center;
}
/* Slide 3 as first deployed: shared hero framing */
.hero-img-layer--3 {
  z-index: 2;
  background-position: center center;
}
.hero-img-layer--4 {
  z-index: 2;
  background-position: center center;
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: #000;
  pointer-events: none;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0, 0, 0, 0.25) 0%, transparent 52%),
    linear-gradient(180deg, rgba(14, 14, 14, 0.75) 0%, transparent 28%, transparent 72%, rgba(14, 14, 14, 0.85) 100%);
}
.floating-shapes {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}
.floating-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: float 8s ease-in-out infinite;
}
.shape-1 { width: 300px; height: 300px; background: var(--gold); opacity: 0.12; top: 20%; right: 10%; }
.shape-2 { width: 200px; height: 200px; background: var(--red); opacity: 0.08; bottom: 20%; left: 5%; animation-delay: -3s; }
.shape-3 { width: 150px; height: 150px; background: var(--gold-soft); opacity: 0.07; top: 50%; left: 40%; animation-delay: -5s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.1); }
}
.hero-content {
  position: relative;
  z-index: 6;
  max-width: 720px;
  width: 100%;
  min-height: clamp(300px, 42vh, 420px);
}
.hero-slide {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  max-width: 720px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
/* Clip edge = bottom of button; text/button rise from below it */
.hero-text-clip {
  overflow: hidden;
  display: inline-block;
  max-width: 100%;
  vertical-align: top;
}
.hero-text-block {
  will-change: transform;
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #FF1A1A;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65);
  margin-bottom: 20px;
}
.hero-label span {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #FF1A1A, #FF6B6B);
}
.hero-text-block h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #c8c8c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text-block p {
  margin-bottom: 32px;
  font-size: 16px;
  max-width: 520px;
  color: #fff;
  font-family: var(--font-heading);
}
.btn-magnetic {
  display: inline-block;
  padding: 3px;
  background: linear-gradient(135deg, #fff, #bbb);
  border-radius: 0;
  text-decoration: none;
  transition: transform 0.3s;
}
.btn-magnetic:hover { transform: scale(1.03); }
.btn-inner {
  display: block;
  padding: 14px 32px;
  background: var(--bg);
  border-radius: 0;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  font-style: italic;
  color: var(--text-bright);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Бегущая строка — бесшовная (без flex gap) */
.disc-marquee {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  overflow: hidden;
  padding: 8px 0;
  background: #111;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}
.marquee-track {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  max-width: none;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  gap: 0;
}
.marquee-track.is-ready {
  animation: marquee-seamless var(--marquee-duration, 28s) linear infinite;
}
@keyframes marquee-seamless {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-1 * var(--marquee-shift, 50%)), 0, 0); }
}
.marquee-half {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  flex-shrink: 0;
  gap: 0;
  margin: 0;
  padding: 0;
}
.marquee-half span,
.marquee-track span {
  font-family: var(--font-heading);
  font-size: calc(var(--title-size) * 0.5);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.02em;
  line-height: 1.1;
  display: block;
  flex-shrink: 0;
  margin: 0;
  padding: 0 72px 0 0; /* spacing included in width — seamless */
  box-sizing: content-box;
}

/* Sections */
.section { padding: 88px 0; position: relative; z-index: 1; }
.disciplines.section {
  padding-top: 56px;
  overflow: visible;
  isolation: isolate;
}
.disciplines .container {
  max-width: calc(1200px * 1.25);
  overflow: visible;
}
.section-head { margin-bottom: 48px; }
.section-head-center { text-align: center; }
.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  box-sizing: border-box;
  width: 300px;
  min-height: 46px;
  padding: 12px 20px;
  margin-bottom: 14px;
  background: #000;
  color: #FF1A1A;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.2;
  border: 1px solid transparent;
  box-shadow: none;
  transition: box-shadow 0.45s ease, border-color 0.45s ease;
}
.section-tag::before {
  content: '';
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #FF1A1A, #FF6B6B);
}
.section-tag::after {
  content: none;
  display: none;
}
.section-tag:hover {
  border-color: rgba(255, 26, 26, 0.95);
  box-shadow:
    0 0 0 1px rgba(255, 26, 26, 0.95),
    0 0 18px rgba(255, 26, 26, 0.65),
    0 0 40px rgba(255, 26, 26, 0.4),
    0 0 70px rgba(255, 26, 26, 0.18);
}
.section-head-center .section-tag {
  margin-left: auto;
  margin-right: auto;
}
.section-head h2 {
  font-family: var(--font-heading);
  font-size: var(--title-size);
  font-weight: 700;
  font-style: italic;
  color: #111;
  text-transform: uppercase;
  line-height: 1.1;
}

/* V2 disciplines — красные плашки, чёрный текст */
.disc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(56px * 1.25);
  overflow: visible;
  padding-bottom: 40px;
}
.disc-photo-card {
  opacity: 1;
  visibility: visible;
  transition: transform 0.45s ease;
}
.disc-photo-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.disc-photo-card:hover,
.disc-photo-card:focus-within { transform: translateY(-6px); }
.disc-photo-visual {
  position: relative;
  overflow: visible;
}
.disc-photo-wrap {
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  aspect-ratio: 11 / 8;
  will-change: transform, opacity;
  transition: box-shadow 0.45s ease, border-color 0.45s ease;
}
.disc-photo-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s ease;
}
.disc-photo-card:hover .disc-photo-wrap img,
.disc-photo-card:focus-within .disc-photo-wrap img { transform: scale(1.04); }
.disc-label {
  position: absolute;
  bottom: -24px;
  left: -24px;
  z-index: 2;
  display: inline-block;
  padding: 3px;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  border-radius: 0;
  border: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  will-change: transform, opacity;
  transition: box-shadow 0.45s ease;
}
.disc-label-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 32px;
  background: var(--bg);
  width: 260px;
  height: 136px;
  box-sizing: border-box;
}
.disc-label-num {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  color: var(--text-bright);
  display: block;
}
.disc-label-text {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin-top: 4px;
  color: #fff;
  display: block;
}
.disc-photo-card:hover .disc-label {
  box-shadow:
    0 0 0 1px rgba(255, 26, 26, 0.95),
    0 0 18px rgba(255, 26, 26, 0.6),
    0 0 40px rgba(255, 26, 26, 0.35),
    0 12px 30px rgba(0, 0, 0, 0.35);
}

/* V2 expertise — тёмная адаптация */
.features.section {
  background: rgba(20, 20, 20, 0.5);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.expertise-img-wrap {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.45s ease, border-color 0.45s ease;
}
.expertise-img-wrap:hover {
  border-color: rgba(255, 26, 26, 0.95);
  box-shadow:
    0 0 0 1px rgba(255, 26, 26, 0.95),
    0 0 18px rgba(255, 26, 26, 0.6),
    0 0 40px rgba(255, 26, 26, 0.35),
    0 0 70px rgba(255, 26, 26, 0.15);
}
.expertise-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.expertise-img-wrap:hover img { transform: scale(1.03); }
.expertise-title {
  font-family: var(--font-heading);
  font-size: var(--title-size);
  font-weight: 700;
  font-style: italic;
  color: var(--text-bright);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 36px;
}
.skill-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.skill-name {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(16px, calc(var(--title-size) * 0.5), 24px);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  text-transform: lowercase;
  line-height: 1.2;
  margin-bottom: 10px;
}
.skill-bar-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.skill-counter {
  flex: 0 0 52px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  text-align: right;
  line-height: 1;
}
.skill-bar {
  flex: 1;
  height: 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.skill-bar-fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #555 0%, #eee 100%);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.45);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.about-text .section-tag {
  font-family: var(--font-heading);
}
.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  font-style: italic;
  color: #111;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.about-text p {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-heading);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}
.about-lead {
  margin-bottom: 16px;
}
.about-lead strong {
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}
.about-visual {
  position: relative;
  padding-bottom: 32px;
}
.about-img-wrap {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.45s ease, border-color 0.45s ease;
}
.about-img-wrap:hover {
  border-color: rgba(255, 26, 26, 0.95);
  box-shadow:
    0 0 0 1px rgba(255, 26, 26, 0.95),
    0 0 18px rgba(255, 26, 26, 0.6),
    0 0 40px rgba(255, 26, 26, 0.35),
    0 0 70px rgba(255, 26, 26, 0.15);
}
.about-img-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 70%;
  display: block;
  transition: transform 0.5s ease;
}
.about-img-wrap:hover img { transform: scale(1.03); }
.about-stat {
  position: absolute;
  bottom: -24px;
  left: -24px;
  z-index: 2;
  display: inline-block;
  padding: 3px;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  border-radius: 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.45s ease;
}
.about-stat:hover {
  box-shadow:
    0 0 0 1px rgba(255, 26, 26, 0.95),
    0 0 18px rgba(255, 26, 26, 0.6),
    0 0 40px rgba(255, 26, 26, 0.35),
    0 12px 30px rgba(0, 0, 0, 0.35);
}
.about-stat-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 32px;
  background: var(--bg);
  width: 260px;
  height: 136px;
  box-sizing: border-box;
}
.stat-value {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  display: block;
  color: var(--text-bright);
}
.stat-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
  display: block;
  color: #fff;
}

/* Text block */
.text-block {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 96px 0;
  background: url('/assets/img/text-block-bg-v4.jpg') center center / cover no-repeat fixed;
  z-index: 1;
}
.text-block-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 8, 8, 0.78) 0%,
    rgba(8, 8, 8, 0.45) 50%,
    rgba(8, 8, 8, 0.12) 100%
  );
  z-index: 1;
}
.text-block-inner {
  position: relative;
  z-index: 2;
}
.text-panel {
  width: 65%;
  max-width: none;
  margin: 0 0 0 -15%;
  padding: 48px;
  background: #000;
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  transition: box-shadow 0.45s ease, border-color 0.45s ease;
  will-change: transform, opacity;
}
.text-panel:hover {
  border-color: rgba(255, 26, 26, 0.95);
  box-shadow:
    0 0 0 1px rgba(255, 26, 26, 0.95),
    0 0 18px rgba(255, 26, 26, 0.6),
    0 0 40px rgba(255, 26, 26, 0.35),
    0 20px 50px rgba(0, 0, 0, 0.45);
}
.text-panel p {
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text-bright);
  font-family: var(--font-heading);
  line-height: 1.75;
}
.text-panel p:last-child { margin-bottom: 0; }

/* News */
.news.section {
  overflow: visible;
  background: transparent;
  border-top: none;
  border-bottom: none;
  box-shadow: none;
}
.news .container {
  max-width: min(1500px, calc(100vw - 32px));
  overflow: visible;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  overflow: visible;
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 32px;
}
.news-card {
  display: flex;
  flex-direction: column;
  min-height: 240px;
  height: 100%;
  background: #000;
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transform-origin: left bottom;
  will-change: transform, opacity;
  transition: box-shadow 0.45s ease, border-color 0.45s ease;
}
/* Room for left-hinge flip so body overflow-x doesn't clip cards */
#news .news-grid {
  padding-left: 12px;
  padding-right: 12px;
}
/* News list page: first 3 tiles stay visible without waiting for scroll */
.page-news-grid .news-card:nth-child(-n+3) {
  opacity: 1 !important;
  transform: none !important;
}
.news-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}
.news-card-body p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.45;
  margin: 0 0 14px;
}
.news-card-body time {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--red);
  line-height: 1.75;
  margin-bottom: 8px;
}
.news-card-body h3 {
  flex: 1;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  margin: 0 0 16px;
}
.news-card-body h3 a {
  color: var(--text-bright);
  text-decoration: none;
  transition: color 0.3s;
}
.news-card-body h3 a:hover { color: var(--yellow); }
.read-more {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
  color: var(--text-bright) !important;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  text-decoration: none;
  align-self: flex-start;
  margin-top: auto;
  transition: color 0.3s, border-color 0.3s;
}
.read-more:hover {
  color: var(--yellow) !important;
  border-bottom-color: var(--yellow);
}

.section-more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.section-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: none;
  color: #111 !important;
  text-decoration: none !important;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}
.section-more-btn:hover {
  color: #FF1A1A !important;
}
.trainers .section-more {
  margin-top: 32px;
}

/* Footer */
.container-wide {
  max-width: min(96vw, 1620px);
  padding-left: 32px;
  padding-right: 32px;
}
.site-footer {
  position: relative;
  z-index: 1;
  background: #000;
  padding-top: 20px;
  overflow: hidden;
}
.footer-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  --footer-edge: clamp(16px, 2.5vw, 28px);
  gap: var(--footer-edge);
  width: 100%;
  padding: 0 var(--footer-edge) 28px;
}
.footer-logo {
  flex-shrink: 0;
  display: block;
  line-height: 0;
  align-self: center;
}
.footer-logo img {
  display: block;
  height: clamp(134px, 16.8vw, 185px);
  width: auto;
}
.footer-gloves {
  flex-shrink: 0;
  width: min(170px, 18vw);
  line-height: 0;
  align-self: center;
}
.footer-gloves img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 12px;
}
.footer-col-title--spaced {
  margin-top: 18px;
}
.footer-menu,
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-menu a,
.footer-list a,
.footer-contacts a {
  font-family: var(--font-heading);
  font-size: 14px;
  line-height: 1.4;
  color: #fff;
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-menu a:hover,
.footer-list a:hover,
.footer-contacts a:hover {
  color: #FF1A1A;
}
.footer-list li {
  font-family: var(--font-heading);
  font-size: 14px;
  line-height: 1.4;
  color: #fff;
}
.footer-list-sub {
  margin-top: -2px;
  margin-bottom: 6px;
  font-size: 12px !important;
  line-height: 1.35 !important;
  color: #fff !important;
}
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-social img {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
  filter: grayscale(1) brightness(1.35) contrast(1.05);
  transition: transform 0.25s ease, filter 0.25s ease;
}
.footer-social a:hover img {
  transform: scale(1.1);
  filter: grayscale(1) brightness(1.55) contrast(1.05);
}
.footer-note {
  font-family: var(--font-heading);
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  margin: 0 0 14px;
  max-width: 260px;
}
.footer-list--links {
  gap: 7px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 0;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 14px;
  line-height: 1.75;
  color: #fff;
}

/* Trainers carousel */
.trainers.section {
  padding-top: 72px;
  padding-bottom: 72px;
  background: rgba(20, 20, 20, 0.5);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trainers.section > .container {
  max-width: min(1920px, 100%);
  padding-left: clamp(10px, 1.2vw, 18px);
  padding-right: clamp(10px, 1.2vw, 18px);
}
.trainers .section-head {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}
.trainers .section-head h2 {
  color: #000;
  -webkit-text-fill-color: #000;
  text-shadow: none;
  opacity: 1;
}
.trainers-head-row {
  margin-bottom: 48px;
}
.trainers-head-spacer {
  width: var(--trainer-arrow-w);
  min-height: 1px;
}
.trainers-head-align {
  width: min(100%, calc(4 * 340px + 3 * var(--trainer-gap)));
  max-width: 100%;
  justify-self: center;
}
.trainers-carousel-wrap {
  --trainer-gap: 48px;
  --trainer-arrow-w: 58px; /* ~44px + 30% */
  display: grid;
  grid-template-columns: var(--trainer-arrow-w) minmax(0, 1fr) var(--trainer-arrow-w);
  align-items: stretch;
  gap: 10px;
}
.trainers-arrow {
  width: var(--trainer-arrow-w);
  height: auto;
  min-height: 100%;
  align-self: stretch;
  border: 1px solid transparent;
  background: transparent;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  padding: 0;
}
.trainers-arrow:hover {
  color: #FF1A1A;
  border-color: transparent;
  background: transparent;
}
.trainers-carousel {
  container-type: inline-size;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0;
  scroll-snap-type: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  /* viewport = exactly 4 cards — no neighbor edges */
  width: min(100%, calc(4 * 340px + 3 * var(--trainer-gap)));
  max-width: 100%;
  justify-self: center; /* equal space to arrows on both sides */
}
.trainers-carousel::-webkit-scrollbar {
  display: none;
  height: 0;
}
.trainers-track {
  display: flex;
  flex-direction: row;
  gap: var(--trainer-gap);
  width: max-content;
}
.trainer-card {
  /* exactly 4 cards fill the carousel — no peek of neighbors */
  flex: 0 0 calc((100cqi - 3 * var(--trainer-gap)) / 4);
  aspect-ratio: 8 / 11;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  cursor: default;
  user-select: none;
  box-sizing: border-box;
}
.trainer-card span {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.variant-badge {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 9998;
  padding: 8px 14px;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  color: #000;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 2px;
}



@media (max-width: 992px) {
  :root {
    --header-logo-height: 88px;
    --header-logo-band: calc(88px + 8px);
  }
  .menu-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-elevated);
    padding: 90px 24px 24px;
    transition: right 0.4s ease;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.4);
    overflow-y: auto;
    z-index: 1003;
  }
  .main-nav.open { right: 0; }
  .nav-list { flex-direction: column; align-items: stretch; }
  .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: none;
  }
  .nav-item.sub-open .sub-menu { display: block; }
  .disc-grid,
  .expertise-grid,
  .about-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 20px;
  }
  .footer-logo {
    order: 0;
  }
  .footer-cols {
    order: 1;
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }
  .footer-gloves {
    order: 2;
    width: min(160px, 42vw);
  }
  .disc-label { left: 16px; bottom: -16px; }
  .disc-label-inner,
  .about-stat-inner {
    width: 220px;
    height: 124px;
    padding: 18px 24px;
  }
  .disc-label-num,
  .stat-value { font-size: 42px; }
  .disc-label-text,
  .stat-label { font-size: 11px; }
  .about-stat { left: 16px; bottom: -16px; }
  .text-panel {
    width: 100%;
    margin-left: 0;
    padding: 36px 28px;
  }
  .header-logo-row { gap: 12px; padding: 8px 16px 4px; }
  .header-logo-row .tagline { font-size: 16.5px; } /* was 11px — +50% */
  .section-tag {
    width: min(300px, 100%);
  }
  .trainers-carousel-wrap {
    --trainer-gap: 20px;
    --trainer-arrow-w: calc(36px * 1.3);
    grid-template-columns: var(--trainer-arrow-w) minmax(0, 1fr) var(--trainer-arrow-w);
    gap: 8px;
  }
  .trainers-arrow {
    font-size: 32px;
  }
  .trainer-card {
    flex-basis: min(280px, calc((100cqi - var(--trainer-gap)) / 2));
  }
}

@media (max-width: 600px) {
  .disc-marquee { padding: 6px 0; }
  .marquee-track span { font-size: calc(var(--title-size) * 0.42); }
  .text-panel { padding: 28px 24px; }
  .text-block { padding: 72px 0; }
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* RED LABELS + TILE GLOW */
.hero-label {
  color: #FF1A1A !important;
  text-shadow: 0 0 12px rgba(255, 26, 26, 0.55), 0 1px 2px rgba(0, 0, 0, 0.55);
}
.hero-label span {
  background: linear-gradient(90deg, #FF1A1A, #FF6B6B) !important;
}
.section-tag {
  color: #FF1A1A !important;
}
.section-tag::before {
  background: linear-gradient(90deg, #FF1A1A, #FF6B6B) !important;
}
.section-tag::after {
  content: none !important;
  display: none !important;
}

/* NAV HOVER RED */
.nav-link:hover { color: #FF1A1A !important; }
.sub-menu a:hover { background: #FF1A1A !important; color: #fff !important; }

/* ARB SAME AS OTHER DISCS — no special frame */
.disc-photo-card--arb .disc-label,
.disc-label--arb {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold)) !important;
}

/* Hero slide indicators — bottom-right, above marquee */
.hero > .hero-dots,
.hero-dots {
  position: absolute !important;
  left: auto !important;
  right: 20px !important;
  bottom: 8px !important;
  top: auto !important;
  z-index: 40 !important;
  display: flex !important;
  flex-direction: row !important;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  pointer-events: auto !important;
}
.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1.5px solid #fff;
  background: transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.hero-dot:hover {
  transform: scale(1.12);
  border-color: #fff;
}
.hero-dot.is-active {
  background: #fff;
  border-color: #fff;
}
.hero-dot:focus-visible {
  outline: 2px solid #FF1A1A;
  outline-offset: 3px;
}


/* White text on black surfaces — readability */
.site-footer,
.site-footer a,
.news-card,
.news-card a,
.page-content,
.page-content-inner,
.page-content-inner p,
.page-content-inner li,
.page-content-inner td,
.disc-label-inner,
.about-stat-inner,
.trainer-card {
  color: #fff;
}
.page-content-inner a { color: #FF1A1A; }
.site-footer a:hover,
.footer-menu a:hover,
.footer-list a:hover,
.footer-contacts a:hover { color: #FF1A1A; }
.news-card-body h3 a { color: #fff; }


/* Home icon in nav */
.nav-item--home {
  display: flex;
  align-items: center;
}
.nav-link--home {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 8px 10px !important;
  line-height: 1 !important;
  color: var(--text-bright, #fff) !important;
}
.nav-home-icon {
  width: 20px !important;
  height: 20px !important;
  display: block !important;
  flex-shrink: 0;
}
.nav-link--home:hover,
.nav-link--home:hover .nav-home-icon {
  color: #FF1A1A !important;
}


/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 10000;
  max-width: 720px;
  margin: 0 auto;
  background: #0a0a0a;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  padding: 18px 20px;
  font-family: var(--font-heading);
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.55;
  color: #fff;
}
.cookie-banner a {
  color: #FF1A1A;
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-btn {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.28);
  background: transparent;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cookie-btn--accept {
  background: #FF1A1A;
  border-color: #FF1A1A;
  color: #fff;
}
.cookie-btn:hover { filter: brightness(1.08); }
@media (max-width: 560px) {
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; }
}
