@font-face {
  font-family: "Forexs";
  src: url("/assets/fonts/Forexs.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Forexs Regular DE";
  src: url("/assets/fonts/Forexs-Regular-DE.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Luxe Uno";
  src: url("/assets/fonts/LuxeUno-Regular.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Luxe Uno";
  src: url("/assets/fonts/LuxeUno-Light.otf") format("opentype");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Luxe Uno";
  src: url("/assets/fonts/LuxeUno-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-display: swap;
}

:root {
  --black: #040404;
  --black-soft: #090909;
  --panel: #10100f;
  --panel-soft: #151412;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(138, 111, 85, 0.65);
  --gold: #8a6f55;
  --gold-light: #b59a7b;
  --text: #f6f2eb;
  --muted: #c8c0b6;
  --dim: #898177;
  --shadow: rgba(0, 0, 0, 0.55);
  --font-display: "Forexs", "Forexs Regular DE", Georgia, serif;
  --font-body: "Luxe Uno", Arial, sans-serif;
  --header-h: 84px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.is-transitioning main,
body.is-transitioning .site-footer {
  opacity: 0.18;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

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

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

a:hover {
  color: var(--gold-light);
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

main {
  overflow: hidden;
  background: var(--black);
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 28px;
  background: rgba(0, 0, 0, 0.65);
  border-bottom: 2px solid var(--gold);
  backdrop-filter: saturate(180%) blur(6px);
  -webkit-backdrop-filter: saturate(180%) blur(6px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 124px;
  min-width: 110px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1;
  color: #fff;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  white-space: nowrap;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-social {
  display: flex;
  gap: 10px;
  padding-left: 6px;
}

.nav-social a {
  justify-content: center;
  width: 34px;
  height: 34px;
  min-height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
}

.nav-social a::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 36px;
  height: 2px;
  margin: 8px auto;
  border-radius: 2px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.page-loader {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: grid;
  place-items: center;
  background: #000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.page-loader.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.page-loader img {
  width: min(520px, 72vw);
  height: auto;
  animation: loaderBreath 1800ms ease-in-out infinite;
}

@keyframes loaderBreath {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.985);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 76px) 7vw 96px;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 38%;
  background: #040404;
  opacity: 0.55;
  box-shadow: 0 -80px 120px 120px rgba(4, 4, 4, 0.46);
}

.hero-content {
  width: min(840px, 92vw);
  margin-top: 24px;
}

.eyebrow,
.kicker {
  margin: 0 0 16px;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero h1,
.subhero h1,
.text-block h2,
.feature-grid h2,
.training-card h2,
.contact-panel h2,
.faq-group h2,
.legal-content h2,
.legal-content h3,
.site-footer h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 920px;
  font-size: 66px;
  overflow-wrap: break-word;
  hyphens: manual;
}

.hero-content > p {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
  line-height: 1.55;
}

.hero-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.center-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 24px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
  background: rgba(0, 0, 0, 0.22);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  color: #fff;
  border-color: var(--gold-light);
  background: rgba(138, 111, 85, 0.35);
  transform: translateY(-1px);
}

.button-solid {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}

.button-solid:hover {
  background: var(--gold-light);
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0;
}

.section.narrow {
  width: min(900px, calc(100% - 48px));
}

.lead-copy {
  color: var(--muted);
  font-size: 22px;
  line-height: 1.65;
}

.lead-copy p {
  margin: 0 0 20px;
}

.lead-copy p:last-child {
  margin-bottom: 0;
}

.intro-split,
.image-copy,
.contact-grid,
.app-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 64px;
}

.image-copy:not(.image-left) .image-panel {
  order: 2;
}

.image-copy:not(.image-left) .text-block {
  order: 1;
}

.text-block {
  max-width: 640px;
}

.text-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.text-block h2 {
  font-size: 44px;
}

.text-block p:not(.kicker) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.triptych {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  min-height: 430px;
}

.triptych img,
.image-panel img,
.training-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.triptych img {
  min-height: 390px;
}

.triptych img:nth-child(2) {
  margin-top: 38px;
}

.triptych img:nth-child(3) {
  margin-top: 76px;
}

.image-panel {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(138, 111, 85, 0.28);
  box-shadow: 0 28px 80px var(--shadow);
}

.image-panel img {
  min-height: 520px;
}

.band {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 560px;
  display: grid;
  align-items: center;
  justify-items: center;
  margin: 28px 0;
  padding: 120px 24px;
  background-image: var(--band-image);
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.band::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
}

.band .text-block {
  width: min(860px, 100%);
}

.feature-grid,
.training-grid {
  display: grid;
  gap: 18px;
}

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

.feature-grid article,
.training-card,
.contact-panel,
.faq-item,
.membership-standard {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.feature-grid article {
  min-height: 280px;
  padding: 34px;
}

.feature-grid h2 {
  font-size: 30px;
}

.feature-grid p,
.training-card p,
.contact-panel p,
.membership-notes p {
  color: var(--muted);
}

.feature-grid .button {
  margin-top: 18px;
}

.closing-line {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 64px 24px 104px;
  text-align: center;
}

.closing-line p {
  width: min(860px, 100%);
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1.15;
}

.app-section {
  padding-top: 64px;
  padding-bottom: 64px;
  border-top: 1px solid rgba(138, 111, 85, 0.28);
  border-bottom: 1px solid rgba(138, 111, 85, 0.28);
}

.app-badges {
  display: grid;
  grid-template-columns: 96px minmax(0, 180px) minmax(0, 205px);
  align-items: center;
  justify-content: end;
  gap: 16px;
}

.app-badges a {
  display: block;
}

.app-badges img {
  height: auto;
}

.app-logo {
  width: 88px;
  border-radius: 8px;
}

.training-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  width: min(1320px, calc(100% - 48px));
}

.training-card {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.training-card img {
  height: 260px;
  min-height: 260px;
}

.training-card h2 {
  padding: 24px 22px 0;
  font-size: 28px;
}

.training-card p {
  margin: 12px 0 0;
  padding: 0 22px 28px;
  font-size: 16px;
  line-height: 1.55;
}

.membership-standard {
  width: min(960px, calc(100% - 48px));
  padding: 72px 52px;
  text-align: center;
}

.membership-standard .text-block {
  max-width: 780px;
  margin: 0 auto;
}

.membership-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.membership-notes p {
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(138, 111, 85, 0.28);
  background: rgba(0, 0, 0, 0.22);
}

.contact-grid {
  align-items: stretch;
}

.contact-panel {
  padding: 42px;
}

.contact-panel h2 {
  font-size: 38px;
}

.contact-panel p {
  margin: 18px 0 0;
}

.contact-panel a,
.site-footer a,
.legal-content a {
  color: var(--gold-light);
}

.subhero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 420px;
  padding: calc(var(--header-h) + 88px) 7vw 76px;
  background: url("/assets/img/Club_04.webp") center / cover;
  isolation: isolate;
}

.subhero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.subhero > div {
  width: min(960px, 100%);
}

.subhero h1 {
  font-size: 58px;
}

.faq-wrap {
  display: grid;
  gap: 52px;
  width: min(980px, calc(100% - 48px));
}

.faq-group h2 {
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 34px;
}

.faq-item {
  margin-top: 12px;
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 18px 52px 18px 22px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  color: var(--gold-light);
  font-family: Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-answer {
  padding: 0 22px 24px;
  color: var(--muted);
}

.faq-answer p,
.faq-answer li {
  margin: 12px 0 0;
}

.faq-answer ul {
  margin: 10px 0 0;
  padding-left: 22px;
}

.legal-content {
  width: min(960px, calc(100% - 48px));
  margin: 0 auto;
  padding: 80px 0 120px;
  color: var(--muted);
}

.legal-content h2 {
  margin-top: 46px;
  color: #fff;
  font-size: 34px;
}

.legal-content h3 {
  margin-top: 28px;
  color: #fff;
  font-size: 26px;
}

.legal-content p,
.legal-content li {
  margin: 14px 0 0;
}

.legal-content ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.legal-lead {
  color: #fff;
  font-size: 20px;
}

.site-footer {
  border-top: 1px solid rgba(138, 111, 85, 0.35);
  background: #020202;
}

.footer-grid {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 36px;
  margin: 0 auto;
  padding: 64px 0 50px;
}

.footer-logo img {
  width: 220px;
  height: auto;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--gold-light);
  font-size: 22px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.footer-bottom {
  width: min(1180px, calc(100% - 48px));
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.floating-actions {
  position: fixed;
  z-index: 85;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 12px;
  justify-items: end;
  pointer-events: none;
}

.floating-member,
.floating-whatsapp {
  pointer-events: auto;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42);
}

.floating-member {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(6, 6, 6, 0.86);
  color: #fff;
  text-align: center;
  font-family: var(--font-display);
  font-size: 13px;
  line-height: 1.05;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.floating-whatsapp {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #25d366;
  color: #07180d;
  cursor: pointer;
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.whatsapp-popup {
  position: fixed;
  z-index: 88;
  right: 20px;
  bottom: 152px;
  width: min(320px, calc(100vw - 40px));
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(12, 12, 11, 0.96);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.52);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.whatsapp-popup.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.whatsapp-popup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.whatsapp-popup-head button {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.whatsapp-popup-body {
  padding: 18px;
}

.whatsapp-popup-body p {
  margin: 0 0 16px;
  color: var(--muted);
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 20px;
    font-size: 18px;
  }

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

@media (max-width: 900px) {
  :root {
    --header-h: 76px;
  }

  body {
    font-size: 16px;
  }

  .site-header {
    padding: 12px 20px;
  }

  .brand {
    width: 112px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    height: calc(100dvh - var(--header-h));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    padding: 34px 24px;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: 28px;
  }

  .nav-social a {
    font-size: 13px;
  }

  .hero {
    min-height: 86vh;
    padding: calc(var(--header-h) + 56px) 24px 72px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-content > p {
    font-size: 19px;
  }

  .section {
    width: min(100% - 40px, 760px);
    padding: 72px 0;
  }

  .intro-split,
  .image-copy,
  .contact-grid,
  .app-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .image-copy:not(.image-left) .image-panel,
  .image-copy:not(.image-left) .text-block {
    order: initial;
  }

  .text-block h2 {
    font-size: 36px;
  }

  .triptych {
    min-height: 0;
  }

  .triptych img,
  .triptych img:nth-child(2),
  .triptych img:nth-child(3) {
    min-height: 280px;
    margin-top: 0;
  }

  .image-panel,
  .image-panel img {
    min-height: 390px;
  }

  .feature-grid,
  .training-grid,
  .membership-notes {
    grid-template-columns: 1fr;
  }

  .training-card {
    min-height: 0;
  }

  .training-card img {
    height: 320px;
  }

  .app-badges {
    grid-template-columns: 86px 160px;
    justify-content: start;
  }

  .app-badges a:last-child {
    grid-column: 2;
  }

  .membership-standard {
    padding: 54px 28px;
  }

  .subhero h1 {
    font-size: 46px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: var(--header-h);
  }

  .hero {
    min-height: 82vh;
  }

  .hero h1 {
    font-size: 30px;
  }

  .closing-line p {
    font-size: 34px;
  }

  .hero-content > p,
  .lead-copy {
    font-size: 18px;
  }

  .triptych {
    grid-template-columns: 1fr;
  }

  .band {
    min-height: 470px;
  }

  .feature-grid article,
  .contact-panel {
    padding: 28px 22px;
  }

  .app-badges {
    grid-template-columns: 76px 150px;
  }

  .subhero {
    min-height: 360px;
    padding: calc(var(--header-h) + 54px) 24px 56px;
  }

  .subhero h1 {
    font-size: 38px;
  }

  .legal-content {
    padding-top: 56px;
  }

  .faq-item summary {
    font-size: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .floating-member {
    width: 78px;
    height: 78px;
    font-size: 11px;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 360px) {
  .hero h1,
  .subhero h1 {
    font-size: 28px;
  }
}

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

/* Live NIVO reconstruction */
.site-header {
  height: 86px;
  padding: 0;
  background: rgba(0, 0, 0, 0.65);
  border-bottom: 2px solid var(--gold);
}

.site-header-inner {
  width: min(1080px, calc(100% - 48px));
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.brand {
  width: 122px;
  min-width: 122px;
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: block;
  width: 44px;
  height: 34px;
}

.menu-toggle span {
  width: 40px;
  height: 2px;
  margin: 9px auto;
  background: #fff;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(5.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-5.5px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  z-index: 88;
  inset: 0;
  height: 100dvh;
  display: grid;
  place-items: center;
  justify-content: center;
  align-content: center;
  gap: 0;
  padding: 106px 24px 40px;
  background: rgba(0, 0, 0, 0.72);
  border: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: none;
  transition: opacity 220ms ease, visibility 220ms ease;
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
}

.site-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.menu-toggle:focus-visible {
  outline: 0;
}

.site-nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 55vh;
}

.site-nav a {
  min-height: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.05;
  text-transform: uppercase;
  white-space: normal;
}

.site-nav a::after {
  display: none;
}

.nav-social {
  gap: 9px;
  padding: 18px 0 0;
}

.nav-social a,
.footer-social a {
  width: 32px;
  height: 32px;
  min-height: 32px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 3px;
  background: var(--gold);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.home-page main {
  background: var(--black);
}

.home-page .button {
  min-height: 53px;
  padding: 15px 22px;
  border: 0;
  border-radius: 0;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.home-page .button:hover {
  background: var(--gold-light);
  transform: none;
}

.home-live-section {
  position: relative;
  background: var(--black);
  color: #fff;
}

.live-hero {
  min-height: 720px;
  height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.18), rgba(4, 4, 4, 0.3) 55%, #040404 100%),
    url("/assets/img/Club_04.webp") center / cover no-repeat;
}

.live-hero-content {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 0;
}

.live-hero h1,
.home-centered-copy h2,
.home-split-copy h2,
.home-membership-box h2,
.focus-card strong {
  margin: 0;
  color: #fff;
  font-family: "Forexs Regular DE", var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.live-hero h1 {
  max-width: 820px;
  font-size: 32px;
  line-height: 1.15;
}

.live-hero p {
  max-width: 760px;
  margin: 20px 0 32px;
  color: #fff;
  font-family: "Luxe Uno Light", var(--font-body);
  font-size: 23px;
  line-height: 1.14;
  letter-spacing: 1px;
}

.home-center-panel {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 24px 96px;
}

.home-centered-copy {
  width: min(720px, 100%);
  text-align: center;
}

.home-centered-copy h2 {
  font-size: 25px;
  line-height: 1.2;
}

.section-rule {
  display: block;
  width: min(270px, 62vw);
  height: 7px;
  margin: 18px auto 48px;
  background: var(--gold);
}

.home-centered-copy p,
.home-split-copy p,
.home-membership-box p {
  margin: 0 0 24px;
  color: #fff;
  font-family: "Luxe Uno Light", var(--font-body);
  font-size: 18px;
  line-height: 1.7;
}

.home-centered-copy .button {
  margin-top: 28px;
}

.home-split-panel {
  min-height: 80vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  padding: 10vh 0;
}

.home-split-image {
  width: 100%;
  height: 60vh;
  min-height: 500px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.atmosphere-image {
  background-image:
    linear-gradient(-90deg, #040404 1%, rgba(4, 4, 4, 0) 64% 100%),
    url("/assets/img/Club_01.webp");
}

.training-image {
  background-image:
    linear-gradient(-90deg, #040404 1%, rgba(4, 4, 4, 0) 64% 100%),
    url("/assets/img/Club_02.webp");
}

.home-split-copy {
  width: min(430px, calc(100% - 48px));
  justify-self: start;
  margin-left: 3vw;
}

.home-split-copy h2 {
  font-size: 25px;
  line-height: 1.2;
}

.home-split-copy .section-rule {
  width: 100%;
  margin: 22px 0 30px;
}

.home-split-copy .button {
  margin-top: 12px;
}

.home-card-strip {
  min-height: 100vh;
  width: min(1358px, calc(100% - 96px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 50px;
  margin: 0 auto;
  padding: 14vh 0 10vh;
}

.focus-card {
  position: relative;
  min-height: 585px;
  overflow: visible;
}

.focus-card img {
  width: 100%;
  height: 585px;
  object-fit: cover;
}

.focus-card strong {
  position: absolute;
  right: 0;
  bottom: 2px;
  z-index: 1;
  padding: 0 16px 4px 18px;
  background: rgba(4, 4, 4, 0.66);
  font-size: 34px;
  line-height: 1;
}

.focus-card::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 205px;
  height: 48px;
  background: var(--gold);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 14px 100%);
  z-index: 0;
}

.home-membership-panel {
  min-height: 86vh;
  display: grid;
  place-items: center;
  padding: 20vh 24px 15vh;
  background:
    linear-gradient(180deg, #040404 0%, rgba(4, 4, 4, 0.82) 100%),
    url("/assets/img/Studio_05.webp") center bottom / cover no-repeat;
}

.home-membership-box {
  width: min(760px, 100%);
  padding: 52px 46px;
  border: 10px solid var(--gold);
  text-align: center;
}

.home-membership-box h2 {
  margin-bottom: 30px;
  font-size: 25px;
  line-height: 1.2;
}

.home-claim-panel {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 24px 80px;
}

.home-claim-panel > div {
  width: min(700px, 100%);
  text-align: center;
}

.home-claim-panel img {
  width: min(560px, 90%);
  margin: 0 auto;
  transform: translateX(22px);
}

.home-claim-panel p {
  margin: 28px 0 0;
  color: #fff;
  font-family: "Luxe Uno Semibold", var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.site-footer {
  min-height: 410px;
  border-top: 0;
  background: #030303;
}

.footer-grid {
  width: min(1080px, calc(100% - 48px));
  grid-template-columns: 1.35fr 1.25fr 1.55fr 1.35fr 1.35fr;
  gap: 48px;
  align-items: start;
  padding: 136px 0 66px;
}

.footer-logo img {
  width: 142px;
}

.site-footer h2 {
  margin-bottom: 6px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer p {
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.85;
}

.site-footer a {
  color: #fff;
}

.footer-bottom {
  position: relative;
  width: min(1080px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 0 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.88);
}

.footer-bottom > p:first-child {
  grid-column: 2;
  text-align: center;
}

.footer-social {
  grid-column: 3;
  justify-self: end;
  display: flex;
  gap: 10px;
}

.floating-actions {
  right: 26px;
  bottom: 20px;
  gap: 16px;
}

.floating-member,
.floating-whatsapp {
  width: 68px;
  height: 68px;
  border: 0;
  background: var(--gold);
  color: #fff;
}

.floating-member {
  font-family: var(--font-display);
  font-size: 8px;
  line-height: 1.05;
}

.floating-whatsapp svg {
  width: 33px;
  height: 33px;
  fill: #fff;
}

@media (max-width: 980px) {
  .site-header-inner {
    width: min(90%, 1080px);
  }

  .live-hero-content {
    width: 90%;
    text-align: center;
  }

  .live-hero h1 {
    max-width: 100%;
    font-size: 24px;
  }

  .live-hero p {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.35;
  }

  .home-split-panel {
    grid-template-columns: 1fr;
    padding: 10vh 0;
  }

  .home-split-image {
    height: 50vh;
    min-height: 360px;
  }

  .atmosphere-image,
  .training-image {
    background-image:
      linear-gradient(360deg, #040404 0%, rgba(4, 4, 4, 0.3) 60% 100%),
      var(--split-url);
  }

  .atmosphere-image {
    --split-url: url("/assets/img/Club_01.webp");
  }

  .training-image {
    --split-url: url("/assets/img/Club_02.webp");
  }

  .home-split-copy {
    width: min(80%, 430px);
    justify-self: start;
    margin: -8vh 0 0 10%;
  }

  .home-card-strip {
    width: min(92%, 620px);
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 12vh 0;
  }

  .focus-card,
  .focus-card img {
    min-height: 0;
    height: auto;
  }

  .focus-card img {
    aspect-ratio: 715 / 1000;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    padding-top: 86px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-bottom > p:first-child,
  .footer-social {
    grid-column: 1;
    justify-self: center;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 82px;
  }

  .brand {
    width: 122px;
    min-width: 122px;
  }

  .site-nav a {
    font-size: 22px;
  }

  .live-hero {
    min-height: 680px;
  }

  .home-centered-copy h2,
  .home-split-copy h2,
  .home-membership-box h2 {
    font-size: 21px;
  }

  .home-centered-copy p,
  .home-split-copy p,
  .home-membership-box p {
    font-size: 14px;
    line-height: 2;
  }

  .home-membership-box {
    padding: 38px 24px;
    border-width: 8px;
  }

  .home-claim-panel img {
    transform: translateX(12px);
  }

  .home-claim-panel p {
    font-size: 13px;
    letter-spacing: 3px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: center;
  }

  .footer-logo img {
    margin: 0 auto;
  }
}

/* Club page reconstruction */
.club-page main {
  background: var(--black);
}

.club-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 88px) 24px 96px;
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.16), rgba(4, 4, 4, 0.34) 54%, #040404 100%),
    url("/assets/img/ClubHeader.webp") center / cover no-repeat;
  color: #fff;
}

.club-hero-content {
  width: min(1088px, calc(100% - 48px));
  margin: 0 auto;
}

.club-hero h1,
.club-split-copy h2 {
  margin: 0;
  color: #fff;
  font-family: "Forexs Regular DE", var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.club-hero h1 {
  max-width: 1060px;
  font-size: 32px;
  line-height: 1.14;
}

.club-hero .section-rule {
  width: min(660px, 54vw);
  height: 7px;
  margin: 14px 0 24px;
}

.club-quote {
  max-width: 780px;
  margin: 0 0 14px;
  font-family: "Luxe Uno Light", var(--font-body);
  font-size: 23px;
  font-style: italic;
  line-height: 1.12;
}

.club-hero p:not(.club-quote) {
  max-width: 820px;
  margin: 0 0 16px;
  font-family: "Luxe Uno Light", var(--font-body);
  font-size: 15px;
  line-height: 1.72;
}

.club-sections {
  background: var(--black);
}

.club-split {
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 1fr);
  align-items: center;
  column-gap: clamp(48px, 7vw, 112px);
  padding: 10vh 0;
  color: #fff;
}

.club-split-reverse {
  grid-template-columns: minmax(430px, 1fr) minmax(0, 1fr);
}

.club-split-reverse .club-split-media {
  order: 2;
}

.club-split-reverse .club-split-copy {
  order: 1;
  justify-self: end;
  margin-left: 0;
  margin-right: 4vw;
}

.club-split-media {
  width: 100%;
  height: min(62vh, 620px);
  min-height: 480px;
  margin: 0;
  overflow: hidden;
  background: #080808;
}

.club-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.club-split-copy {
  width: min(430px, calc(100% - 48px));
  justify-self: start;
  margin-left: 3vw;
}

.club-split-copy h2 {
  font-size: 25px;
  line-height: 1.18;
}

.club-split-copy .section-rule {
  width: 100%;
  height: 7px;
  margin: 22px 0 30px;
}

.club-split-copy p {
  margin: 0 0 20px;
  color: #fff;
  font-family: "Luxe Uno Light", var(--font-body);
  font-size: 17px;
  line-height: 1.72;
}

.club-split-copy p:last-child {
  margin-bottom: 0;
}

.club-actions {
  margin-top: 30px;
}

.club-page .button {
  min-height: 53px;
  padding: 15px 22px;
  border: 0;
  border-radius: 0;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.club-page .button:hover {
  background: var(--gold-light);
  transform: none;
}

.club-app-links {
  display: grid;
  grid-template-columns: 86px minmax(0, 150px) minmax(0, 168px);
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.club-app-links a {
  display: block;
}

.club-app-logo {
  width: 82px;
  border-radius: 9px;
}

.js .reveal-blur {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(34px);
  transition:
    opacity 900ms ease,
    filter 900ms ease,
    transform 900ms ease;
  will-change: opacity, filter, transform;
}

.js .reveal-blur.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal-blur {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .club-hero {
    min-height: 760px;
    padding-inline: 0;
  }

  .club-hero-content {
    width: min(90%, 1088px);
  }

  .club-hero h1 {
    font-size: 24px;
  }

  .club-hero .section-rule {
    width: min(420px, 72vw);
  }

  .club-quote {
    font-size: 18px;
    line-height: 1.25;
  }

  .club-split,
  .club-split-reverse {
    min-height: auto;
    grid-template-columns: 1fr;
    row-gap: 44px;
    padding: 8vh 0;
  }

  .club-split-reverse .club-split-media,
  .club-split-reverse .club-split-copy {
    order: initial;
  }

  .club-split-media {
    height: 50vh;
    min-height: 360px;
  }

  .club-split-copy,
  .club-split-reverse .club-split-copy {
    width: min(80%, 520px);
    justify-self: start;
    margin: 0 0 0 10%;
  }

  .club-app-links {
    grid-template-columns: 76px minmax(0, 136px);
  }

  .club-app-links a:last-child {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .club-hero {
    min-height: 700px;
  }

  .club-hero h1,
  .club-split-copy h2 {
    font-size: 21px;
  }

  .club-hero p:not(.club-quote),
  .club-split-copy p {
    font-size: 14px;
    line-height: 1.9;
  }

  .club-quote {
    font-size: 16px;
  }

  .club-split-copy,
  .club-split-reverse .club-split-copy {
    width: min(84%, 520px);
    margin-left: 8%;
    padding-right: 62px;
  }

  .club-app-links {
    grid-template-columns: 64px minmax(0, 126px);
    gap: 12px;
  }

  .club-app-logo {
    width: 64px;
  }

  .floating-actions {
    right: 12px;
    bottom: 14px;
    gap: 10px;
  }

  .floating-member,
  .floating-whatsapp {
    width: 56px;
    height: 56px;
  }

  .floating-member {
    font-size: 7px;
  }

  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }
}

/* Training page reconstruction */
.training-page main {
  background: var(--black);
}

.training-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 24px;
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.18), rgba(4, 4, 4, 0.34) 58%, #040404 100%),
    url("/assets/img/TrainingHero.webp") center / cover no-repeat;
  color: #fff;
}

.training-hero-content {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
}

.training-hero h1,
.training-split-copy h2,
.training-membership-box h2 {
  margin: 0;
  color: #fff;
  font-family: "Forexs Regular DE", var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.training-hero h1 {
  font-size: 32px;
  line-height: 1.15;
}

.training-hero .section-rule {
  width: min(430px, 42vw);
  height: 7px;
  margin: 18px 0 20px;
}

.training-hero p {
  margin: 0;
  color: #fff;
  font-family: "Luxe Uno Light", var(--font-body);
  font-size: 23px;
  line-height: 1.42;
  letter-spacing: 1px;
}

.training-sections,
.training-text-sections {
  background: var(--black);
}

.training-split {
  min-height: 684px;
  height: 71.25vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 5.5vw;
  padding: 54px 0;
  color: #fff;
}

.training-split-media {
  width: 100%;
  height: 60vh;
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  background: #050505;
}

.training-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.training-split-copy {
  width: 100%;
  align-self: center;
  text-align: right;
}

.training-split-reverse .training-split-copy {
  text-align: left;
}

.training-split-copy h2 {
  font-size: 25px;
  line-height: 1.2;
}

.training-split-copy .section-rule {
  width: 60%;
  height: 7px;
  margin: 20px 0 42px auto;
}

.training-split-reverse .training-split-copy .section-rule {
  margin-left: 0;
  margin-right: auto;
}

.training-split-copy p {
  margin: 0 0 28px;
  color: #fff;
  font-family: "Luxe Uno Light", var(--font-body);
  font-size: 18px;
  line-height: 1.8;
}

.training-split-copy p:last-child {
  margin-bottom: 0;
}

.training-text-panel {
  min-height: 50vh;
  display: grid;
  place-items: center;
  padding: 80px 24px;
  color: #fff;
  text-align: center;
}

.training-text-panel > div {
  width: min(1080px, 100%);
}

.training-text-panel p {
  margin: 0 0 24px;
  font-family: "Luxe Uno Light", var(--font-body);
  font-size: 18px;
  line-height: 1.7;
}

.training-text-panel p:last-child {
  margin-bottom: 0;
}

.training-membership-panel {
  min-height: 75vh;
  display: grid;
  place-items: center;
  padding: 20vh 24px 15vh;
  background:
    linear-gradient(180deg, #040404 0%, rgba(4, 4, 4, 0.82) 100%),
    url("/assets/img/Studio_05.webp") center bottom / cover no-repeat;
}

.training-membership-box {
  width: min(1060px, 100%);
  padding: 50px 44px;
  border: 10px solid var(--gold);
  text-align: center;
}

.training-membership-box h2 {
  margin-bottom: 24px;
  font-size: 25px;
  line-height: 1.2;
}

.training-membership-box p {
  margin: 0 0 22px;
  color: #fff;
  font-family: "Luxe Uno Light", var(--font-body);
  font-size: 18px;
  line-height: 1.7;
}

.training-membership-box .button {
  margin-top: 10px;
}

.training-page .button {
  min-height: 53px;
  padding: 15px 22px;
  border: 0;
  border-radius: 0;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.training-page .button:hover {
  background: var(--gold-light);
  transform: none;
}

@media (max-width: 980px) {
  .training-hero-content {
    width: min(90%, 1080px);
    text-align: center;
  }

  .training-hero h1 {
    font-size: 24px;
  }

  .training-hero .section-rule {
    margin-left: auto;
    margin-right: auto;
  }

  .training-hero p {
    font-size: 17px;
    line-height: 1.45;
  }

  .training-split,
  .training-split-reverse {
    min-height: 60vh;
    height: auto;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .training-split {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
  }

  .training-split-reverse {
    flex-direction: column;
  }

  .training-split-media {
    height: 50%;
    min-height: 320px;
  }

  .training-split-copy {
    width: 90%;
    min-height: 50%;
    display: grid;
    align-content: center;
    margin: 0 auto;
    padding: 54px 0;
    text-align: center;
  }

  .training-split-copy .section-rule,
  .training-split-reverse .training-split-copy .section-rule {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }

  .training-text-panel {
    min-height: 42vh;
  }

  .training-membership-box {
    border-width: 8px;
  }
}

@media (max-width: 620px) {
  .training-hero {
    min-height: 700px;
  }

  .training-hero h1,
  .training-split-copy h2,
  .training-membership-box h2 {
    font-size: 21px;
  }

  .training-hero p,
  .training-split-copy p,
  .training-text-panel p,
  .training-membership-box p {
    font-size: 14px;
    line-height: 1.9;
  }

  .training-split-copy {
    padding: 44px 0;
  }

  .training-membership-box {
    padding: 38px 24px;
  }
}

/* Menu motion and hover parity */
html {
  scrollbar-gutter: stable;
}

body.menu-open {
  overflow: auto;
}

.site-nav {
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 520ms;
}

.site-nav.is-open {
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

.site-nav-inner {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(10px);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav.is-open .site-nav-inner {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition-delay: 70ms;
}

.site-nav a {
  transition: color 300ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold) !important;
}

.menu-toggle span {
  transition:
    transform 320ms ease,
    background-color 300ms ease,
    opacity 300ms ease;
}

@media (prefers-reduced-motion: reduce) {
  .site-nav,
  .site-nav-inner,
  .menu-toggle span {
    transition: none;
  }
}

/* Membership page reconstruction */
.membership-page main {
  background: var(--black);
}

.membership-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 54px 24px;
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.18), rgba(4, 4, 4, 0.31) 56%, #040404 100%),
    url("/assets/img/Club_02.webp") center / cover no-repeat;
  color: #fff;
}

.membership-hero-content {
  width: min(1080px, 100%);
  text-align: center;
}

.membership-hero h1,
.membership-standard-content h2 {
  margin: 0;
  color: #fff;
  font-family: "Forexs", var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.membership-hero h1 {
  font-size: 32px;
  line-height: 1;
  padding-bottom: 10px;
}

.membership-hero .section-rule {
  width: min(324px, 34vw);
  height: 23px;
  margin: 5px auto 4px;
  border-top: 7px solid var(--gold);
  background: transparent;
}

.membership-hero p {
  margin: 0;
  padding-bottom: 18px;
  color: #fff;
  font-family: "Luxe Uno Light", var(--font-body);
  font-size: 18px;
  line-height: 23.8px;
}

.membership-hero .membership-lead {
  margin-bottom: 6px;
  padding-bottom: 10px;
  font-size: 26px;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: 1px;
}

.membership-hero p:last-child {
  padding-bottom: 0;
}

.membership-standard-live {
  height: 773px;
  min-height: 773px;
  display: grid;
  place-items: start center;
  padding: 54px 24px;
  background: var(--black);
  color: #fff;
  text-align: center;
}

.membership-standard-content {
  width: min(1080px, 100%);
}

.membership-standard-content h2 {
  font-size: 25px;
  line-height: 1;
  padding-bottom: 10px;
}

.membership-standard-content .section-rule {
  width: min(270px, 30vw);
  height: 23px;
  margin: 30px auto;
  border-top: 7px solid var(--gold);
  background: transparent;
}

.membership-standard-content p {
  margin: 0;
  padding-bottom: 18px;
  color: #fff;
  font-family: "Luxe Uno Light", var(--font-body);
  font-size: 18px;
  line-height: 1.7;
}

.membership-standard-content > p:nth-of-type(3) {
  padding-bottom: 0;
}

.membership-standard-content .button {
  min-width: 224px;
  min-height: 45px;
  height: 45px;
  margin-top: 30px;
  padding: 6px 18px;
  border: 2px solid var(--gold);
  border-radius: 0;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 30.6px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.membership-standard-content .button:hover {
  background: rgba(4, 4, 4, 0.5);
  color: #fff;
  transform: none;
}

.membership-standard-content .membership-prepay {
  margin-top: 79px;
  padding-bottom: 0;
}

.membership-standard-content .membership-setup {
  width: min(433px, 100%);
  margin: 29px auto 0;
  padding: 9px 30px 10px;
  border: 1px solid var(--gold);
  font-style: italic;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .membership-hero {
    min-height: 760px;
  }

  .membership-hero .section-rule,
  .membership-standard-content .section-rule {
    width: min(320px, 70vw);
  }
}

@media (max-width: 620px) {
  .membership-hero {
    min-height: 700px;
    padding: var(--header-h) 19px 54px;
  }

  .membership-hero h1,
  .membership-standard-content h2 {
    font-size: 21px;
  }

  .membership-hero .membership-lead {
    font-size: 18px;
  }

  .membership-hero p,
  .membership-standard-content p {
    font-size: 14px;
    line-height: 1.9;
  }

  .membership-standard-live {
    height: auto;
    min-height: 720px;
    padding: 54px 24px 72px;
  }

  .membership-standard-content .button {
    min-width: 194px;
    font-size: 15px;
  }

  .membership-standard-content .membership-prepay {
    margin-top: 70px;
  }

.membership-standard-content .membership-setup {
    padding-inline: 22px;
    white-space: normal;
  }
}

/* Contact page reconstruction */
.contact-page main {
  background: var(--black);
}

.contact-hero,
.contact-location,
.contact-map-section {
  background: var(--black);
  color: #fff;
}

.contact-hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 54px 24px;
  background:
    linear-gradient(360deg, #040404 3%, rgba(4, 4, 4, 0.35) 40%, rgba(4, 4, 4, 0.3) 100%);
}

.contact-hero-content {
  width: min(1080px, 90vw);
  text-align: start;
}

.contact-hero h1,
.contact-hero h2,
.contact-location-content h2 {
  margin: 0;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0;
}

.contact-hero h1,
.contact-location-content h2 {
  font-family: "Forexs", var(--font-display);
  text-transform: uppercase;
}

.contact-hero h1 {
  font-size: 32px;
  line-height: 32px;
  padding-bottom: 10px;
}

.contact-hero .section-rule {
  width: 30%;
  height: 23px;
  margin: 5px 0;
  border-top: 7px solid var(--gold);
  background: transparent;
}

.contact-hero h2 {
  margin-bottom: 5px;
  padding-bottom: 10px;
  font-family: "Luxe Uno Light", var(--font-body);
  font-size: 23px;
  font-style: italic;
  line-height: 23px;
}

.contact-hero p,
.contact-location-content p,
.contact-map-content p {
  margin: 0;
  color: #fff;
  font-family: "Luxe Uno Light", var(--font-body);
  font-size: 18px;
  line-height: 1.7;
}

.contact-location {
  height: 480px;
  display: grid;
  place-items: center;
  padding: 54px 24px;
  text-align: center;
}

.contact-location-content {
  width: min(1080px, 76vw);
}

.contact-location-content h2 {
  font-size: 25px;
  line-height: 25px;
  padding-bottom: 10px;
}

.contact-location-content .section-rule {
  width: 25%;
  height: 23px;
  margin: 30px auto;
  border-top: 7px solid var(--gold);
  background: transparent;
}

.contact-location-content p {
  padding-bottom: 18px;
}

.contact-location-content p:last-child {
  padding-bottom: 0;
}

.contact-mobile-break {
  display: none;
}

.contact-map-section {
  height: 700px;
  padding: 54px 0;
}

.contact-map-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-map-content iframe {
  width: min(1080px, 100vw);
  height: 450px;
  filter: saturate(0%) brightness(90%) contrast(100%) invert(100%) sepia(0%) opacity(100%);
}

.contact-map-content p {
  width: min(1080px, 100vw);
  margin-top: 37px;
}

.contact-action-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 29px;
}

.contact-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  color: var(--gold);
}

.contact-action-icon svg {
  display: block;
  fill: currentColor;
}

.contact-action-whatsapp,
.contact-action-whatsapp svg {
  width: 39px;
}

.contact-action-mail,
.contact-action-mail svg {
  width: 45px;
}

.contact-action-whatsapp:hover,
.contact-action-mail:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .contact-hero {
    min-height: 100vh;
    padding: 50px 0;
  }

  .contact-hero-content {
    width: 90%;
    text-align: center;
  }

  .contact-hero h1 {
    font-size: 20px;
    line-height: 20px;
  }

  .contact-hero .section-rule {
    width: 30%;
    margin: 17px auto 4px;
  }

  .contact-hero h2 {
    margin-bottom: 4px;
    font-size: 15px;
    line-height: 15px;
  }

  .contact-hero p,
  .contact-location-content p,
  .contact-map-content p {
    font-size: 13px;
    line-height: 1.7;
  }

  .contact-location {
    height: 50vh;
    padding: 50px 0;
  }

  .contact-location-content {
    width: 76%;
  }

  .contact-location-content h2 {
    font-size: 21px;
    line-height: 21px;
  }

  .contact-location-content .section-rule {
    width: 25%;
    margin: 30px auto;
  }

  .contact-location-content p {
    padding-bottom: 13px;
  }

  .contact-mobile-break {
    display: inline;
  }

  .contact-map-section {
    height: auto;
    min-height: 668px;
    padding: 10vh 0 0;
  }

  .contact-map-content iframe,
  .contact-map-content p {
    width: 100vw;
  }

  .contact-map-content p {
    margin-top: 37px;
  }
}

/* Global UI corrections */
.button,
.home-page .button,
.club-page .button,
.training-page .button,
.membership-standard-content .button {
  min-width: 224px;
  min-height: 45px;
  height: 45px;
  padding: 6px 18px;
  border: 2px solid var(--gold);
  border-radius: 0;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 30.6px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transform: none;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.button:hover,
.button-solid:hover,
.home-page .button:hover,
.club-page .button:hover,
.training-page .button:hover,
.membership-standard-content .button:hover {
  border-color: var(--gold);
  background: rgba(4, 4, 4, 0.5);
  color: #fff;
  transform: none;
}

.social-link img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.social-link-facebook img {
  width: 10px;
  height: 18px;
}

.nav-social a:hover,
.footer-social a:hover {
  background: var(--gold-light);
  color: #fff;
}

.focus-card strong,
.focus-card::after {
  display: none;
}

.nivo-floating-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999999;
}

.nivo-floating-btn {
  width: 70px;
  height: 70px;
  border: 0 !important;
  border-radius: 999px;
  outline: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0 !important;
  background: #8c6f54 !important;
  color: #fff !important;
  box-shadow: none !important;
  cursor: pointer;
  text-decoration: none !important;
  opacity: 0;
  transform: translateY(16px) scale(0.92);
  animation: nivoFloatingIntro 550ms ease forwards;
  transition: transform 220ms ease, background 220ms ease;
}

.nivo-member-btn {
  animation-delay: 750ms;
}

.nivo-whatsapp-btn {
  animation-delay: 900ms;
}

.nivo-floating-btn:hover {
  background: #7c624a !important;
  transform: translateY(-2px) scale(1.03);
  box-shadow: none !important;
}

.nivo-floating-btn svg {
  width: 32px;
  height: 32px;
  fill: #fff !important;
}

.nivo-floating-btn svg path {
  fill: #fff !important;
}

.nivo-membership-text-btn {
  color: #fff !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 8.4px !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  letter-spacing: 0.055em !important;
  text-align: center !important;
  text-transform: uppercase !important;
}

.nivo-membership-text-btn span {
  display: block;
  color: #fff !important;
}

.nivo-whatsapp-popup {
  position: fixed;
  right: 24px;
  bottom: 192px;
  width: 400px;
  max-width: calc(100vw - 30px);
  overflow: hidden;
  border-radius: 28px;
  background: #1c1c1c;
  color: #fff;
  z-index: 999998;
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 18px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
  box-shadow: none !important;
  font-family: Arial, Helvetica, sans-serif !important;
}

.nivo-whatsapp-popup.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0) scale(1);
}

.nivo-whatsapp-header {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px 0 26px;
  background: #000;
}

.nivo-whatsapp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.nivo-whatsapp-brand svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  fill: #fff;
}

.nivo-whatsapp-close {
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.nivo-whatsapp-body {
  position: relative;
  min-height: 188px;
  padding: 20px 16px 20px 26px;
  background: #1c1c1c;
}

.nivo-whatsapp-bubble {
  position: relative;
  display: inline-block;
  max-width: 310px;
  padding: 14px 22px;
  border-radius: 22px;
  background: #5b5b5b;
  color: #e9e9e9;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.nivo-whatsapp-bubble::before {
  content: "";
  position: absolute;
  left: -14px;
  bottom: 4px;
  width: 24px;
  height: 22px;
  border-bottom-right-radius: 22px;
  background: #5b5b5b;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.nivo-whatsapp-open {
  position: absolute;
  right: 12px;
  bottom: 14px;
  min-width: 166px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #000 !important;
  color: #fff !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none !important;
  box-shadow: none !important;
  transition: background 220ms ease, transform 220ms ease;
}

.nivo-whatsapp-open:hover {
  background: #8c6f54 !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.nivo-whatsapp-open svg {
  width: 42px;
  height: 42px;
  fill: #fff;
}

@keyframes nivoFloatingIntro {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.92);
  }

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

.contact-hero {
  background:
    linear-gradient(360deg, #040404 3%, rgba(4, 4, 4, 0.35) 42%, rgba(4, 4, 4, 0.5) 100%),
    url("/assets/img/Club_03.webp") center / cover no-repeat;
}

.faq-page main,
.legal-page main {
  background: var(--black);
}

.faq-intro {
  display: grid;
  place-items: center;
  min-height: 235px;
  padding: calc(var(--header-h) + 74px) 24px 38px;
  background: var(--black);
  color: #fff;
}

.faq-intro h1,
.legal-content h1 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.faq-intro h1 {
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
}

.faq-wrap {
  width: min(1080px, 90%);
  gap: 44px;
  padding: 40px 0 110px;
}

.faq-group h2 {
  margin: 0 0 20px;
  color: #fff;
  font-family: "Luxe Uno", var(--font-body);
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
  text-transform: none;
}

.faq-item {
  margin: 0 0 10px;
  border: 1px solid var(--gold);
  background: transparent;
}

.faq-item summary {
  min-height: 0;
  padding: 20px 50px 20px 20px;
  color: #fff;
  font-family: "Luxe Uno", var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 1px;
  text-transform: none;
}

.faq-item summary::after {
  right: 20px;
  color: var(--gold);
  font-size: 22px;
}

.faq-answer {
  padding: 0 20px 20px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
}

.faq-answer p,
.faq-answer li {
  margin: 0 0 14px;
}

.legal-content {
  width: min(1080px, 90%);
  margin: 0 auto;
  padding: calc(var(--header-h) + 86px) 0 120px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
}

.legal-content h1 {
  margin-bottom: 24px;
  font-family: "Luxe Uno", var(--font-body);
  font-size: 30px;
}

.legal-content p,
.legal-content li {
  margin: 0 0 14px;
}

.legal-content ul {
  margin: 0 0 14px;
  padding-left: 18px;
  list-style: disc;
}

.legal-heading {
  margin-top: 18px !important;
  margin-bottom: 8px !important;
  font-weight: 700;
}

.legal-lead {
  color: #fff;
  font-size: 14px;
  font-style: italic;
}

.faq-page .reveal-blur,
.legal-page .reveal-blur {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  transition: none !important;
}

@media (max-width: 767px) {
  .button,
  .home-page .button,
  .club-page .button,
  .training-page .button,
  .membership-standard-content .button {
    min-width: 194px;
    font-size: 15px;
  }

  .nivo-floating-actions {
    right: 20px;
    bottom: 20px;
    gap: 10px;
  }

  .nivo-floating-btn {
    width: 66px;
    height: 66px;
  }

  .nivo-floating-btn svg {
    width: 30px;
    height: 30px;
  }

  .nivo-membership-text-btn {
    font-size: 7.8px !important;
    letter-spacing: 0.04em !important;
  }

  .nivo-whatsapp-popup {
    right: 15px;
    bottom: 180px;
    width: calc(100vw - 30px);
    border-radius: 26px;
  }

  .nivo-whatsapp-header {
    height: 74px;
    padding: 0 28px 0 25px;
  }

  .nivo-whatsapp-body {
    min-height: 188px;
    padding: 20px 14px 20px 26px;
  }

  .nivo-whatsapp-bubble {
    max-width: calc(100vw - 95px);
    padding: 14px 20px;
    font-size: 16px;
  }

  .nivo-whatsapp-open {
    right: 12px;
    bottom: 14px;
    min-width: 164px;
    height: 58px;
  }

  .faq-intro {
    min-height: 180px;
    padding: calc(var(--header-h) + 48px) 24px 32px;
  }

  .faq-intro h1,
  .legal-content h1 {
    font-size: 25px;
  }

  .faq-wrap,
  .legal-content {
    width: 80%;
  }

  .faq-group h2 {
    font-size: 21px;
  }

  .faq-item summary {
    font-size: 14px;
  }
}

/* Motion and split refinements */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000000;
  background: #000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 640ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 640ms;
}

body.is-transitioning::before {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 640ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

body.is-transitioning main,
body.is-transitioning .site-footer {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(8px);
  transition:
    opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 560ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav {
  transition:
    opacity 940ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 940ms;
}

.site-nav.is-open {
  transition:
    opacity 940ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

.site-nav-inner {
  transition:
    opacity 940ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 940ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 940ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav.is-open .site-nav-inner {
  transition-delay: 120ms;
}

.menu-toggle span {
  transition:
    transform 440ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 360ms ease,
    opacity 360ms ease;
}

.faq-answer {
  overflow: hidden;
  transition:
    height 380ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 320ms ease,
    padding-top 380ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
    padding-bottom 380ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: height, opacity, padding-top, padding-bottom;
}

.faq-item:not([open]) .faq-answer {
  height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.faq-item summary::after {
  transition:
    color 260ms ease,
    transform 380ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.club-split-media,
.training-split-media {
  position: relative;
  isolation: isolate;
}

.club-split-media::after,
.training-split-media::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.club-split:not(.club-split-reverse) .club-split-media::after,
.training-split-reverse .training-split-media::after {
  background: linear-gradient(-90deg, #040404 1%, rgba(4, 4, 4, 0) 64% 100%);
}

.club-split-reverse .club-split-media::after,
.training-split:not(.training-split-reverse) .training-split-media::after {
  background: linear-gradient(90deg, #040404 1%, rgba(4, 4, 4, 0) 64% 100%);
}

.club-split-copy {
  text-align: left;
}

.club-split-reverse .club-split-copy {
  text-align: right;
}

.club-split-copy .section-rule {
  margin-left: 0;
  margin-right: auto;
}

.club-split-reverse .club-split-copy .section-rule {
  margin-left: auto;
  margin-right: 0;
}

@media (max-width: 980px) {
  .club-split-copy,
  .club-split-reverse .club-split-copy {
    text-align: center;
  }

  .club-split-copy .section-rule,
  .club-split-reverse .club-split-copy .section-rule {
    margin-left: auto;
    margin-right: auto;
  }

  .club-split-media::after,
  .training-split-media::after {
    background: linear-gradient(180deg, rgba(4, 4, 4, 0) 42%, #040404 100%) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  .faq-answer,
  .faq-item summary::after {
    transition: none !important;
  }
}

/* Footer and loader refinements */
.page-loader img {
  width: min(300px, 52vw);
}

.site-footer {
  min-height: 354px;
  border-top: 0;
  background: #030303;
}

.footer-grid {
  width: min(1080px, calc(100% - 92px));
  display: grid;
  grid-template-columns:
    minmax(120px, 150px)
    minmax(120px, 150px)
    minmax(180px, 220px)
    minmax(120px, 150px)
    minmax(140px, 170px);
  justify-content: space-between;
  align-items: start;
  gap: 0 24px;
  margin: 0 auto;
  padding: 64px 0 44px;
}

.footer-logo {
  padding-top: 15px;
}

.footer-logo img {
  width: 142px;
  height: auto;
}

.site-footer h2 {
  margin: 0 0 10px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.78;
}

.site-footer a {
  color: #fff;
}

.footer-bottom {
  width: min(1080px, calc(100% - 92px));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 24px;
  margin: 0 auto;
  padding: 18px 0 68px;
  border-top: 1px solid rgba(255, 255, 255, 0.9);
}

.footer-bottom > p:first-child {
  grid-column: 2;
  justify-self: center;
  color: #fff;
  font-size: 13px;
  line-height: 32px;
  text-align: center;
}

.footer-social {
  grid-column: 3;
  justify-self: end;
  display: flex;
  gap: 11px;
  margin: -10px 8px 0 0;
}

.footer-social a {
  width: 32px;
  height: 32px;
  min-height: 32px;
  border-radius: 3px;
  background: var(--gold);
}

@media (max-width: 980px) {
  .footer-grid {
    width: min(760px, calc(100% - 48px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 42px;
    padding: 74px 0 38px;
  }

  .footer-logo {
    padding-top: 0;
  }

  .footer-bottom {
    width: min(760px, calc(100% - 48px));
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 18px 0 48px;
  }

  .footer-bottom > p:first-child,
  .footer-social {
    grid-column: 1;
    justify-self: center;
  }

  .footer-social {
    margin: 8px 0 0;
  }
}

@media (max-width: 620px) {
  .page-loader img {
    width: min(220px, 60vw);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: center;
    padding-top: 58px;
  }

  .footer-logo img {
    margin: 0 auto;
  }
}

/* Language switcher */
.header-actions {
  position: relative;
  z-index: 103;
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.language-switch {
  position: relative;
  z-index: 104;
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.language-switch summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0;
  color: #fff;
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
  opacity: 0.92;
  transition: color 220ms ease, opacity 220ms ease;
}

.language-switch summary::-webkit-details-marker {
  display: none;
}

.language-switch summary::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 2px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 220ms ease;
}

.language-switch[open] summary::after {
  transform: translateY(1px) rotate(225deg);
}

.language-switch summary:hover,
.language-switch summary:focus-visible {
  color: var(--gold-light);
  opacity: 1;
}

.language-switch-current,
.language-switch-menu a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.language-switch-flag {
  font-size: 15px;
  line-height: 1;
}

.language-switch-menu {
  position: absolute;
  top: calc(100% + 11px);
  right: 0;
  min-width: 154px;
  padding: 8px;
  border: 1px solid rgba(138, 111, 85, 0.72);
  background: rgba(3, 3, 3, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 240ms ease,
    transform 240ms ease,
    visibility 0s linear 240ms;
}

.language-switch[open] .language-switch-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 240ms ease,
    transform 240ms ease,
    visibility 0s linear 0s;
}

.language-switch-menu a {
  min-height: 32px;
  padding: 0 9px;
  color: #fff;
  transition: background-color 180ms ease, color 180ms ease;
}

.language-switch-menu a:hover,
.language-switch-menu a:focus-visible,
.language-switch-menu a[aria-current="true"] {
  background: rgba(138, 111, 85, 0.34);
  color: #fff;
}

@media (max-width: 620px) {
  .header-actions {
    gap: 12px;
  }

  .language-switch {
    font-size: 10px;
    letter-spacing: 0.6px;
  }

  .language-switch summary {
    gap: 5px;
  }

  .language-switch-current span:last-child {
    display: none;
  }

  .language-switch-menu {
    min-width: 142px;
  }
}

/* Mobile copy alignment refinements */
@media (max-width: 980px) {
  .club-page .club-split-copy,
  .club-page .club-split-reverse .club-split-copy,
  .training-page .training-split-copy,
  .training-page .training-split-reverse .training-split-copy {
    justify-self: center;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }

  .club-page .club-split-copy .section-rule,
  .club-page .club-split-reverse .club-split-copy .section-rule,
  .training-page .training-split-copy .section-rule,
  .training-page .training-split-reverse .training-split-copy .section-rule {
    margin-left: auto;
    margin-right: auto;
  }

  .club-page .club-actions,
  .club-page .club-app-links {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}
