/* ---------------------------- Design Variables ---------------------------- */
:root {
  /* Core palette (from crest) */
  --c-ink: #06090c;
  --c-navy-950: #081824;
  --c-navy-900: #0b2233;
  --c-navy-800: #123044;
  --c-navy-700: #1a4258;
  --c-navy-line: rgba(255, 255, 255, 0.08);

  --c-crimson: #c8202f;
  --c-crimson-dark: #8c0e22;
  --c-crimson-glow: rgba(200, 32, 47, 0.35);

  --c-gold: #e3a73d;
  --c-gold-light: #f4c874;
  --c-gold-dark: #a9781f;
  --c-gold-glow: rgba(227, 167, 61, 0.35);

  --c-bone: #f5f1e6;
  --c-bone-dim: #cfc9ba;
  --c-steel: #93a4b3;
  --c-steel-dim: #5c6c78;

  /* Semantic */
  --bg-body: var(--c-ink);
  --bg-alt: var(--c-navy-950);
  --bg-card: #0e2130;
  --text-primary: var(--c-bone);
  --text-muted: var(--c-steel);
  --accent-1: var(--c-gold);
  --accent-2: var(--c-crimson);

  --grad-duality: linear-gradient(90deg, var(--c-gold) 0%, var(--c-gold-light) 20%, var(--c-crimson) 55%, var(--c-crimson-dark) 100%);
  --grad-duality-soft: linear-gradient(120deg, rgba(227, 167, 61, 0.16), rgba(200, 32, 47, 0.12));

  /* Type */
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container-w: 1240px;
  --section-pad: clamp(4.5rem, 9vw, 8rem);
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 26px;

  --ease-out: cubic-bezier(.16, .84, .44, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  --dur-fast: .25s;
  --dur-mid: .5s;
  --dur-slow: .9s;
}

/* ------------------------------ Reset ----------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
ul,
ol,
dl {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
}

svg {
  display: block;
}

body {
  background: var(--bg-body);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--c-crimson);
  color: var(--c-bone);
}

:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  padding-inline: 1rem;
  margin-inline: auto;
}

/* Subtle grain / vignette applied globally for texture without images */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.035) 1px, transparent 0);
  background-size: 3px 3px;
  opacity: .5;
  mix-blend-mode: overlay;
}

/* ------------------------------ Typography ------------------------------ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: 1.1rem;
}

.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad-duality);
  box-shadow: 0 0 12px var(--c-gold-glow);
  flex-shrink: 0;
}

.eyebrow--center {
  justify-content: center;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .01em;
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  color: var(--c-bone);
  max-width: 18ch;
}

.section-title--center {
  max-width: 22ch;
  margin-inline: auto;
  text-align: center;
}

.section-title em {
  font-style: normal;
  color: var(--c-gold);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 46ch;
  margin-top: 1rem;
}

.section-title--center+.section-sub {
  margin-inline: auto;
  text-align: center;
}

.section-head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ------------------------------- Buttons -------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1rem 1.9rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}

.btn svg {
  transition: transform var(--dur-fast) var(--ease-out);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn--primary {
  background: var(--grad-duality);
  color: var(--c-ink);
  box-shadow: 0 10px 30px -10px var(--c-crimson-glow), 0 6px 20px -8px var(--c-gold-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -8px var(--c-crimson-glow), 0 10px 26px -6px var(--c-gold-glow);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--outline {
  border-color: rgba(245, 241, 230, 0.28);
  color: var(--c-bone);
  background: rgba(255, 255, 255, 0.02);
}

.btn--outline:hover {
  border-color: var(--c-gold);
  color: var(--c-gold-light);
  background: rgba(227, 167, 61, 0.06);
}

.btn--ghost {
  color: var(--c-bone);
  border: 1px solid rgba(245, 241, 230, 0.22);
  padding: .7rem 1.3rem;
}

.btn--ghost:hover {
  border-color: var(--c-gold);
  color: var(--c-gold-light);
}

.btn--small {
  font-size: .8rem;
  padding: .65rem 1.2rem;
}

.btn--lg {
  padding: 1.2rem 2.4rem;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

/* ============================== PRELOADER ================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--c-ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  transition: opacity .6s var(--ease-in-out), visibility .6s var(--ease-in-out);
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__mark {
  position: relative;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
}

.preloader__ring {
  width: 120px;
  height: 120px;
  transform: rotate(-90deg);
  position: absolute;
  inset: 0;
}

.preloader__ring-track {
  fill: none;
  stroke: rgba(245, 241, 230, 0.1);
  stroke-width: 2;
}

.preloader__ring-progress {
  fill: none;
  stroke: url(#none);
  stroke: var(--c-gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 327;
  stroke-dashoffset: 327;
  animation: ringProgress 1.6s var(--ease-in-out) forwards;
}

@keyframes ringProgress {
  to {
    stroke-dashoffset: 40;
  }
}

.preloader__glyph {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: .08em;
  color: var(--c-bone);
}

.preloader__label {
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================ CURSOR GLOW ================================ */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 167, 61, 0.10) 0%, rgba(200, 32, 47, 0.05) 45%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  will-change: transform;
  transition: opacity .3s ease;
}

@media (max-width: 900px),
(hover: none) {
  .cursor-glow {
    display: none;
  }
}

/* =============================== HEADER ================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 1.35rem 0;
  transition: padding var(--dur-mid) var(--ease-out), background var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid) var(--ease-out), backdrop-filter var(--dur-mid) var(--ease-out);
}

.site-header.is-scrolled {
  padding: .8rem 0;
  background: rgba(6, 9, 12, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 20px 40px -20px rgba(0, 0, 0, 0.6);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  min-width: 0;
  flex: 1;
}

.brand__mark {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  border: 1.5px solid rgba(227, 167, 61, 0.5);
  transition: transform var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast);
}

.brand:hover .brand__mark {
  transform: rotate(8deg) scale(1.05);
  border-color: var(--c-gold);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .06em;
  color: var(--c-bone);
  white-space: nowrap;
}

.brand__sub {
  font-size: .64rem;
  letter-spacing: .35em;
  color: var(--c-gold-light);
  margin-top: 2px;
  white-space: nowrap;
}

.main-nav__list {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}

.main-nav__link {
  position: relative;
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--c-bone);
  padding: .3rem 0;
  transition: color var(--dur-fast);
}

.main-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--grad-duality);
  transition: width var(--dur-fast) var(--ease-out);
}

.main-nav__link:hover {
  color: var(--c-gold-light);
}

.main-nav__link:hover::after {
  width: 100%;
}

.site-header__actions {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 40px;
  justify-content: center;
  align-items: center;
  padding: 0;
  z-index: 501;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--c-bone);
  border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ================================ HERO ==================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(6, 9, 12, 0.55) 0%, rgba(8, 24, 36, 0.88) 80%, var(--c-ink) 100%),
    url('../assets/images/hero-image.jpeg') center 30% / cover no-repeat,
    radial-gradient(120% 90% at 50% -10%, var(--c-navy-800) 0%, var(--c-navy-950) 45%, var(--c-ink) 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 20%, transparent 80%);
}

.hero__glow {
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .35;
}

.hero__glow--gold {
  top: -180px;
  left: -120px;
  background: var(--c-gold);
}

.hero__glow--crimson {
  bottom: -220px;
  right: -160px;
  background: var(--c-gold-glow);
  opacity: .28;
}

.hero__inner {
  position: relative;
  z-index: 2;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(3rem, 9vw, 6.4rem);
  line-height: .98;
  letter-spacing: .005em;
  color: var(--c-bone);
  margin-bottom: 1.6rem;
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--c-gold-light) 0%, var(--c-gold) 65%, #ff8a5c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.reveal-line {
  display: block;
  overflow: hidden;
}

.reveal-line__inner {
  display: block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
}

.hero.is-loaded .reveal-line__inner {
  transform: translateY(0);
}

.reveal-line:nth-child(1) .reveal-line__inner {
  transition-delay: .15s;
}

.reveal-line:nth-child(2) .reveal-line__inner {
  transition-delay: .28s;
}

.reveal-line:nth-child(3) .reveal-line__inner {
  transition-delay: .41s;
}

.hero__desc {
  max-width: 46ch;
  font-size: 1.08rem;
  color: var(--c-bone-dim);
  margin-bottom: 2.4rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.6rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.4rem, 3vw, 2.6rem);
  align-items: center;
  padding-top: 2.2rem;
  border-top: 1px solid var(--c-navy-line);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat__num,
.stat__suffix {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 2rem;
  color: var(--c-gold-light);
  display: inline;
}

.stat__label {
  font-size: .74rem;
  letter-spacing: .05em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: .3rem;
  max-width: 14ch;
}

.stat__divider {
  width: 1px;
  height: 40px;
  background: var(--c-navy-line);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  z-index: 2;
  font-size: .65rem;
  letter-spacing: .3em;
  color: var(--text-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--c-gold), transparent);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -34px;
  left: 0;
  width: 100%;
  height: 34px;
  background: linear-gradient(var(--c-gold-light), transparent);
  animation: scrollLine 2s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
  to {
    top: 34px;
  }
}

/* Reveal-on-scroll base */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================== MARQUEE ================================= */
.marquee {
  background: var(--c-navy-950);
  border-top: 1px solid var(--c-navy-line);
  border-bottom: 1px solid var(--c-navy-line);
  padding: 1.1rem 0;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 1.4rem;
  animation: marqueeScroll 34s linear infinite;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .06em;
  color: var(--c-bone-dim);
}

.marquee__sep {
  color: var(--c-gold);
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ================================ ABOUT =================================== */
.about {
  padding: var(--section-pad) 0;
  background: var(--bg-body);
}

.about__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about__media-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about__media-glow {
  position: absolute;
  inset: -30px;
  background: var(--grad-duality-soft);
  filter: blur(60px);
  z-index: 0;
  border-radius: 50%;
}

.about__img {
  position: absolute;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.65);
}

.about__img--main {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(160deg, rgba(11, 34, 51, 0.15), rgba(6, 9, 12, 0.55)),
    url('../assets/images/about-main.jpeg') center / cover no-repeat;
  border: 1px solid rgba(227, 167, 61, 0.18);
  filter: brightness(200%);
}

.about__img--sub {
  width: 46%;
  aspect-ratio: 1;
  right: -8%;
  bottom: -10%;
  z-index: 2;
  filter: brightness(120%);
  background:
    linear-gradient(160deg, rgba(200, 32, 47, 0.2), rgba(6, 9, 12, 0.55)),
    url('../assets/images/about-sub.jpeg') center / cover no-repeat;
  border: 3px solid var(--c-ink);
}

.about__badge {
  position: absolute;
  left: -6%;
  top: 8%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .8rem;
  background: rgba(8, 24, 36, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(227, 167, 61, 0.3);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.7);
}

.about__badge svg {
  color: var(--c-gold);
  flex-shrink: 0;
}

.about__badge strong {
  display: block;
  font-size: .92rem;
  color: var(--c-bone);
}

.about__badge span {
  font-size: .72rem;
  color: var(--text-muted);
}

.about__lead {
  font-size: 1.05rem;
  color: var(--c-bone-dim);
  margin: 1.4rem 0 1.1rem;
}

.about__content>p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: .8rem;
}

.about__points {
  display: grid;
  gap: 1.3rem;
  margin-top: 2.2rem;
}

.point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.point__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(227, 167, 61, 0.08);
  border: 1px solid rgba(227, 167, 61, 0.25);
  color: var(--c-gold);
}

.point h3 {
  font-size: 1.02rem;
  color: var(--c-bone);
  margin-bottom: .2rem;
}

.point p {
  font-size: .92rem;
  color: var(--text-muted);
}

/* ================================ WHY ===================================== */
.why {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
  position: relative;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.why-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--c-navy-line);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  transition: transform var(--dur-mid) var(--ease-out), border-color var(--dur-mid), box-shadow var(--dur-mid);
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-duality);
  opacity: 0;
  transition: opacity var(--dur-mid);
  z-index: 0;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(227, 167, 61, 0.35);
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.6);
}

.why-card>* {
  position: relative;
  z-index: 1;
}

.why-card__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--c-steel-dim);
  margin-bottom: 1.2rem;
}

.why-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(227, 167, 61, 0.08);
  color: var(--c-gold);
  margin-bottom: 1.4rem;
  transition: background var(--dur-mid), color var(--dur-mid), transform var(--dur-mid);
}

.why-card:hover .why-card__icon {
  background: var(--grad-duality);
  color: var(--c-ink);
  transform: rotate(-8deg) scale(1.05);
}

.why-card h3 {
  font-size: 1.12rem;
  color: var(--c-bone);
  margin-bottom: .6rem;
}

.why-card p {
  font-size: .92rem;
  color: var(--text-muted);
}

/* ============================== PROGRAMS ================================== */
.programs {
  padding: var(--section-pad) 0;
  background: var(--bg-body);
}

.programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.program-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--c-navy-line);
  transition: transform var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid);
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -22px rgba(0, 0, 0, 0.65);
}

.program-card__media {
  aspect-ratio: 16/11;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: transform .8s var(--ease-out);
  overflow: hidden;
}

.program-card:hover .program-card__media {
  transform: scale(1.06);
}

.program-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 9, 12, 0.9), rgba(6, 9, 12, 0.1) 60%);
}

.program-card__media--mma {
  background:
    linear-gradient(rgba(0, 0, 0, .35), rgba(0, 0, 0, .65)),
    url("../assets/images/mma.png") center/cover no-repeat;
  filter: brightness(120%);
}

.program-card__media--muaythai {
  background:
    linear-gradient(rgba(0, 0, 0, .35), rgba(0, 0, 0, .65)),
    url("../assets/images/muay-thai.jpeg") center/cover no-repeat;
  filter: brightness(150%);
}

.program-card__media--bjj {
  background:
    linear-gradient(rgba(0, 0, 0, .35), rgba(0, 0, 0, .65)),
    url("../assets/images/bjj.png") center/cover no-repeat;
  filter: brightness(120%);
}

.program-card__media--boxing {
  background:
    linear-gradient(rgba(0, 0, 0, .35), rgba(0, 0, 0, .65)),
    url("../assets/images/boxing.png") center/cover no-repeat;
  filter: brightness(150%);
}

.program-card__media--kickboxing {
  background:
    linear-gradient(rgba(0, 0, 0, .35), rgba(0, 0, 0, .65)),
    url("../assets/images/kickboxing.png") center/cover no-repeat;
  filter: brightness(120%);
}

.program-card__media--kids {
  background:
    linear-gradient(rgba(0, 0, 0, .35), rgba(0, 0, 0, .65)),
    url("../assets/images/s&c.jpeg") center/cover no-repeat;
  filter: brightness(120%);
}

.program-card__media--kids2 {
  background:
    linear-gradient(rgba(0, 0, 0, .35), rgba(0, 0, 0, .65)),
    url("../assets/images/kids.png") center/cover no-repeat;
  filter: brightness(120%);
}

.program-card__body {
  padding: 1.7rem 1.7rem 2rem;
}

.program-card__level {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  font-weight: 700;
}

.program-card__body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 1.35rem;
  color: var(--c-bone);
  margin: .6rem 0 .6rem;
}

.program-card__body p {
  font-size: .92rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.program-card__link {
  font-size: .85rem;
  font-weight: 700;
  color: var(--c-bone);
  display: inline-flex;
  gap: .4rem;
}

.program-card__link span {
  transition: transform var(--dur-fast) var(--ease-out);
}

.program-card:hover .program-card__link span {
  transform: translateX(5px);
}

.program-card:hover .program-card__link {
  color: var(--c-gold-light);
}

/* ============================== COACHES ==================================== */
.coaches {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}

.coaches__spotlight {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--c-navy-line);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem);
}

.coaches__spotlight-media {
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  background:
    linear-gradient(200deg, rgba(11, 34, 51, 0.2), rgba(6, 9, 12, 0.35)),
    url('../assets/images/coach.png') center 25% / cover no-repeat;
  border: 1px solid rgba(227, 167, 61, 0.25);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.2rem;
}

.coaches__spotlight-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 9, 12, 0.85), transparent 55%);
  border-radius: var(--radius-md);
}

.coaches__spotlight-socials {
  position: relative;
  z-index: 1;
  display: flex;
  gap: .5rem;
}

.coaches__spotlight-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(245, 241, 230, 0.12);
  backdrop-filter: blur(6px);
  font-size: .72rem;
  font-weight: 700;
  border: 1px solid rgba(245, 241, 230, 0.2);
  transition: background var(--dur-fast), color var(--dur-fast);
}

.coaches__spotlight-socials a:hover {
  background: var(--c-gold);
  color: var(--c-ink);
}

.coaches__spotlight-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--c-bone);
  margin: .5rem 0 1rem;
}

.coaches__spotlight-body p {
  color: var(--text-muted);
  font-size: .98rem;
  margin-bottom: 1rem;
}

.coaches__spotlight-body p em {
  color: var(--c-gold-light);
  font-style: normal;
  font-weight: 700;
}

.coach-card__role {
  display: block;
  font-size: .78rem;
  letter-spacing: .06em;
  color: var(--c-gold-light);
  text-transform: uppercase;
  font-weight: 700;
}

/* ============================== SCHEDULE =================================== */
.schedule {
  padding: var(--section-pad) 0;
  background: var(--bg-body);
}

.schedule__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: center;
  margin-bottom: 2.6rem;
}

.schedule__tab {
  padding: .6rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--c-navy-line);
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--dur-fast) var(--ease-out);
}

.schedule__tab:hover {
  color: var(--c-bone);
  border-color: rgba(227, 167, 61, 0.4);
}

.schedule__tab.is-active {
  background: var(--grad-duality);
  color: var(--c-ink);
  border-color: transparent;
}

.schedule__table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-navy-line);
}

.schedule__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
  background: var(--bg-card);
}

.schedule__table th,
.schedule__table td {
  padding: 1.1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--c-navy-line);
  font-size: .88rem;
}

.schedule__table thead th {
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  background: rgba(227, 167, 61, 0.05);
}

.schedule__time {
  color: var(--text-muted);
  font-weight: 700;
  white-space: nowrap;
  line-height: 1.4;
}

.schedule__note {
  text-align: center;
  margin-top: 1.4rem;
  font-size: .85rem;
  color: var(--c-steel-dim);
}

.schedule__table td {
  line-height: 1.8;
}

.schedule__table td .tag {
  margin: .15rem .3rem .15rem 0;
}

.schedule__closed {
  color: var(--c-steel-dim);
}

.schedule__table tbody tr:last-child td {
  border-bottom: none;
}

.schedule__table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.tag {
  display: inline-block;
  padding: .35rem .7rem;
  border-radius: 6px;
  font-size: .76rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: opacity var(--dur-fast);
}

.tag--mma {
  background: rgba(200, 32, 47, 0.14);
  color: #ff8a92;
  border-color: rgba(200, 32, 47, 0.3);
}

.tag--muaythai {
  background: rgba(227, 167, 61, 0.14);
  color: var(--c-gold-light);
  border-color: rgba(227, 167, 61, 0.32);
}

.tag--bjj {
  background: rgba(26, 66, 88, 0.5);
  color: #a9d3e8;
  border-color: rgba(26, 66, 88, 0.9);
}

.tag--boxing {
  background: rgba(147, 164, 179, 0.14);
  color: var(--c-steel);
  border-color: rgba(147, 164, 179, 0.3);
}

.tag--kids {
  background: rgba(245, 241, 230, 0.08);
  color: var(--c-bone-dim);
  border-color: rgba(245, 241, 230, 0.2);
}

.schedule__table tr.is-dimmed .tag {
  opacity: .18;
}

/* ============================== MEMBERSHIP ================================= */
.membership {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}

.membership__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  align-items: stretch;
}

.plan-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--c-navy-line);
  border-radius: var(--radius-md);
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid);
}

.plan-card:hover {
  transform: translateY(-6px);
}

.plan-card--featured {
  border-color: rgba(227, 167, 61, 0.5);
  background: linear-gradient(180deg, rgba(227, 167, 61, 0.07), var(--bg-card) 40%);
  box-shadow: 0 30px 60px -25px rgba(227, 167, 61, 0.25);
  transform: scale(1.03);
}

.plan-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.plan-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-duality);
  color: var(--c-ink);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .45rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-card__name {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.5rem;
  color: var(--c-bone);
}

.plan-card__desc {
  font-size: .88rem;
  color: var(--text-muted);
  margin: .6rem 0 1.6rem;
  min-height: 2.6em;
}

.plan-card__price {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--c-gold-light);
  margin-bottom: .4rem;
}

.plan-card__price-alt {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 1.6rem;
}

.plan-card__currency {
  font-size: 1.4rem;
  vertical-align: top;
  margin-right: 2px;
}

.plan-card__period {
  font-family: var(--font-body);
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.plan-card__features {
  flex-grow: 1;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.plan-card__features li {
  position: relative;
  padding-left: 1.6rem;
  font-size: .9rem;
  color: var(--c-bone-dim);
}

.plan-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--c-gold);
  font-weight: 800;
  font-size: 1rem;
}

/* ============================= ACHIEVEMENTS ================================= */
.achievements {
  padding: var(--section-pad) 0;
  background: var(--bg-body);
}

.achievements__counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.counter-card {
  text-align: center;
  padding: 2.4rem 1rem;
  border: 1px solid var(--c-navy-line);
  border-radius: var(--radius-md);
  background: var(--bg-card);
}

.counter-card__num,
.counter-card__suffix {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--c-gold-light);
  display: inline;
}

.counter-card__label {
  display: block;
  margin-top: .6rem;
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.story-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--c-navy-line);
  transition: transform var(--dur-mid) var(--ease-out);
}

.story-card:hover {
  transform: translateY(-6px);
}

.story-card__media {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
}

.story-card__media--1 {
  background:
    linear-gradient(rgba(0, 0, 0, .35), rgba(0, 0, 0, .65)),
    url("../assets/images/fitness.png") center/cover no-repeat;
}

.story-card__media--2 {
  background:
    linear-gradient(rgba(0, 0, 0, .35), rgba(0, 0, 0, .65)),
    url("../assets/images/weight-loss.png") center/cover no-repeat;
  filter: saturate(150%);
}

.story-card__media--3 {
  background:
    linear-gradient(rgba(0, 0, 0, .35), rgba(0, 0, 0, .65)),
    url("../assets/images/confidence.jpeg") center/cover no-repeat;
}

.story-card__body {
  padding: 1.7rem 1.6rem 2rem;
}

.story-card__tag {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  font-weight: 700;
}

.story-card__body h3 {
  font-size: 1.12rem;
  color: var(--c-bone);
  margin: .7rem 0 .7rem;
  line-height: 1.3;
}

.story-card__body p {
  font-size: .89rem;
  color: var(--text-muted);
}

/* ============================= TESTIMONIALS ================================= */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}

.testimonial-slider {
  position: relative;
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.testimonial-slider__track {
  position: relative;
  flex-grow: 1;
  min-height: 260px;
  overflow: hidden;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
  pointer-events: none;
}

.testimonial-card.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.5;
  color: var(--c-bone);
  margin-bottom: 1.8rem;
}

.testimonial-card figcaption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
}

.testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--c-gold);
}

.testimonial-card__avatar--1 {
  background:
    linear-gradient(rgba(0, 0, 0, .15), rgba(0, 0, 0, .15)),
    url("../assets/images/test-1.png") center/cover no-repeat;
}

.testimonial-card__avatar--2 {
  background:
    linear-gradient(rgba(0, 0, 0, .15), rgba(0, 0, 0, .15)),
    url("../assets/images/test-2.avif") center/cover no-repeat;
}

.testimonial-card__avatar--3 {
  background:
    linear-gradient(rgba(0, 0, 0, .15), rgba(0, 0, 0, .15)),
    url("../assets/images/test-3.png") center/cover no-repeat;
}

.testimonial-card__avatar--4 {
  background:
    linear-gradient(rgba(0, 0, 0, .15), rgba(0, 0, 0, .15)),
    url("../assets/images/test-3.png") center/cover no-repeat;
}

.testimonial-card figcaption strong {
  display: block;
  font-size: .95rem;
  color: var(--c-bone);
}

.testimonial-card figcaption em {
  font-style: normal;
  font-size: .78rem;
  color: var(--text-muted);
}

.testimonial-slider__nav {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--c-navy-line);
  display: grid;
  place-items: center;
  color: var(--c-bone);
  flex-shrink: 0;
  transition: all var(--dur-fast) var(--ease-out);
}

.testimonial-slider__nav:hover {
  background: var(--grad-duality);
  color: var(--c-ink);
  border-color: transparent;
}

.testimonial-slider__dots {
  position: absolute;
  bottom: -2.4rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: .5rem;
}

.testimonial-slider__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-navy-line);
  transition: background var(--dur-fast), transform var(--dur-fast);
}

.testimonial-slider__dots button.is-active {
  background: var(--c-gold);
  transform: scale(1.3);
}

.testimonials__cta {
  text-align: center;
  margin-top: 3rem;
}

/* ================================ GALLERY =================================== */
.gallery {
  padding: var(--section-pad) 0;
  background: var(--bg-body);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows:
    220px 220px 220px;
  gap: 1rem;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.gallery__item--1 {
  grid-column: span 3;
  grid-row: span 2;
  --img: url('../assets/images/gal-1.jpeg');
  --img-pos: center;
}

.gallery__item--2 {
  grid-column: span 3;
  grid-row: span 1;
  --img: url('../assets/images/gal-2.jpeg');
  --img-pos: center;
}

.gallery__item--3 {
  grid-column: span 3;
  grid-row: span 1;
  --img: url('../assets/images/gal-3.jpeg');
  --img-pos: center;
}

.gallery__item--4 {
  grid-column: span 2;
  grid-row: span 1;
  --img: url('../assets/images/gal-4.jpeg');
  --img-pos: center;
}

.gallery__item--5 {
  grid-column: span 2;
  grid-row: span 1;
  --img: url('../assets/images/gal-5.jpeg');
  --img-pos: center;
}

.gallery__item--6 {
  grid-column: span 2;
  grid-row: span 1;
  --img: url('../assets/images/gal-6.jpeg');
  --img-pos: center 20%;
}

.gallery__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 9, 12, 0.2), rgba(6, 9, 12, 0.02)), var(--img) var(--img-pos) / cover no-repeat;
  transition: transform .7s var(--ease-out);
}

.gallery__item:hover::before {
  transform: scale(1.08);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.3rem;
  background: linear-gradient(0deg, rgba(6, 9, 12, 0.85), transparent 55%);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease-out);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__overlay span {
  font-size: .95rem;
  font-weight: 700;
  color: var(--c-bone);
}

/* =============================== CTA BANNER ================================= */
.cta-banner {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: linear-gradient(120deg, var(--c-navy-900), var(--c-ink) 60%);
  border-top: 1px solid var(--c-navy-line);
  border-bottom: 1px solid var(--c-navy-line);
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent, rgba(227, 167, 61, 0.06), transparent 30%);
  animation: ctaRotate 16s linear infinite;
}

@keyframes ctaRotate {
  to {
    transform: rotate(360deg);
  }
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-inline: auto;
}

.cta-banner h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--c-bone);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  font-size: 1.05rem;
}

/* =================================== FAQ ===================================== */
.faq {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}

.faq__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
}

.faq__intro .btn {
  margin-top: 1rem;
}

.faq-item {
  border-bottom: 1px solid var(--c-navy-line);
}

.faq-item:first-child {
  border-top: 1px solid var(--c-navy-line);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--c-bone);
  gap: 1rem;
}

.faq-item__icon {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--c-gold-light);
  transition: transform var(--dur-fast) var(--ease-out);
}

.faq-item__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.faq-item__icon::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item__q[aria-expanded="true"] .faq-item__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease-in-out);
}

.faq-item__a p {
  padding-bottom: 1.6rem;
  color: var(--text-muted);
  font-size: .94rem;
  max-width: 60ch;
}

/* ================================= CONTACT ==================================== */
.contact {
  padding: var(--section-pad) 0;
  background: var(--bg-body);
}

.contact__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
}

.contact__info>p {
  color: var(--text-muted);
  margin: 1rem 0 2rem;
  max-width: 42ch;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.contact__details li {
  display: flex;
  align-items: center;
  gap: .9rem;
  font-size: .92rem;
  color: var(--c-bone-dim);
}

.contact__details svg {
  color: var(--c-gold);
  flex-shrink: 0;
}

.contact__socials {
  display: flex;
  gap: 1rem;
}

.contact__socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--c-navy-line);
  border-radius: 50%;
  transition: all var(--dur-fast) var(--ease-out);
}

.contact__socials a:hover {
  border-color: var(--c-gold);
  color: var(--c-gold-light);
  transform: translateY(-3px);
}

.contact__socials a.social--instagram { color: #e1306c; }
.contact__socials a.social--facebook { color: #1877f2; }

.contact__socials a.social--instagram:hover {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
}

.contact__socials a.social--facebook:hover {
  background: #1877f2;
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
}

.contact__form {
  background: var(--bg-card);
  border: 1px solid var(--c-navy-line);
  border-radius: var(--radius-md);
  padding: clamp(1.8rem, 3vw, 2.6rem);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .5rem;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--c-navy-line);
  border-radius: var(--radius-sm);
  color: var(--c-bone);
  transition: border-color var(--dur-fast), background var(--dur-fast);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-color: var(--bg-card);
  color: var(--c-bone);

  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23E3A73D' stroke-width='1.6' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form-group select option {
  background-color: var(--bg-card);
  color: var(--c-bone);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--c-steel-dim);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--c-gold);
  background: rgba(227, 167, 61, 0.04);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23E3A73D' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form-success {
  margin-top: 1.1rem;
  font-size: .88rem;
  color: var(--c-gold-light);
  text-align: center;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all var(--dur-mid) var(--ease-out);
}

.form-success.is-visible {
  max-height: 100px;
  opacity: 1;
  margin-top: 1.1rem;
}

/* ================================= FOOTER ===================================== */
.site-footer {
  background: var(--c-navy-950);
  border-top: 1px solid var(--c-navy-line);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr .8fr .8fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer__brand p {
  color: var(--text-muted);
  font-size: .9rem;
  margin: 1.2rem 0 1.4rem;
  max-width: 32ch;
}

.footer__socials {
  display: flex;
  gap: .7rem;
}

.footer__socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--c-navy-line);
  color: var(--c-bone-dim);
  transition: all var(--dur-fast) var(--ease-out);
}

.footer__socials a:hover {
  border-color: var(--c-gold);
  color: var(--c-gold-light);
  transform: translateY(-3px);
}

.footer__col h4 {
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: 1.3rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.footer__col a {
  font-size: .9rem;
  color: var(--c-bone-dim);
  transition: color var(--dur-fast);
}

.footer__col a:hover {
  color: var(--c-gold-light);
}

.footer__col--newsletter p {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.footer__newsletter {
  display: flex;
  gap: .6rem;
}

.footer__newsletter input {
  flex-grow: 1;
  padding: .75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--c-navy-line);
  border-radius: var(--radius-sm);
  color: var(--c-bone);
  font-size: .88rem;
}

.footer__newsletter input:focus {
  outline: none;
  border-color: var(--c-gold);
}

.footer__newsletter button {
  width: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--grad-duality);
  color: var(--c-ink);
  display: grid;
  place-items: center;
  transition: transform var(--dur-fast) var(--ease-out);
}

.footer__newsletter button:hover {
  transform: translateX(2px);
}

.footer__bottom {
  border-top: 1px solid var(--c-navy-line);
  padding: 1.6rem 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .6rem;
  font-size: .8rem;
  color: var(--c-steel-dim);
}

.footer__socials a.social--instagram,
.coaches__spotlight-socials a.social--instagram {
  color: #e1306c;
}
.footer__socials a.social--facebook {
  color: #1877f2;
}

.footer__socials a.social--instagram:hover,
.coaches__spotlight-socials a.social--instagram:hover {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  border-color: transparent;
  color: #fff;
}
.footer__socials a.social--facebook:hover {
  background: #1877f2;
  border-color: transparent;
  color: #fff;
}

/* ================================= LIGHTBOX ===================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(6, 9, 12, 0.94);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-mid) var(--ease-out), visibility var(--dur-mid);
  padding: 2rem;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__frame {
  max-width: 720px;
  width: 100%;
  transform: scale(.94);
  transition: transform var(--dur-mid) var(--ease-out);
}

.lightbox.is-open .lightbox__frame {
  transform: scale(1);
}

.lightbox__media {
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, var(--c-navy-700), var(--c-ink) 75%);
  border: 1px solid rgba(227, 167, 61, 0.25);
}

.lightbox__caption {
  text-align: center;
  margin-top: 1.2rem;
  color: var(--c-bone-dim);
  font-size: .95rem;
}

.lightbox__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--c-navy-line);
  color: var(--c-bone);
  font-size: 1.6rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: all var(--dur-fast) var(--ease-out);
}

.lightbox__close:hover {
  border-color: var(--c-gold);
  color: var(--c-gold-light);
  transform: rotate(90deg);
}

/* ================================ BACK TO TOP ==================================== */
.back-to-top {
  position: fixed;
  right: 1.8rem;
  bottom: 1.8rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--c-navy-line);
  display: grid;
  place-items: center;
  color: var(--c-bone);
  z-index: 400;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--dur-fast) var(--ease-out);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--grad-duality);
  color: var(--c-ink);
  border-color: transparent;
}

/* =================================================================================
   RESPONSIVE
   ================================================================================= */

/* ==========================================================================
   LARGE DESKTOPS (1440px+)
   ========================================================================== */

@media (min-width: 1440px) {

  :root {
    --container-w: 1400px;
    --section-pad: 8rem;
  }

  .container {
    max-width: var(--container-w);
  }

  /* ---------- Typography ---------- */

  .section-title {
    font-size: clamp(3.2rem, 4vw, 4.6rem);
  }

  .section-sub {
    max-width: 780px;
    margin-inline: auto;
    font-size: 1.15rem;
  }

  /* ---------- Hero ---------- */

  .hero {
    min-height: 100vh;
  }

  .hero__content {
    max-width: 760px;
  }

  .hero__title {
    font-size: clamp(6rem, 7vw, 8rem);
    line-height: .88;
  }

  .hero__lead {
    max-width: 700px;
    font-size: 1.2rem;
    line-height: 1.8;
  }

  .hero__actions {
    margin-top: 2.4rem;
    gap: 1rem;
  }

  .hero__stats {
    margin-top: 4rem;
    gap: 3rem;
  }

  /* ---------- About ---------- */

  .about__grid {
    gap: 6rem;
  }

  .about__lead,
  .about__content>p {
    font-size: 1.08rem;
    line-height: 1.85;
  }

  /* ---------- Programs ---------- */

  .programs__grid {
    gap: 2rem;
  }

  .program-card {
    padding: 2rem;
  }

  /* ---------- Gallery ---------- */

  .gallery__grid {
    grid-template-rows: repeat(2, 300px);
    grid-auto-rows: 300px;
  }

  /* ---------- Coach ---------- */

  .coaches__spotlight {
    gap: 4rem;
  }

  .coaches__spotlight-media {
    max-width: 500px;
  }

  .coaches__spotlight-body h3 {
    font-size: 3rem;
  }

  .coaches__spotlight-body p {
    font-size: 1.08rem;
    line-height: 1.9;
  }

  /* ---------- Membership ---------- */

  .membership__grid {
    gap: 2rem;
  }

  .plan-card {
    padding: 2.6rem;
  }

  .plan-card__name {
    font-size: 1.7rem;
  }

  .plan-card__price {
    font-size: 2.3rem;
  }

  /* ---------- Footer ---------- */

  .footer__grid {
    gap: 4rem;
  }

}



/* ==========================================================================
   ULTRAWIDE / 4K (1920px+)
   ========================================================================== */

@media (min-width: 1920px) {

  :root {
    --container-w: 1600px;
    --section-pad: 9rem;
  }

  .container {
    max-width: var(--container-w);
  }

  /* ---------- Typography ---------- */

  .section-title {
    font-size: clamp(4rem, 4vw, 5rem);
  }

  .section-sub {
    max-width: 900px;
    font-size: 1.25rem;
  }

  /* ---------- Hero ---------- */

  .hero__content {
    max-width: 900px;
  }

  .hero__title {
    font-size: clamp(7rem, 8vw, 9rem);
  }

  .hero__lead {
    max-width: 800px;
    font-size: 1.3rem;
  }

  .hero__actions {
    gap: 1.3rem;
  }

  .hero__stats {
    gap: 4rem;
  }

  .hero__stat strong {
    font-size: 3rem;
  }

  /* ---------- About ---------- */

  .about__grid {
    gap: 8rem;
  }

  .about__lead,
  .about__content>p {
    font-size: 1.15rem;
  }

  /* ---------- Programs ---------- */

  .programs__grid {
    gap: 2.5rem;
  }

  .program-card {
    padding: 2.5rem;
  }

  /* ---------- Gallery ---------- */

  .gallery__grid {
    grid-template-rows: repeat(2, 360px);
    grid-auto-rows: 360px;
  }

  /* ---------- Coach ---------- */

  .coaches__spotlight {
    gap: 5rem;
  }

  .coaches__spotlight-media {
    max-width: 600px;
  }

  .coaches__spotlight-body h3 {
    font-size: 3.5rem;
  }

  .coaches__spotlight-body p {
    font-size: 1.15rem;
  }

  /* ---------- Membership ---------- */

  .membership__grid {
    gap: 2.5rem;
  }

  .plan-card {
    padding: 3rem;
  }

  .plan-card__name {
    font-size: 1.9rem;
  }

  .plan-card__price {
    font-size: 2.6rem;
  }

}

@media (min-width: 768px) and (max-width: 1080px) {

  .hero {
    min-height: 90vh;
  }

  .hero__content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    align-items: center;
  }

  .hero__eyebrow {
    justify-content: center;
  }

  .hero__title {
    font-size: clamp(4rem, 8vw, 5.5rem);
    line-height: .9;
  }

  .hero__lead {
    max-width: 620px;
    margin: 1.5rem auto 0;
    font-size: 1.15rem;
    line-height: 1.7;
  }

  .hero__actions {
    justify-content: center;
    margin-top: 2rem;
  }

  .hero__stats {
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
  }

}

/* -------------------------------------------------------------------------- */
/* Large Tablets */
/* -------------------------------------------------------------------------- */
@media (max-width: 1080px) {

  .why__grid,
  .programs__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .achievements__counters {
    grid-template-columns: repeat(2, 1fr);
  }

  .stories__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coaches__spotlight {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .coaches__spotlight-media {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 4 / 5;
    margin: 0 auto 2rem;
  }

  .coaches__spotlight-body {
    width: 100%;
  }

}

/* ========================================================================== */
/* iPad Pro Portrait / Large Tablets (961px - 1080px) */
/* ========================================================================== */
@media (min-width: 961px) and (max-width: 1080px) {

  /* ---------- Layout ---------- */

  :root {
    --section-pad: clamp(5rem, 8vw, 7rem);
  }

  .container {
    width: min(100% - 3rem, 980px);
  }

  /* ---------- Header ---------- */

  .site-header {
    padding: 1rem 0;
  }

  .main-nav__list {
    gap: 1.4rem;
  }

  .main-nav__link {
    font-size: .82rem;
  }

  .site-header__actions .btn {
    padding: .75rem 1.2rem;
  }

  /* ---------- Hero ---------- */

  .hero {
    min-height: 95vh;
  }

  .hero__content {
    max-width: 620px;
  }

  .hero__title {
    font-size: clamp(4.8rem, 8vw, 6.2rem);
    line-height: .88;
  }

  .hero__lead {
    max-width: 600px;
    font-size: 1.05rem;
    line-height: 1.75;
  }

  .hero__actions {
    gap: 1rem;
  }

  .hero__stats {
    gap: 2rem;
    margin-top: 2.8rem;
  }

  /* ---------- About ---------- */

  .about__grid {
    gap: 3rem;
  }

  /* ---------- Why ---------- */

  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ---------- Programs ---------- */

  .programs__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ---------- Coaches ---------- */

  .coaches__spotlight {
    gap: 2.5rem;
  }

  /* ---------- Membership ---------- */

  .membership__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin-inline: auto;
    gap: 1.8rem;
  }

  .plan-card:last-child {
    grid-column: 1 / -1;
    max-width: 420px;
    margin-inline: auto;
  }

  .plan-card {
    padding: 2rem 1.6rem;
  }

  .plan-card__name {
    font-size: 1.35rem;
  }

  /* ---------- Stories ---------- */

  .stories__grid {
    grid-template-columns: 1fr;
  }

  /* ---------- Gallery ---------- */

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 240px);
    grid-auto-rows: 240px;
  }

  .gallery__item--1 {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery__item--2 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery__item--3 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery__item--4,
  .gallery__item--5,
  .gallery__item--6 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .coaches__spotlight-body h3 {
    font-size: clamp(2.3rem, 3vw, 2.8rem);
  }

  .coaches__spotlight-body p {
    font-size: 1.05rem;
    line-height: 1.9;
  }

  .coach-card__role {
    font-size: .9rem;
  }

  .section-title {
    font-size: clamp(3rem, 4vw, 3.8rem);
  }

  .section-sub {
    font-size: 1.1rem;
    max-width: 720px;
    margin-inline: auto;
  }

  .about__content>p,
  .about__lead,
  .contact p,
  .story-card p,
  .program-card p {
    font-size: 1.02rem;
    line-height: 1.85;
  }

  .btn {
    padding: .95rem 1.7rem;
  }

  .btn--lg {
    padding: 1.15rem 2.2rem;
  }

  /* ---------- FAQ ---------- */

  .faq__grid {
    gap: 2.5rem;
  }

  /* ---------- Contact ---------- */

  .contact__grid {
    gap: 3rem;
  }

  /* ---------- Footer ---------- */

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* -------------------------------------------------------------------------- */
/* Tablets */
/* -------------------------------------------------------------------------- */
@media (max-width: 960px) {

  /* Mobile Navigation */

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(78vw, 340px);
    height: 100dvh;
    background: rgba(8, 24, 36, .98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-left: 1px solid var(--c-navy-line);

    display: flex;
    align-items: center;
    padding: 2rem;

    transform: translateX(100%);
    transition: transform .35s ease;

    z-index: 2000;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
  }

  .main-nav__link {
    font-size: 1.05rem;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 2001;
  }

  .site-header {
    z-index: 1000;
  }

  .site-header__actions {
    display: none;
  }

  /* Layout */

  .about__grid,
  .faq__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .about__media-frame {
    max-width: 440px;
    margin-inline: auto;
  }

  .membership__grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-inline: auto;
  }

  .plan-card--featured,
  .plan-card--featured:hover {
    transform: translateY(-6px);
  }

  /* Gallery */

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
    grid-auto-rows: 200px;
  }

  .gallery__item--1 {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery__item--2,
  .gallery__item--3,
  .gallery__item--4,
  .gallery__item--5,
  .gallery__item--6 {
    grid-column: span 1;
    grid-row: span 1;
  }

}


/* -------------------------------------------------------------------------- */
/* Large Phones */
/* -------------------------------------------------------------------------- */
@media (max-width:700px) {

  .why__grid,
  .programs__grid {
    grid-template-columns: 1fr;
  }

  .achievements__counters {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero__scroll {
    display: none;
  }

  .hero__stats {
    gap: 1.4rem;
  }

  .stat__divider {
    display: none;
  }

}


/* -------------------------------------------------------------------------- */
/* Phones */
/* -------------------------------------------------------------------------- */
@media (max-width:480px) {

  .site-header__inner {
    gap: .5rem;
  }

  .brand {
    gap: .55rem;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .nav-toggle {
    width: 40px;
    flex-shrink: 0;
  }

  .brand__name {
    font-size: .8rem;
  }

  .brand__sub {
    font-size: .52rem;
  }

  .hero__title {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .section-title {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .btn--lg {
    padding: 1rem 1.8rem;
    font-size: .9rem;
  }

  .achievements__counters {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
  }

  .hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
    justify-items: center;
    align-items: start;
    width: 100%;
    max-width: 340px;
    margin: 3rem auto 0;
  }

  .hero__stat {
    width: 100%;
    text-align: center;
  }

  .hero__stat strong {
    display: block;
  }

  .hero__stat span {
    display: block;
    margin-top: .5rem;
    line-height: 1.5;
  }

  .stat__divider {
    display: none;
  }

  .stat__divider {
    display: none;
  }

  /* Coaches */

  .coaches__spotlight {
    padding: 1.2rem;
    gap: 1.5rem;
  }

  .coaches__spotlight-media {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .coaches__spotlight-body {
    min-width: 0;
  }

  .coaches__spotlight-body h3 {
    font-size: 2rem;
  }

  .coaches__spotlight-body p {
    font-size: .9rem;
    line-height: 1.7;
  }

  /* Gallery */

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 180px);
    grid-auto-rows: 180px;
  }

  .gallery__item--1,
  .gallery__item--2,
  .gallery__item--3,
  .gallery__item--4,
  .gallery__item--5,
  .gallery__item--6 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .about__img--sub {
    display: none;
  }



  .about__media-frame {
    overflow: hidden;
  }

  .about__badge {
    left: 1rem;
    top: 1rem;
  }

}


/* -------------------------------------------------------------------------- */
/* Very Small Phones */
/* -------------------------------------------------------------------------- */
@media (max-width:400px) {

  .membership__grid {
    max-width: 100%;
    gap: 1rem;
  }

  .plan-card {
    width: 100%;
    min-width: 0;
    padding: 1.5rem;
  }

  .plan-card--featured {
    transform: none;
  }

  .plan-card--featured:hover {
    transform: translateY(-6px);
  }

  .plan-card__badge {
    font-size: .65rem;
    padding: .35rem .8rem;
  }

  .plan-card__name {
    font-size: 1.3rem;
  }

  .plan-card__price {
    font-size: 1.8rem;
  }

  .plan-card__features li {
    font-size: .85rem;
    padding-left: 1.4rem;
    word-break: break-word;
  }

  .plan-card .btn {
    width: 100%;
  }

  .testimonials__cta .btn {
    width: 100%;
    padding: 0.85rem 1.2rem;
    font-size: 0.82rem;
    gap: 0.5rem;
  }

}

/* Bizmorph */

.bm-input {
  color: black;

}

.bm-button {
  box-shadow: 0 0 24px rgba(227, 167, 61, 0.6);
  transition: box-shadow 0.3s ease;
  background: transparent;
}

.bm-button:hover {
  box-shadow: 0 0 36px rgba(227, 167, 61, 0.8);
}