:root {
  --black: #0a0908;
  --black-2: #141210;
  --ink: #1d1a16;
  --off-white: #eee9dd;
  --gold: #d9a02c;
  --gold-bright: #f2c04e;
  --gold-deep: #a97a1f;
  --grey: #8f887d;
  --line: rgba(238, 233, 221, 0.14);
  --ease: cubic-bezier(.16, .84, .44, 1);
  --paper: #f7f4ec;
  --paper-2: #efe9db;
  --ink-on-paper: #161510;
  --navy: #1b2a4a;
  --navy-bright: #2c4270;
  --paper-line: rgba(22, 21, 16, 0.12);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --impact: 'Anton', Impact, 'Arial Narrow Bold', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
  cursor: default;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

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

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

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 250;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

h1,
h2,
h3.big {
  font-family: var(--serif);
  font-weight: 500;
  font-optical-sizing: auto;
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.04;
}

h3 {
  font-family: var(--sans);
  font-weight: 700;
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 6vw;
}

/* ---------- Custom cursor ---------- */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 300;
  transform: translate(-50%, -50%);
  transition: transform .2s var(--ease);
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  pointer-events: none;
  z-index: 300;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease), opacity .25s var(--ease), border-color .25s var(--ease);
  opacity: 0.6;
}

.cursor-ring.big {
  width: 50px;
  height: 50px;
  border-color: var(--gold-bright);
  opacity: 1;
}

@media (hover:none),
(max-width:900px) {

  .cursor,
  .cursor-ring {
    display: none;
  }
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .8s var(--ease), visibility .8s;
}

.preloader img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  animation: pulse 1.1s infinite ease-in-out;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.12);
    opacity: 0.6;
  }
}

.tag {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.42rem 0.85rem;
}

.tag.outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.hazard {
  height: 12px;
  background: repeating-linear-gradient(-45deg, var(--gold) 0 18px, var(--black) 18px 36px);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* line-mask headline reveal */
.lines {
  overflow: hidden;
}

.lines .l {
  display: block;
  transform: translateY(115%);
  transition: transform 1s var(--ease);
  transition-delay: var(--d, 0s);
}

.lines.in .l {
  transform: translateY(0);
}

.lines.in {
  overflow: visible;
}

/* ---------- MODERN ATHLETIC LUXURY NAV ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.95rem 4vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(12, 11, 10, 0.76);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(238, 233, 221, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  transition: padding .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}

header.scrolled {
  padding: 0.7rem 4vw;
  background: rgba(10, 9, 8, 0.9);
  border-bottom-color: rgba(232, 178, 60, 0.22);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7), 0 0 20px rgba(232, 178, 60, 0.06);
}

/* Unified Brand Card */
.brand-group {
  display: flex;
  align-items: center;
}

.brand-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.35rem 0.85rem 0.35rem 0.4rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(238, 233, 221, 0.12);
  border-radius: 999px;
  text-decoration: none;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}

.brand-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(232, 178, 60, 0.45);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 16px rgba(232, 178, 60, 0.18);
}

.brand-logos {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.brand-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
  transition: transform .3s var(--ease);
}

.brand-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-avatar.deka-avatar {
  border-radius: 50%;
  background: #ffffff;
  overflow: hidden;
  padding: 3px;
}

.brand-card:hover .brand-avatar.mustang-avatar {
  transform: rotate(-6deg) scale(1.06);
}

.brand-card:hover .brand-avatar.deka-avatar {
  transform: rotate(6deg) scale(1.06);
}

.brand-info {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: 'Oswald', var(--sans);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--off-white);
  text-transform: uppercase;
  transition: color .3s var(--ease);
}

.brand-card:hover .brand-name {
  color: #ffffff;
}

.brand-tagline {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-top: 0.22rem;
}

.live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-bright);
  animation: blinkDot 2s infinite ease-in-out;
}

@keyframes blinkDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

/* Nav Links with Floating Capsule & Hover Glow */
nav.links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.3rem 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(238, 233, 221, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

nav.links .nav-item {
  position: relative;
  font-family: 'Oswald', var(--sans);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(238, 233, 221, 0.78);
  padding: 0.45rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  transition: color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

nav.links .nav-item::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transform: scale(0);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}

nav.links .nav-item:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(232, 178, 60, 0.3);
  transform: translateY(-1px);
}

nav.links .nav-item:hover::before {
  opacity: 1;
  transform: scale(1);
}

nav.links .nav-item.active {
  color: var(--gold-bright);
  background: rgba(232, 178, 60, 0.12);
  border: 1px solid rgba(232, 178, 60, 0.4);
}

nav.links .nav-item.active::before {
  opacity: 1;
  transform: scale(1);
}

/* Right Status Chip */
.header-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.48rem 1rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(238, 233, 221, 0.1);
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(238, 233, 221, 0.85);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}

.status-chip:hover {
  border-color: rgba(232, 178, 60, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.pulse-indicator {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
}

.pulse-indicator::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid #22c55e;
  animation: radarPulse 2s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes radarPulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(238, 233, 221, 0.14);
  cursor: pointer;
  padding: 0;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold-bright);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--off-white);
  transition: transform .3s var(--ease), opacity .3s var(--ease), background .3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  width: min(82vw, 340px);
  background: rgba(14, 13, 11, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid rgba(238, 233, 221, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 6.5rem 2rem 2.5rem;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.8);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  color: var(--off-white);
  font-family: 'Oswald', var(--sans);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(238, 233, 221, 0.08);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}

.mobile-nav a::after {
  content: '→';
  font-family: var(--sans);
  font-size: 1.1rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), color .2s;
  color: var(--gold);
}

.mobile-nav a:hover {
  color: var(--gold-bright);
  padding-left: 0.4rem;
}

.mobile-nav a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width:980px) {
  nav.links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  header {
    padding: 0.8rem 5vw;
  }

  .brand-avatar {
    width: 32px;
    height: 32px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-tagline {
    font-size: 0.52rem;
  }

  .status-chip {
    display: none;
  }
}

/* ---------- YARDLINE ---------- */
.yardline {
  position: fixed;
  right: 2vw;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.yardline .track {
  position: relative;
  width: 5px;
  height: 44vh;
  background: repeating-linear-gradient(180deg, var(--line) 0 6px, transparent 6px 12px);
}

.yardline .fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: var(--gold);
  height: 0%;
  transition: height .1s linear;
}

.yardline .num {
  position: absolute;
  right: 14px;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--grey);
  transform: translateY(-50%);
}

.yardline .num.active {
  color: var(--gold-bright);
}

@media (max-width:760px) {
  .yardline {
    display: none;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  background: var(--black);
}

.hero-frame {
  position: absolute;
  inset: 0;
}

.hero video.src {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: grayscale(5%) contrast(1.05) brightness(0.96);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 9, 8, 0.1) 0%, rgba(10, 9, 8, 0) 30%, rgba(10, 9, 8, 0.15) 65%, rgba(10, 9, 8, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 0 6vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-text-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  text-align: center;
}

.hero-text-line {
  font-family: 'Oswald', var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--off-white);
  font-size: clamp(1.4rem, 3.8vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7), 0 2px 4px rgba(0, 0, 0, 0.9);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.hero-text-banner-wrap {
  margin-top: 1rem;
  transform: rotate(-3.5deg) translateY(20px);
  display: inline-block;
  opacity: 0;
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.hero-text-banner {
  display: inline-block;
  background: var(--off-white);
  color: var(--black);
  font-family: 'Oswald', var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 4.2vw, 3rem);
  line-height: 1;
  padding: 0.62rem 1.8rem;
  letter-spacing: 0.04em;
  border-top: 3px dashed var(--black);
  border-bottom: 3px dashed var(--black);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.hero.ready .hero-text-line.line-1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.hero.ready .hero-text-line.line-2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.45s;
}

.hero.ready .hero-text-banner-wrap {
  opacity: 1;
  transform: rotate(-3.5deg) translateY(0);
  transition-delay: 0.7s;
}

@media (max-width:420px) {
  .hero-text-banner {
    font-size: clamp(1.15rem, 6.5vw, 1.6rem);
    padding: 0.5rem 1rem;
    letter-spacing: 0.01em;
    white-space: normal;
  }

  .hero-text-line {
    font-size: clamp(1rem, 5vw, 1.4rem);
    letter-spacing: 0.01em;
  }
}

.btn {
  padding: 0.95rem 1.9rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1.5px solid var(--off-white);
  color: var(--off-white);
  transition: all .3s var(--ease);
}

.btn:hover {
  background: var(--off-white);
  color: var(--black);
}

.btn.solid {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.btn.solid:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

section {
  position: relative;
  padding: 7rem 0;
}

.section-head {
  margin-bottom: 3.2rem;
}

.section-head h2 {
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  color: var(--off-white);
  margin-top: 1rem;
}

/* ---------- HORARI — dark panel ---------- */
.session {
  background: var(--black-2);
  color: var(--off-white);
}

.session .tag.outline {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}

.schedule-head {
  margin-bottom: 3.6rem;
  max-width: 52ch;
}

.schedule-head h2 {
  color: var(--off-white);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  margin-top: 1.1rem;
}

.schedule-intro {
  margin-top: 1.2rem;
  font-family: var(--sans);
  font-size: 1.06rem;
  line-height: 1.6;
  color: #ffffff;
  max-width: 44ch;
}

.manifesto {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 0;
}

.manifesto-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.manifesto-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  filter: grayscale(35%) contrast(1.1) brightness(0.65);
}

.manifesto-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(100deg, rgba(10, 9, 8, 0.94) 0%, rgba(10, 9, 8, 0.8) 32%, rgba(10, 9, 8, 0.35) 60%, rgba(10, 9, 8, 0.15) 100%),
    linear-gradient(0deg, rgba(10, 9, 8, 0.7) 0%, transparent 30%);
}

.manifesto-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.manifesto-mark {
  display: block;
  font-family: var(--serif);
  font-size: clamp(6rem, 14vw, 11rem);
  line-height: 0.6;
  color: var(--gold);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.manifesto-mark.in {
  opacity: 0.9;
  transform: translateY(0);
}

.manifesto-quote {
  margin-top: 0.6rem;
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 4.6vw, 3.6rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--off-white);
  max-width: 16ch;
}

.manifesto-quote em {
  font-style: normal;
  color: var(--gold-bright);
}

@media (max-width:700px) {
  .manifesto-scrim {
    background: linear-gradient(180deg, rgba(10, 9, 8, 0.55) 0%, rgba(10, 9, 8, 0.85) 55%, rgba(10, 9, 8, 0.95) 100%);
  }
}

/* box-head — full-bleed photo title, same family as manifesto */
.box-head {
  position: relative;
  height: 64vh;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.box-head-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.box-head-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
  filter: grayscale(30%) contrast(1.12) brightness(0.6);
}

.box-head-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(10, 9, 8, 0.35) 0%, rgba(10, 9, 8, 0.75) 75%, rgba(10, 9, 8, 0.94) 100%);
}

.box-head-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.box-head-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.box-head-title {
  margin-top: 0.7rem;
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(3.4rem, 12vw, 8.5rem);
  letter-spacing: -0.01em;
  line-height: 0.92;
  color: var(--off-white);
}

/* disciplines grid — same card language as the gallery below (.g-item/.g-tag) */
/* ---------- Crosstraining / Defensa Personal / Pilates — feature cards ---------- */
.disc-feature {
  padding: 6rem 0 7rem;
}

.disc-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}

.disc-feature-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.disc-feature-card {
  position: relative;
  min-height: 38rem;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--black-2);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  transition: transform .22s var(--ease), border-color .22s var(--ease);
}

@media (hover:hover) and (pointer:fine) {
  .disc-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 178, 60, 0.4);
  }

  .disc-feature-card:hover .dfc-bg {
    filter: grayscale(0%) contrast(1.05) brightness(0.9);
    transform: scale(1.04);
  }

  .disc-feature-card:hover .dfc-krav-logo {
    transform: scale(1.05);
  }
}

.dfc-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05) brightness(0.82);
  transition: filter .5s var(--ease), transform .6s var(--ease);
}

.dfc-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 9, 8, 0.15) 0%, rgba(10, 9, 8, 0.55) 45%, rgba(10, 9, 8, 0.96) 100%);
}

.dfc-kravmaga {
  background: radial-gradient(circle at 50% 30%, #211f1a 0%, #0a0908 72%);
}

.dfc-krav-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 3rem;
}

.dfc-krav-logo {
  width: 42%;
  max-width: 10.5rem;
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  transition: transform .5s var(--ease);
}

.dfc-kravmaga .dfc-scrim {
  background: linear-gradient(180deg, transparent 0%, transparent 38%, rgba(10, 9, 8, 0.75) 58%, rgba(10, 9, 8, 0.98) 78%);
}

.dfc-body {
  position: relative;
  z-index: 2;
  padding: 2rem 2rem 2.2rem;
}

.dfc-eyebrow {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.6rem;
}

.dfc-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 2.3rem;
  color: #ffffff;
  line-height: 1.08;
}

.dfc-desc {
  font-family: var(--sans);
  font-size: 0.96rem;
  line-height: 1.6;
  color: #ffffff;
  margin-top: 0.9rem;
  max-width: 46ch;
}

.dfc-instructor {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.3rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.dfc-instructor-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.dfc-instructor-info-solo {
  padding-left: 0;
}

.dfc-instructor-info strong {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffffff;
}

.dfc-instructor-info span {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.8rem;
  color: #ffffff;
}

.dfc-external {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}

.disc-feature-card:hover .dfc-external {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--black);
  transform: scale(1.08);
}

@media (max-width:900px) {
  .disc-feature-grid,
  .disc-feature-grid-2 {
    grid-template-columns: 1fr;
  }

  .disc-feature-card {
    min-height: 28rem;
  }

  .dfc-krav-visual {
    padding-bottom: 7rem;
  }
}

/* Discipline blocks — Funcional / OCR / Hybrid editorial collages */
.disc-block {
  max-width: 1440px;
  margin: 0 auto;
  padding: 6rem 6vw;
  border-top: 1px solid rgba(238, 233, 221, 0.08);
  position: relative;
}

.disc-block:first-child {
  border-top: none;
}

.disc-block-head {
  max-width: 72ch;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
}

.disc-block-meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.75rem;
}

.disc-block-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.disc-block-count {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.2rem 0.65rem;
  border-radius: 99px;
}

.disc-block-count::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.disc-block-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  color: var(--off-white);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.disc-block-title .amp {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-bright);
  font-size: 0.7em;
  padding: 0 0.06em;
}

.disc-block-desc {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.68;
  color: #ffffff;
  margin-top: 1.2rem;
  max-width: 65ch;
}

/* Dynamic Editorial Bento Collages */
.disc-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
}

.collage-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-radius: 10px;
  border: 1px solid rgba(238, 233, 221, 0.1);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease), transform .4s var(--ease);
}

.collage-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 9, 8, 0.7) 100%);
  opacity: 0.6;
  transition: opacity .4s var(--ease);
}

.collage-card:hover {
  border-color: rgba(232, 178, 60, 0.55);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.65), 0 0 25px rgba(232, 178, 60, 0.15);
  transform: translateY(-4px);
}

.collage-card:hover::after {
  opacity: 0.2;
}

.collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(16%) contrast(1.06) brightness(0.96);
  transition: filter .55s var(--ease), transform .65s var(--ease);
}

.collage-card:hover img {
  filter: grayscale(0%) contrast(1.06) brightness(1.02);
  transform: scale(1.05);
}


/* Bento Collage Specific Spans */
/* Funcional: 7 photos (3+3, 2+2+2, 3+3) */
.collage-funcional .card-1 {
  grid-column: span 3;
  height: 440px;
}

.collage-funcional .card-2 {
  grid-column: span 3;
  height: 440px;
}

.collage-funcional .card-3 {
  grid-column: span 2;
  height: 320px;
}

.collage-funcional .card-4 {
  grid-column: span 2;
  height: 320px;
}

.collage-funcional .card-5 {
  grid-column: span 2;
  height: 320px;
}

.collage-funcional .card-6 {
  grid-column: span 3;
  height: 390px;
}

.collage-funcional .card-7 {
  grid-column: span 3;
  height: 390px;
}

/* OCR: 6 photos (4+2, 2+4, 3+3) */
.collage-ocr .card-1 {
  grid-column: span 4;
  height: 440px;
}

.collage-ocr .card-2 {
  grid-column: span 2;
  height: 440px;
}

.collage-ocr .card-3 {
  grid-column: span 2;
  height: 380px;
}

.collage-ocr .card-4 {
  grid-column: span 4;
  height: 380px;
}

.collage-ocr .card-5 {
  grid-column: span 3;
  height: 360px;
}

.collage-ocr .card-6 {
  grid-column: span 3;
  height: 360px;
}

/* Hybrid: 8 photos (4+2, 2+2+2, 4+2, 6) */
.collage-hybrid .card-1 {
  grid-column: span 4;
  height: 450px;
}

.collage-hybrid .card-2 {
  grid-column: span 2;
  height: 450px;
}

.collage-hybrid .card-3 {
  grid-column: span 2;
  height: 330px;
}

.collage-hybrid .card-4 {
  grid-column: span 2;
  height: 330px;
}

.collage-hybrid .card-5 {
  grid-column: span 2;
  height: 330px;
}

.collage-hybrid .card-6 {
  grid-column: span 4;
  height: 420px;
}

.collage-hybrid .card-7 {
  grid-column: span 2;
  height: 420px;
}

.collage-hybrid .card-8 {
  grid-column: span 6;
  height: 400px;
}

/* Responsive reflows */
@media (max-width:1024px) {
  .disc-block {
    padding: 4.5rem 5vw;
  }

  .collage-funcional .card-1,
  .collage-funcional .card-2 {
    grid-column: span 3;
    height: 340px;
  }

  .collage-funcional .card-3,
  .collage-funcional .card-4,
  .collage-funcional .card-5 {
    grid-column: span 2;
    height: 260px;
  }

  .collage-funcional .card-6,
  .collage-funcional .card-7 {
    grid-column: span 3;
    height: 300px;
  }

  .collage-ocr .card-1 {
    grid-column: span 3;
    height: 340px;
  }

  .collage-ocr .card-2 {
    grid-column: span 3;
    height: 340px;
  }

  .collage-ocr .card-3 {
    grid-column: span 3;
    height: 300px;
  }

  .collage-ocr .card-4 {
    grid-column: span 3;
    height: 300px;
  }

  .collage-ocr .card-5 {
    grid-column: span 3;
    height: 280px;
  }

  .collage-ocr .card-6 {
    grid-column: span 3;
    height: 280px;
  }

  .collage-hybrid .card-1 {
    grid-column: span 3;
    height: 340px;
  }

  .collage-hybrid .card-2 {
    grid-column: span 3;
    height: 340px;
  }

  .collage-hybrid .card-3,
  .collage-hybrid .card-4,
  .collage-hybrid .card-5 {
    grid-column: span 2;
    height: 260px;
  }

  .collage-hybrid .card-6 {
    grid-column: span 3;
    height: 300px;
  }

  .collage-hybrid .card-7 {
    grid-column: span 3;
    height: 300px;
  }

  .collage-hybrid .card-8 {
    grid-column: span 6;
    height: 320px;
  }
}

@media (max-width:680px) {
  .disc-block {
    padding: 3.5rem 5vw;
  }

  .disc-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .collage-funcional [class*="card-"],
  .collage-ocr [class*="card-"],
  .collage-hybrid [class*="card-"] {
    grid-column: span 1 !important;
    height: 210px !important;
  }

  .collage-funcional .card-1,
  .collage-ocr .card-1,
  .collage-hybrid .card-1,
  .collage-hybrid .card-8 {
    grid-column: span 2 !important;
    height: 260px !important;
  }
}

/* Lightbox Modal */
.mb-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}

.mb-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.mb-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 6, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.mb-lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 92vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mb-lightbox-img-wrap {
  max-width: 1200px;
  max-height: 80vh;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(238, 233, 221, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85);
  background: var(--ink);
}

.mb-lightbox-img-wrap img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  transform: scale(0.96);
  transition: transform .35s var(--ease);
}

.mb-lightbox.open .mb-lightbox-img-wrap img {
  transform: scale(1);
}

.mb-lightbox-caption {
  margin-top: 1rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--off-white);
  letter-spacing: 0.04em;
  text-align: center;
}

.mb-lightbox-close {
  position: absolute;
  top: -2.8rem;
  right: 0;
  background: none;
  border: none;
  color: var(--off-white);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  transition: color .2s var(--ease), transform .2s var(--ease);
}

.mb-lightbox-close:hover {
  color: var(--gold-bright);
  transform: scale(1.15);
}

.mb-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(24, 23, 20, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--off-white);
  font-size: 1.6rem;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}

.mb-lightbox-nav:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold-bright);
  transform: translateY(-50%) scale(1.08);
}

.mb-lightbox-nav.prev {
  left: -4.5rem;
}

.mb-lightbox-nav.next {
  right: -4.5rem;
}

@media (max-width:768px) {
  .mb-lightbox-nav.prev {
    left: 0.5rem;
  }

  .mb-lightbox-nav.next {
    right: 0.5rem;
  }

  .mb-lightbox-close {
    top: -2.4rem;
    right: 0.5rem;
  }
}

/* horizontal pinned gallery */
.box-pin {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.box-pin-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.gallery-track {
  display: flex;
  gap: 1.8vw;
  padding: 0 6vw;
  will-change: transform;
}

.g-item {
  position: relative;
  flex: 0 0 auto;
  width: 26vw;
  height: 60vh;
  overflow: hidden;
  background: var(--ink);
  border: 8px solid var(--black-2);
  outline: 1px solid var(--line);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.45);
}

.g-item.tall {
  height: 74vh;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(25%) contrast(1.06) brightness(0.94);
  transition: filter .5s var(--ease), transform .6s var(--ease);
}

.g-item:hover img {
  filter: grayscale(0%) contrast(1.05) brightness(1);
  transform: scale(1.05);
}

.g-item .g-tag {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  overflow: hidden;
  background: linear-gradient(0deg, rgba(10, 9, 8, 0.92) 15%, rgba(10, 9, 8, 0.55) 65%, transparent 100%);
  padding: 2.6rem 1.3rem 1.1rem;
  transform: translateY(0.4rem);
  transition: transform .45s var(--ease);
}

.g-item:hover .g-tag {
  transform: translateY(0);
}

.g-item .g-tag .g-rule {
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--gold);
  margin-bottom: 0.7rem;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease) .1s;
}

.g-item:hover .g-tag .g-rule {
  transform: scaleX(1);
}

.g-item .g-tag .g-label {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.05rem, 1.7vw, 1.5rem);
  letter-spacing: 0.005em;
  text-transform: none;
  color: var(--off-white);
  line-height: 1.15;
}

@media (max-width:900px) {
  .box-pin {
    height: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .box-pin-inner {
    position: relative;
  }

  .gallery-track {
    transform: none !important;
  }

  .g-item {
    width: 78vw;
    height: 56vh;
    scroll-snap-align: center;
  }
}

.team {
  background: var(--black-2);
  padding: 9rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 5vw;
  align-items: center;
}

.team-copy h2 {
  margin-top: 1.1rem;
  font-family: 'Oswald', var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.12;
  color: #ffffff;
}

.team-copy h2 span {
  display: block;
  color: #ffffff;
}

.team-copy p {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 46ch;
  margin-top: 1.5rem;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(238, 233, 221, 0.12);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stat b {
  font-family: 'Oswald', var(--sans);
  font-weight: 700;
  font-size: 3.2rem;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.01em;
}

.stat span {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.3;
}

.team-photos {
  position: relative;
  height: 44rem;
}

.team-photos img {
  position: absolute;
  object-fit: cover;
  border: 8px solid var(--black-2);
  outline: 1px solid var(--line);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.5);
  will-change: transform;
}

.tp1 {
  width: 70%;
  aspect-ratio: 4/3;
  top: 2%;
  left: 0;
  z-index: 1;
}

.tp2 {
  width: 36%;
  aspect-ratio: 4/5;
  top: 38%;
  right: 0;
  z-index: 3;
  transform: rotate(-3deg);
}

.tp3 {
  width: 30%;
  aspect-ratio: 3/4;
  top: 0;
  right: 8%;
  z-index: 2;
  transform: rotate(4deg);
}

.tp4 {
  width: 34%;
  aspect-ratio: 4/5;
  bottom: 0;
  left: 8%;
  z-index: 2;
  transform: rotate(-2deg);
}

@media (max-width:880px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-photos {
    height: 26rem;
    order: -1;
  }

  .tp3,
  .tp4 {
    display: none;
  }

  .team-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ---------- ON COMPETIM — light panel, same family as HORARI ---------- */
.affiliations {
  background: var(--paper);
  color: var(--ink-on-paper);
  padding: 8rem 0;
}

.affiliations .tag.outline {
  color: var(--navy);
  border-color: var(--navy);
}

.affiliations .section-head h2 {
  color: var(--ink-on-paper);
}

.comp-list {
  margin-top: 3rem;
  border-top: 1px solid var(--paper-line);
}

.comp-item {
  padding: 2.6rem 0;
  border-bottom: 1px solid var(--paper-line);
  color: var(--ink-on-paper);
}

.comp-main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: center;
  gap: 2.5rem;
}

.comp-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  letter-spacing: -0.005em;
  line-height: 1.1;
}

.comp-desc {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink-on-paper);
  opacity: 0.82;
  line-height: 1.6;
  max-width: 40ch;
}

@media (max-width:700px) {
  .comp-main {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}

.comp-races {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.comp-race {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
}

a.comp-race {
  transition: background .25s var(--ease), color .25s var(--ease);
}

a.comp-race:hover {
  background: var(--navy);
  color: var(--paper);
}

@media (max-width:600px) {
  .comp-item {
    padding: 1.6rem 0;
  }
}

.join-visual {
  position: relative;
  height: 100vh;
  min-height: 34rem;
  max-height: 56rem;
  overflow: hidden;
  background: #000000;
  perspective: 1px;
}

.join-visual-bg-frame {
  position: absolute;
  inset: -10vh 0;
  overflow: hidden;
  z-index: 0;
}

.join-visual-bg-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  transform: scale(1.25);
  filter: blur(28px) saturate(1.1) brightness(0.55);
  will-change: transform;
}

.join-visual-frame {
  position: absolute;
  inset: -6vh 0;
  overflow: hidden;
  z-index: 1;
}

.join-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  filter: saturate(1.08) contrast(1.04);
  will-change: transform;
}

.join-visual-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.55) 0%, transparent 22%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 20%);
}

.join-visual-float {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  font-family: 'Oswald', var(--sans);
  font-weight: 900;
  font-size: clamp(4rem, 16vw, 13rem);
  letter-spacing: -0.01em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.28);
  white-space: nowrap;
  pointer-events: none;
  will-change: transform;
}

.join-visual-caption {
  position: absolute;
  left: 2.2rem;
  bottom: 2.2rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Oswald', var(--sans);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
}

.join-visual-rule {
  width: 2rem;
  height: 2px;
  background: var(--gold-bright);
}

@media (max-width:700px) {
  .join-visual {
    height: 72vh;
    min-height: 28rem;
  }

  .join-visual-float {
    font-size: clamp(3rem, 20vw, 6rem);
  }

  .join-visual-caption {
    left: 1.4rem;
    bottom: 1.6rem;
    font-size: 0.72rem;
  }
}

/* ---------- PRICING page — dark, premium ---------- */
body.pricing-page {
  background: var(--black);
  color: var(--off-white);
}

.pricing-hero {
  background: var(--black);
  color: var(--off-white);
  padding: 9rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.pricing-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle, rgba(232, 178, 60, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-hero .tag.outline {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}

.pricing-hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.8rem, 6.4vw, 5rem);
  color: #ffffff;
  margin-top: 1.1rem;
  position: relative;
}

.pricing-hero p {
  margin-top: 1.3rem;
  color: #ffffff;
  font-size: 1.1rem;
  max-width: 46ch;
  line-height: 1.6;
  position: relative;
}

.pricing-section {
  padding: 2rem 0 7rem;
}

.pricing-group-head {
  margin-bottom: 2.4rem;
}

.pricing-group-head-2 {
  margin-top: 5rem;
}

.pricing-eyebrow {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.6rem;
}

.pricing-group-head h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  color: #ffffff;
}

.pricing-grid {
  display: grid;
  gap: 1.6rem;
  perspective: 1400px;
}

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

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

.price-card {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(160deg, var(--black-2) 0%, #0d0c0a 100%);
  padding: 2.4rem 2.2rem;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .12s linear, border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.price-card-featured {
  border-color: rgba(232, 178, 60, 0.5);
  background: linear-gradient(160deg, #201a0d 0%, #0d0c0a 100%);
}

@media (hover:hover) and (pointer:fine) {
  .price-card:hover {
    border-color: rgba(232, 178, 60, 0.55);
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.6);
  }

  .price-card:hover .price-card-glow {
    opacity: 1;
  }
}

.price-card-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 0%), rgba(242, 192, 78, 0.16) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}

.price-card-body {
  position: relative;
  z-index: 1;
  transform: translateZ(30px);
}

.price-card-badge {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: rgba(232, 178, 60, 0.12);
  border: 1px solid rgba(232, 178, 60, 0.3);
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}

.price-card-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  color: #ffffff;
  line-height: 1.15;
}

.price-card-sub {
  font-family: var(--sans);
  font-size: 0.88rem;
  line-height: 1.5;
  color: #ffffff;
  opacity: 0.75;
  margin-top: 0.6rem;
  min-height: 2.6em;
}

.price-card-amount {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 3.2rem;
  color: var(--gold-bright);
  margin-top: 1.4rem;
  line-height: 1;
}

.price-currency {
  font-size: 1.4rem;
  font-weight: 700;
  align-self: flex-start;
  margin-top: 0.3rem;
}

.price-unit {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.85rem;
  color: #ffffff;
  opacity: 0.6;
  align-self: flex-end;
  margin-bottom: 0.4rem;
}

.price-card-features {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.price-card-features li {
  position: relative;
  padding-left: 1.4rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: #ffffff;
  line-height: 1.4;
}

.price-card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
}

.enrollment-band {
  position: relative;
  margin-top: 4rem;
  display: flex;
  align-items: center;
  border-radius: 18px;
  border: 1px solid rgba(232, 178, 60, 0.3);
  background: linear-gradient(120deg, #1a1509 0%, var(--black-2) 55%, #0d0c0a 100%);
  overflow: hidden;
  padding: 2.2rem 2.6rem;
}

.enrollment-band-glow {
  position: absolute;
  top: 50%;
  left: 15%;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(242, 192, 78, 0.16) 0%, transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}

.enrollment-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex: 1;
}

.enrollment-icon {
  flex-shrink: 0;
  width: 3.4rem;
  height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(232, 178, 60, 0.12);
  border: 1px solid rgba(232, 178, 60, 0.35);
  color: var(--gold-bright);
}

.enrollment-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.enrollment-amount {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.6rem;
  color: #ffffff;
  line-height: 1.1;
}

.enrollment-label {
  font-family: var(--sans);
  font-size: 0.86rem;
  color: #ffffff;
  opacity: 0.8;
}

.enrollment-divider {
  position: relative;
  z-index: 1;
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.14);
  margin: 0 2.4rem;
}

@media (max-width:700px) {
  .enrollment-band {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
    padding: 1.8rem;
  }

  .enrollment-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }
}

@media (max-width:900px) {
  .pricing-grid-2,
  .pricing-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ---------- FAQ page — light ---------- */
body.faq-page {
  background: var(--paper);
}

.faq-hero {
  background: var(--paper);
  color: var(--ink-on-paper);
  padding: 9rem 0 3rem;
}

.faq-hero .tag.outline {
  color: var(--navy);
  border-color: var(--navy);
}

.faq-hero h1 {
  font-family: 'Oswald', var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  font-size: clamp(2.8rem, 6.4vw, 5rem);
  color: var(--ink-on-paper);
  margin-top: 1.1rem;
}

.faq-hero p {
  margin-top: 1.3rem;
  color: var(--ink-on-paper);
  opacity: 0.85;
  font-size: 1.1rem;
  max-width: 46ch;
  line-height: 1.6;
}

/* ---------- team portrait (equip.html) ---------- */
.team-portrait {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.team-portrait img {
  width: 100%;
  height: auto;
  display: block;
}

.faq-group {
  margin-top: 3rem;
}

.faq-group+.faq-group {
  margin-top: 3.5rem;
}

.faq-group h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.faq-item {
  border-bottom: 1px solid var(--paper-line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.7rem 0;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--ink-on-paper);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1.5px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--navy);
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(135deg);
  background: var(--navy);
  color: var(--paper);
}

.faq-item p {
  padding: 0 0 1.9rem;
  color: var(--ink-on-paper);
  opacity: 0.88;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 66ch;
}

footer {
  background: var(--paper);
  color: var(--ink-on-paper);
  padding: 5rem 0 0;
}

.foot-top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.4fr 1fr;
  gap: 4vw;
  padding-bottom: 4.5rem;
}

.foot-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.foot-brand .logo {
  pointer-events: none;
}

.foot-brand .logo-text {
  color: var(--ink-on-paper);
}

.foot-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.2rem;
}

.foot-social a {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s var(--ease), filter .25s var(--ease);
}

.foot-social a.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.foot-social a.whatsapp {
  background: #25d366;
}

.foot-social a:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.foot-social svg {
  width: 16px;
  height: 16px;
}

.foot-col h4 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-on-paper);
  opacity: 0.95;
  margin-bottom: 1.1rem;
}

.foot-col p,
.foot-col a {
  color: var(--ink-on-paper);
  opacity: 0.95;
  font-size: 0.92rem;
  line-height: 2;
  display: block;
}

.foot-col a {
  transition: opacity .2s var(--ease);
}

.foot-col a:hover {
  opacity: 0.75;
}

.foot-bottom {
  margin-top: 0;
  padding: 1.6rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid var(--paper-line);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.76rem;
  color: var(--ink-on-paper);
  opacity: 0.8;
  letter-spacing: 0.01em;
}

.foot-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.foot-legal a {
  opacity: 0.8;
  transition: opacity .2s var(--ease);
}

.foot-legal a:hover {
  opacity: 1;
}

@media (max-width:960px) {
  .foot-top {
    grid-template-columns: 1fr 1fr;
    row-gap: 2.6rem;
  }

  .foot-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width:560px) {
  .foot-top {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion:reduce) {

  .reveal,
  .lines .l {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

.legal-text h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
}

.legal-text h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink-on-paper);
  margin: 1.8rem 0 0.8rem;
}

.legal-text p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-on-paper);
  opacity: 0.92;
  margin-bottom: 1.2rem;
}

.legal-text ul {
  margin-left: 1.6rem;
  margin-bottom: 1.6rem;
  list-style-type: square;
}

.legal-text li {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-on-paper);
  opacity: 0.92;
  margin-bottom: 0.6rem;
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 500;
  width: auto;
  max-width: 640px;
  box-sizing: border-box;
  margin: 0 auto;
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}

.cookie-banner.in {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner p {
  flex: 1 1 220px;
  color: var(--off-white);
  font-size: 0.86rem;
  line-height: 1.5;
}

.cookie-banner p a {
  color: var(--gold-bright);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cookie-banner-actions button {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  padding: 0.55rem 1.1rem;
  border-radius: 7px;
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), opacity .2s var(--ease);
}

.cookie-banner-reject {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--grey);
}

.cookie-banner-reject:hover {
  border-color: var(--off-white);
  color: var(--off-white);
}

.cookie-banner-accept {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--black);
}

.cookie-banner-accept:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

@media (max-width:600px) {
  .cookie-banner {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
    max-width: none;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 1.1rem 1.2rem;
  }

  .cookie-banner-actions {
    justify-content: stretch;
  }

  .cookie-banner-actions button {
    flex: 1;
  }
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ======================================================
   NEW DESIGN SYSTEM — HIGH CONTRAST UPGRADE
   ====================================================== */

/* ---------- HERO — High-Impact Athletic Redesign ---------- */
.hero-headline-top {
  font-family: 'Oswald', var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 3vw, 2rem);
  letter-spacing: 0.18em;
  color: rgba(238, 233, 221, 0.7);
  line-height: 1;
}

.hero-headline-bottom {
  font-family: 'Oswald', var(--sans);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(3.8rem, 10vw, 7.5rem);
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 0.92;
  margin-top: 0.1rem;
}

.hero-gold-glow {
  color: var(--gold-bright);
  text-shadow: 0 0 40px rgba(232, 178, 60, 0.5), 0 0 80px rgba(232, 178, 60, 0.25);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--black);
  font-family: 'Oswald', var(--sans);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: 2px solid var(--gold);
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}

.hero-btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 178, 60, 0.4);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: rgba(238, 233, 221, 0.85);
  font-family: 'Oswald', var(--sans);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: 2px solid rgba(238, 233, 221, 0.3);
  transition: border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}

.hero-btn-secondary:hover {
  border-color: rgba(238, 233, 221, 0.7);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ---------- SCHEDULE — Board redesign ---------- */
.schedule-legend {
  display: flex;
  gap: 1.8rem 2.4rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2rem;
}

.leg-item {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  color: #ffffff;
}

.leg-item strong {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.leg-item em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
}

.leg-item i {
  align-self: center;
  width: 11px;
  height: 11px;
  border-radius: 3px;
  flex-shrink: 0;
}

.leg-item .sw-busy {
  background: var(--gold-bright);
  box-shadow: 0 0 10px rgba(242, 192, 78, 0.5);
}

.leg-item .sw-free {
  background: transparent;
  border: 1.5px solid #ffffff;
}

.leg-item .sw-off {
  background: transparent;
  border: 1.5px dashed rgba(255, 255, 255, 0.4);
}

.schedule-board {
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 1.5rem 1.6rem 1.7rem;
}

.schedule-board-scroll {
  overflow-x: auto;
  overflow-y: clip;
  -webkit-overflow-scrolling: touch;
  padding: 3px 3px 16px;
  margin-bottom: -16px;
}

.schedule-board-grid {
  display: grid;
  grid-template-columns: 4.6rem repeat(6, minmax(6.4rem, 1fr));
  gap: 0.2rem;
  min-width: 760px;
}

.sb-col-head {
  padding-bottom: 0.6rem;
  text-align: center;
}

.sb-day {
  font-family: 'Oswald', var(--sans);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #ffffff;
}

.sb-col-sat .sb-day {
  color: var(--gold-bright);
}

.sb-hour {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0.9rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
  color: #ffffff;
  white-space: nowrap;
}

.sb-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  min-height: 3.6rem;
  border-radius: 8px;
  font-family: 'Oswald', var(--sans);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}

.sb-cell.busy {
  background: var(--gold-bright);
  color: var(--black);
  box-shadow: 0 3px 10px rgba(242, 192, 78, 0.22);
}

.sb-cell.busy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(242, 192, 78, 0.32);
}

.sb-cell.free {
  background: var(--black);
  border: 1.5px solid #ffffff;
  color: #ffffff;
}

.sb-cell.off {
  background: var(--black);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
  letter-spacing: 0;
}

.sb-cell.sat {
  position: relative;
  background:
    repeating-linear-gradient(-45deg, transparent 0 8px, rgba(10, 9, 8, 0.16) 8px 16px),
    var(--gold-bright);
  box-shadow: inset 0 0 0 2px var(--black), 0 4px 14px -2px rgba(232, 178, 60, 0.45);
  overflow: hidden;
}

.sb-cell.sat::after {
  content: '★';
  position: absolute;
  top: 0.2rem;
  right: 0.35rem;
  font-size: 0.55rem;
  color: rgba(10, 9, 8, 0.55);
}

.sb-cell.sat span {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: none;
  opacity: 0.85;
}

.schedule-footer-notes {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(238, 233, 221, 0.1);
}

.schedule-sat-info {
  font-family: var(--sans);
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}

.schedule-sat-info strong {
  color: var(--gold-bright);
  font-weight: 700;
}

.schedule-extra-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
  margin-top: 1.4rem;
  perspective: 1200px;
}

.schedule-extra-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.5rem 1.6rem;
  border-radius: 14px;
  background: linear-gradient(150deg, #1a1509 0%, var(--black-2) 60%, #0d0c0a 100%);
  border: 1px solid rgba(232, 178, 60, 0.28);
  overflow: hidden;
  will-change: transform;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.schedule-extra-card::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at var(--glow-x, 30%) var(--glow-y, 30%), rgba(242, 192, 78, 0.2) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}

@media (hover:hover) and (pointer:fine) {
  .schedule-extra-card:hover {
    border-color: rgba(232, 178, 60, 0.55);
    box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.55);
  }

  .schedule-extra-card:hover::before {
    opacity: 1;
  }
}

.schedule-extra-icon {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(232, 178, 60, 0.14);
  border: 1px solid rgba(232, 178, 60, 0.4);
  color: var(--gold-bright);
}

.schedule-extra-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.schedule-extra-copy strong {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.15rem;
  color: #ffffff;
}

.schedule-extra-copy span {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: #ffffff;
  opacity: 0.75;
}

@media (max-width:600px) {
  .schedule-extra-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- DISCIPLINE HEADERS — Numbered Athletic ---------- */
.disc-header-top {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.4rem;
}

.disc-num-badge {
  flex-shrink: 0;
  width: 3.6rem;
  height: 3.6rem;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', var(--sans);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  line-height: 1;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 100%, 0 100%);
}

.disc-title-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.disc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
  perspective: 800px;
}

.disc-tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: transparent;
  border: none;
  border-left: 2px solid rgba(232, 178, 60, 0.35);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.1rem 0 0.1rem 0.75rem;
  transition: border-color .22s var(--ease), color .22s var(--ease), transform .22s var(--ease);
}

@media (hover:hover) and (pointer:fine) {
  .disc-tag-chip:hover {
    border-color: var(--gold-bright);
    color: var(--gold-bright);
    transform: translateX(4px);
  }
}

/* ---------- TEAM SHOWCASE ---------- */
.team-showcase {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.2rem;
  margin-top: 3rem;
  align-items: start;
}

.showcase-main {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 3/4;
  background: var(--ink);
  border: 1px solid rgba(238, 233, 221, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

.showcase-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%) contrast(1.05) brightness(0.95);
  transition: transform .7s var(--ease);
}

.showcase-main:hover img {
  transform: scale(1.04);
}

.showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(10, 9, 8, 0.92) 25%, rgba(10, 9, 8, 0.55) 70%, transparent 100%);
  padding: 2.5rem 1.8rem 1.8rem;
}

.showcase-overlay-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: 'Oswald', var(--sans);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  margin-bottom: 0.65rem;
}

.showcase-overlay-title {
  font-family: 'Oswald', var(--sans);
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 1.1;
}

.showcase-subgrid {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 1.2rem;
  height: 100%;
}

.showcase-subcard {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: var(--ink);
  border: 1px solid rgba(238, 233, 221, 0.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.showcase-subcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(12%) contrast(1.04) brightness(0.94);
  transition: transform .6s var(--ease);
}

.showcase-subcard:hover img {
  transform: scale(1.06);
}

.showcase-subcard-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.6rem 1.2rem 0.9rem;
  background: linear-gradient(0deg, rgba(10, 9, 8, 0.9) 30%, transparent 100%);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

@media (max-width:860px) {
  .team-showcase {
    grid-template-columns: 1fr;
  }

  .showcase-subgrid {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  .showcase-subcard {
    min-height: 200px;
  }
}

/* ---------- FOOTER REDESIGN ---------- */
footer {
  background: var(--black-2);
  color: var(--off-white);
  padding: 6.5rem 0 0;
  border-top: 1px solid rgba(238, 233, 221, 0.08);
}

.footer-wrap {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 5vw;
}

.foot-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  transition: opacity .25s var(--ease);
}

.foot-logo:hover {
  opacity: 0.85;
}

.foot-avatar {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.4));
}

.foot-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.foot-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.foot-title {
  font-family: 'Oswald', var(--sans);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.foot-sub {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.35rem;
  max-width: 16rem;
}

.foot-sub-text {
  overflow-wrap: break-word;
}

.foot-sub .foot-sub-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--gold-bright);
}

.foot-about {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  max-width: 28ch;
  margin-top: 0.6rem;
}

.foot-social {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.foot-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
  text-decoration: none;
}

.foot-social a:hover {
  transform: translateY(-2px);
}

.foot-social a.instagram:hover {
  border-color: #e1306c;
  background: rgba(225, 48, 108, 0.12);
}

.foot-social a.whatsapp:hover {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.12);
}

.foot-social svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.foot-col h4 {
  position: relative;
  font-family: 'Oswald', var(--sans);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.4rem;
  padding-bottom: 0.7rem;
}

.foot-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1.8rem;
  height: 2px;
  background: rgba(232, 178, 60, 0.4);
}

.foot-col p,
.foot-col a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 2.05;
  display: block;
  text-decoration: none;
  transition: color .2s var(--ease);
}

.foot-col a:hover {
  color: var(--gold-bright);
}

.foot-email-link {
  display: inline-flex !important;
  align-items: flex-start;
  gap: 0.5rem;
  color: #ffffff !important;
  font-size: 0.94rem !important;
  line-height: 1.5 !important;
  overflow-wrap: break-word;
  word-break: normal;
  transition: color .2s var(--ease) !important;
}

.foot-email-link:hover {
  color: var(--gold-bright) !important;
}

.foot-email-link svg {
  flex-shrink: 0;
  opacity: 0.75;
  margin-top: 0.2rem;
}

.foot-bottom {
  margin-top: 0;
  padding: 1.6rem 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.01em;
}

/* Override old footer (light) if inside index.html */
body:not(.faq-page):not(.equip-page):not(.preus-page):not(.legal-page) footer {
  background: var(--black-2) !important;
  color: var(--off-white) !important;
}

/* ---------- RESPONSIVE EXTRAS ---------- */
@media (max-width:700px) {
  .hero-headline-bottom {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }

  .disc-header-top {
    flex-direction: column;
    gap: 0.9rem;
  }

  .disc-num-badge {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }

  .schedule-board {
    padding: 1.4rem 1.1rem 1.8rem;
    border-radius: 14px;
  }

  .schedule-board-grid {
    grid-template-columns: 3.6rem repeat(6, minmax(5.6rem, 1fr));
    min-width: 660px;
  }

  .sb-hour {
    font-size: 0.82rem;
    padding-right: 0.6rem;
  }

  .sb-cell {
    min-height: 3.1rem;
    font-size: 0.74rem;
  }

  .schedule-legend {
    gap: 1rem 1.6rem;
  }

  /* keep the hour column (and its empty header cell) fixed while the days scroll past */
  .sb-hour,
  .sb-col-head:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    background: var(--black);
    box-shadow: 4px 0 8px -4px rgba(0, 0, 0, 0.5);
  }
}