:root {
  --black: #080808;
  --white: #fff;
  --surface: #f8f6f2;
  --surface-soft: #f3f1ed;
  --text: #181818;
  --muted: #5e5e5e;
  --line: #dedbd5;
  --accent: #b28a36;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--text);
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

button {
  font: inherit;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 1.15;
}

.container {
  margin: 0 auto;
  max-width: var(--container);
  padding: 0 28px;
  width: 100%;
}

.main-header {
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: rgba(8, 8, 8, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 0;
  border-right: 0;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
  width: 100%;
  z-index: 30;
}

.main-header.is-scrolled {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: var(--black);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.main-header .container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 112px;
}

.logo {
  flex: 0 1 320px;
  width: min(320px, 31vw);
}

.logo a {
  display: block;
}

.main-nav {
  position: relative;
}

.nav-list {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2vw, 34px);
}

.nav-list a {
  color: rgba(255, 255, 255, 0.82);
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  padding: 12px 0;
  position: relative;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-list a::after {
  background: var(--white);
  bottom: 4px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  width: 100%;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--white);
}

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

.language-menu {
  position: relative;
}

.language-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--white);
  cursor: pointer;
  display: flex;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  min-height: 36px;
  padding: 0 12px;
}

.language-dropdown {
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  backdrop-filter: blur(18px) saturate(135%);
  background: rgba(8, 8, 8, 0.58);
  border: 0;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  clip-path: inset(0 0 100% 0);
  min-width: 210px;
  opacity: 0;
  padding: 8px;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  transform: translateY(-6px);
  transform-origin: top;
  transition: clip-path 240ms ease, opacity 180ms ease, transform 240ms ease, visibility 240ms;
  visibility: hidden;
}

.language-menu.is-open .language-dropdown {
  clip-path: inset(0);
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.nav-list .language-dropdown a {
  align-items: center;
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  letter-spacing: 0.04em;
  padding: 10px 12px;
  text-transform: none;
}

.nav-list .language-dropdown a::after {
  display: none;
}

.language-dropdown a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.language-dropdown a.is-active {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

[dir="rtl"] .language-dropdown {
  left: 0;
  right: auto;
}

[dir="rtl"] .slide-content {
  left: auto;
  right: max(28px, calc((100% - var(--container)) / 2 + 28px));
}

[dir="rtl"] .slide-title,
[dir="rtl"] .service-grid,
[dir="rtl"] .collaboration-list,
[dir="rtl"] .bio-copy {
  text-align: right;
}

[dir="rtl"] .service-grid li,
[dir="rtl"] .collaboration-list li {
  padding-left: 0;
  padding-right: 18px;
}

[dir="rtl"] .service-grid li::before,
[dir="rtl"] .collaboration-list li::before {
  left: auto;
  right: 0;
}

.nav-toggle {
  background: transparent;
  border: 0;
  color: var(--white);
  cursor: pointer;
  display: none;
  height: 44px;
  margin: 0 auto 12px;
  padding: 9px;
  width: 46px;
}

.nav-toggle span {
  background: currentColor;
  display: block;
  height: 1px;
  margin: 6px auto;
  width: 24px;
}

.home-slider {
  height: min(760px, 43.177vw);
  min-height: 430px;
  overflow: hidden;
  position: relative;
}

.slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 700ms ease;
}

.slide.is-active {
  opacity: 1;
  z-index: 1;
}

.slide-one {
  background-image: url("../images/slides/home-stadium.png");
}

.slide-two {
  background-image: url("../images/slides/home-stadium-2.png");
}

.slide-content {
  left: max(28px, calc((100% - var(--container)) / 2 + 28px));
  position: absolute;
  top: 58%;
  transform: translateY(-50%);
  width: min(680px, calc(100% - 56px));
}

.slide-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(34px, 3.2vw, 62px);
  font-weight: 600;
  letter-spacing: 0.035em;
  line-height: 1.1;
  margin-bottom: 22px;
  text-align: left;
  text-transform: uppercase;
}

.slide-one .slide-title {
  color: var(--white);
}

.slide-two .slide-title {
  color: var(--white);
}

.slide-copy {
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 620px;
}

.slide-one .slide-copy {
  color: rgba(255, 255, 255, 0.86);
}

.slide-two .slide-copy {
  color: rgba(255, 255, 255, 0.86);
}

.slide-button {
  align-items: center;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  color: var(--white);
  display: inline-flex;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  gap: 18px;
  letter-spacing: 0.12em;
  min-height: 52px;
  padding: 14px 20px;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
  text-transform: uppercase;
}

.slide-button:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.62);
  transform: translateY(-2px);
}

.slide-button span {
  font-size: 22px;
  line-height: 1;
  transition: transform 180ms ease;
}

.slide-button:hover span {
  transform: translateX(4px);
}

.slider-dots {
  bottom: 28px;
  display: flex;
  gap: 10px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 2;
}

.slider-dot {
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: #888;
  cursor: pointer;
  height: 9px;
  padding: 0;
  width: 9px;
}

.slider-dot.is-active {
  background: currentColor;
}

.logo-marquees {
  background: url("../images/slides/home-stadium.png") center bottom / cover no-repeat;
  direction: ltr;
  overflow: hidden;
  position: relative;
  transition: background-image 500ms ease;
}

.logo-marquees.show-slide-two {
  background-image: url("../images/slides/home-stadium-2.png");
}

.logo-marquee-row {
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
  align-items: center;
  background: rgba(8, 8, 8, 0.28);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  min-height: 52px;
  overflow: hidden;
}

.logo-marquee-row + .logo-marquee-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.logo-marquee-track {
  display: flex;
  flex-shrink: 0;
  width: max-content;
  will-change: transform;
}

.logo-marquee-track-left {
  animation: marquee-left 68s linear infinite;
}

.logo-marquee-track-right {
  animation: marquee-right 74s linear infinite;
}

.logo-marquee-row:hover .logo-marquee-track {
  animation-play-state: paused;
}

.logo-marquee-group {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: clamp(42px, 5vw, 82px);
  justify-content: space-around;
  min-width: 100vw;
  padding: 0 clamp(21px, 2.5vw, 41px);
}

.placeholder-logo {
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  flex-shrink: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  gap: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}

.placeholder-mark {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  display: inline-flex;
  font-size: 9px;
  height: 30px;
  justify-content: center;
  letter-spacing: 0.04em;
  width: 30px;
}

.placeholder-league-mark {
  border-radius: 5px 5px 14px 14px;
}

.brand-image-logo {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
  height: 40px;
  justify-content: center;
  width: 100px;
}

.brand-image-logo img {
  height: 36px;
  object-fit: contain;
  opacity: 0.92;
  width: 80px;
}

.league-image-logo {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
  height: 40px;
  justify-content: center;
  width: 112px;
}

.league-image-logo img {
  height: 36px;
  object-fit: contain;
  opacity: 0.92;
  width: 102px;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.home-intro {
  padding: 120px 0 128px;
  text-align: center;
}

.eyebrow {
  color: var(--accent);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.home-intro h2 {
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: -0.025em;
  margin: 0 auto 30px;
  max-width: 850px;
}

.home-intro-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  margin: 0 auto;
  max-width: 720px;
}

.home-services {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 70px auto 0;
  max-width: 980px;
}

.home-service {
  border-top: 1px solid var(--line);
  padding: 25px 16px 0;
}

.home-service svg {
  fill: none;
  height: 42px;
  margin-bottom: 20px;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  width: 42px;
}

.home-service h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.45;
  margin: 0 auto;
  max-width: 220px;
}

.fm-about {
  background: var(--surface-soft);
  color: var(--text);
  overflow: hidden;
  padding: 126px 0 134px;
}

.fm-about-header {
  margin: 0 auto 66px;
  max-width: 930px;
  text-align: center;
}

.fm-about-header h2 {
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: -0.045em;
  line-height: 1;
  margin-bottom: 30px;
}

.fm-about-header > p:last-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  margin: 0 auto;
  max-width: 760px;
}

.fm-about-grid {
  align-items: center;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(220px, 0.8fr) minmax(340px, 1.25fr) minmax(260px, 0.9fr);
}

.fm-credentials {
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.fm-credential {
  -webkit-backdrop-filter: blur(14px) saturate(125%);
  backdrop-filter: blur(14px) saturate(125%);
  align-items: center;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(24, 24, 24, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(24, 24, 24, 0.06);
  display: flex;
  gap: 18px;
  min-height: 104px;
  padding: 20px;
}

.fm-card-number {
  align-items: center;
  background: var(--accent);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  flex: 0 0 42px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 600;
  height: 42px;
  justify-content: center;
  letter-spacing: 0.08em;
}

.fm-credential p {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.fm-credential h3 {
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.25;
}

.fm-photo {
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.fm-photo img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.fm-quote {
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(24, 24, 24, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(24, 24, 24, 0.1);
  color: var(--black);
  margin-left: -68px;
  padding: 38px;
  position: relative;
  z-index: 3;
}

.fm-quote-mark {
  color: rgba(178, 138, 54, 0.28);
  font-family: Georgia, serif;
  font-size: 96px;
  line-height: 0.7;
  position: absolute;
  right: 24px;
  top: 26px;
}

.fm-quote p {
  font-size: clamp(17px, 1.45vw, 21px);
  font-style: italic;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.fm-quote footer {
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-top: 24px;
  text-transform: uppercase;
}

.fm-about.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.fm-about.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fm-about .reveal-delay-1 {
  --reveal-delay: 100ms;
}

.fm-about .reveal-delay-2 {
  --reveal-delay: 200ms;
}

.instagram-section {
  background: var(--white);
  padding: 118px 0 124px;
}

.instagram-section .container {
  max-width: 1480px;
}

.instagram-section-header {
  margin: 0 auto 56px;
  max-width: 740px;
  text-align: center;
}

.instagram-section-header h2 {
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: -0.025em;
}

.instagram-feed-grid {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1424px;
}

.instagram-post {
  background: var(--white);
  border: 0;
  display: block;
  height: 540px;
  min-width: 0;
  width: 100%;
}

@media (max-width: 1180px) {
  .instagram-feed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 920px;
  }

  .instagram-post {
    height: 680px;
  }
}

.sub-banner {
  background: url("../images/slides/home-stadium.png") center bottom / cover no-repeat;
  min-height: 430px;
  position: relative;
  text-align: center;
}

.sub-banner h1 {
  color: var(--white);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.sub-banner h1 span {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 0.38em;
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-top: 16px;
}

.position-center-center {
  left: 50%;
  position: absolute;
  top: 60%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
}

.section-40,
.section-100 {
  padding: 112px 0 120px;
}

.content-title {
  margin: 0 auto;
  max-width: 900px;
  text-align: center;
  width: 100%;
}

.content-title h2 {
  color: var(--text);
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: -0.02em;
  margin-bottom: 38px;
}

.content-title p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
}

.content-title p + p {
  margin-top: 22px;
}

.collaboration-copy p + p {
  margin-top: 30px;
}

.accent-rule {
  background: var(--accent);
  border: 0;
  height: 2px;
  margin: 48px auto;
  width: 54px;
}

.service-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 8px;
  text-align: left;
}

.service-grid ul {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.service-grid li,
.collaboration-list li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  padding: 7px 0 7px 18px;
  position: relative;
}

.service-grid li::before,
.collaboration-list li::before {
  background: var(--accent);
  border-radius: 50%;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  top: 18px;
  width: 4px;
}

.collaboration-list {
  border-top: 1px solid var(--line);
  margin: 0 auto;
  max-width: 760px;
  padding-top: 24px;
  text-align: left;
}

.bio-section {
  background: var(--black);
}

.bio-layout {
  align-items: start;
  display: grid;
  gap: clamp(44px, 6vw, 88px);
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.45fr);
}

.bio-photo {
  border-radius: 12px;
  width: 100%;
}

.bio-kicker {
  color: var(--accent);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.bio-title {
  color: var(--white);
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.025em;
  margin-bottom: 34px;
}

.bio-copy {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.8;
  text-align: left;
}

.bio-copy p + p {
  margin-top: 24px;
}

.team-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-card {
  overflow: hidden;
  text-align: center;
}

.team-card img {
  background: var(--surface-soft);
  width: 100%;
}

.team-name {
  padding: 25px 8px 0;
}

.team-name h2 {
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.team-name p {
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
}

.clients-section {
  background: var(--white);
}

.clients-intro {
  margin: 0 auto 72px;
  max-width: 780px;
  text-align: center;
}

.clients-intro h2 {
  font-size: clamp(32px, 3vw, 46px);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.clients-intro p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.clients-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--line);
  border: 1px solid var(--line);
}

.client-type {
  background: var(--white);
  min-height: 260px;
  padding: 38px 30px;
}

.client-number {
  color: var(--accent);
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 70px;
}

.client-type h2 {
  font-size: 21px;
  margin-bottom: 15px;
}

.client-type p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.site-footer {
  background: var(--surface);
  color: var(--text);
  min-height: 560px;
  padding: 98px 32px 112px;
  position: relative;
  text-align: center;
}

.footer-inner {
  margin: 0 auto;
  max-width: 1120px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 48px;
  width: min(360px, 72vw);
}

.footer-brand img {
  filter: invert(1);
  width: 100%;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 38px;
  justify-content: center;
  margin-bottom: 46px;
}

.footer-nav a {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.055em;
}

.footer-nav a:hover,
.footer-email:hover {
  opacity: 0.55;
}

.footer-contact {
  font-size: 15px;
  margin-bottom: 34px;
}

.footer-email {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.04em;
}

.copyright {
  font-size: 14px;
  margin-bottom: 40px;
}

.social-icons {
  display: flex;
  justify-content: center;
}

.social-link {
  align-items: center;
  border: 1px solid var(--text);
  border-radius: 50%;
  color: var(--text);
  display: inline-flex;
  height: 50px;
  justify-content: center;
  width: 50px;
}

.social-link:hover {
  background: var(--text);
  color: var(--white);
}

.social-link svg {
  fill: none;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.75;
  width: 24px;
}

.footer-cta {
  align-items: center;
  background: var(--black);
  bottom: 24px;
  color: var(--white);
  display: flex;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  gap: 16px;
  justify-content: space-between;
  left: 24px;
  letter-spacing: 0.12em;
  min-height: 52px;
  opacity: 0;
  padding: 14px 18px;
  pointer-events: none;
  position: fixed;
  text-align: left;
  text-transform: uppercase;
  transform: translateY(16px);
  transition: opacity 220ms ease, transform 240ms ease;
  width: auto;
  z-index: 20;
}

.footer-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.footer-cta span {
  font-size: 27px;
  line-height: 1;
  transition: transform 180ms ease;
}

.footer-cta:hover span {
  transform: translateX(5px);
}

.back-to-top {
  align-items: center;
  background: var(--black);
  bottom: 24px;
  color: var(--white);
  display: flex;
  font-size: 24px;
  height: 52px;
  justify-content: center;
  line-height: 1;
  position: fixed;
  right: 24px;
  width: 52px;
  z-index: 20;
}

.back-to-top:hover {
  background: var(--accent);
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .logo-marquee-track {
    animation: none;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .logo {
    flex-basis: 250px;
    width: 250px;
  }

  .nav-list {
    gap: 18px;
  }

  .nav-list a {
    font-size: 11px;
  }

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

@media (max-width: 860px) {
  body::before {
    -webkit-backdrop-filter: blur(20px) saturate(125%);
    backdrop-filter: blur(20px) saturate(125%);
    background: rgba(8, 8, 8, 0.22);
    content: "";
    inset: 86px 0 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity 220ms ease, visibility 220ms;
    visibility: hidden;
    z-index: 29;
  }

  body.nav-open::before {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .main-header .container {
    align-items: center;
    display: flex;
    min-height: 86px;
    padding-top: 0;
  }

  .logo {
    flex: 0 1 250px;
    margin: 0;
    width: min(250px, 62vw);
  }

  .main-nav {
    margin-left: auto;
    width: auto;
  }

  [dir="rtl"] .main-nav {
    margin-left: 0;
    margin-right: auto;
  }

  .nav-toggle {
    display: block;
    margin: 0;
  }

  .nav-list {
    -webkit-backdrop-filter: blur(20px) saturate(135%);
    backdrop-filter: blur(20px) saturate(135%);
    background: rgba(8, 8, 8, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
    border-right: 0;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
    display: block;
    left: 0;
    max-height: calc(100vh - 86px);
    opacity: 0;
    overflow-y: auto;
    padding: 4px 0 24px;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 86px;
    transform: translateY(-18px);
    transition: opacity 220ms ease, transform 260ms ease, visibility 260ms;
    visibility: hidden;
    width: 100%;
    z-index: 31;
  }

  .nav-list.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-list a {
    font-size: 15px;
    padding: 14px 0;
    text-align: center;
  }

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

  .language-toggle {
    font-size: 15px;
    justify-content: center;
    min-height: 52px;
    width: 100%;
  }

  .language-dropdown,
  [dir="rtl"] .language-dropdown {
    background: rgba(255, 255, 255, 0.07);
    border-left: 0;
    border-right: 0;
    box-shadow: none;
    left: auto;
    max-height: 0;
    min-width: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 12px;
    position: static;
    right: auto;
    top: auto;
    transform: none;
    transition: max-height 260ms ease, opacity 200ms ease, padding 260ms ease, visibility 260ms;
    width: 100%;
  }

  .language-menu.is-open .language-dropdown {
    max-height: 260px;
    opacity: 1;
    padding-bottom: 10px;
    padding-top: 10px;
  }

  .nav-list .language-dropdown a {
    font-size: 14px;
    padding: 11px 16px;
  }

  .home-slider {
    min-height: 620px;
    transition: min-height 240ms ease;
  }

  .slide-title {
    text-align: center;
  }

  .slide-content {
    left: 50%;
    text-align: center;
    top: 59%;
    transform: translate(-50%, -50%);
    width: calc(100% - 44px);
  }

  [dir="rtl"] .slide-content {
    left: 50%;
    right: auto;
  }

  .slide-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .sub-banner {
    background-attachment: scroll;
    min-height: 520px;
  }

  .fm-about-grid {
    grid-template-columns: 1fr;
    margin: 0 auto;
    max-width: 680px;
  }

  .fm-photo {
    min-height: 0;
    order: 1;
    width: 100%;
  }

  .fm-credentials {
    order: 2;
  }

  .fm-quote {
    margin-left: 0;
    order: 3;
  }

  .bio-layout {
    grid-template-columns: 1fr;
  }

  .bio-photo {
    margin: 0 auto;
    max-width: 520px;
  }

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

@media (max-width: 680px) {
  .container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .home-slider {
    height: 76vw;
    min-height: 580px;
    transition: min-height 240ms ease;
  }

  .slide-title {
    font-size: clamp(30px, 9vw, 46px);
    text-align: center;
  }

  .slide-content {
    left: 50%;
    text-align: center;
    top: 59%;
    transform: translate(-50%, -50%);
    width: calc(100% - 44px);
  }

  .slide-copy {
    font-size: 15px;
    line-height: 1.55;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
  }

  .logo-marquee-row {
    min-height: 46px;
  }

  .logo-marquee-group {
    gap: 38px;
    padding-left: 19px;
    padding-right: 19px;
  }

  .placeholder-logo {
    font-size: 11px;
    gap: 9px;
  }

  .placeholder-mark {
    height: 27px;
    width: 27px;
  }

  .brand-image-logo {
    height: 34px;
    width: 82px;
  }

  .brand-image-logo img {
    height: 30px;
    width: 68px;
  }

  .league-image-logo {
    height: 34px;
    width: 92px;
  }

  .league-image-logo img {
    height: 30px;
    width: 84px;
  }

  .home-intro,
  .section-40,
  .section-100 {
    padding: 82px 0 88px;
  }

  .home-services {
    gap: 0;
    grid-template-columns: 1fr;
    margin-top: 52px;
    max-width: 360px;
  }

  .home-service {
    align-items: center;
    display: grid;
    gap: 18px;
    grid-template-columns: 42px 1fr;
    padding: 20px 0;
    text-align: left;
  }

  .home-service svg {
    margin: 0;
  }

  .home-service h3 {
    margin: 0;
    max-width: none;
  }

  .fm-about {
    padding: 86px 0 94px;
  }

  .instagram-section {
    padding: 86px 0 92px;
  }

  .instagram-section-header {
    margin-bottom: 40px;
  }

  .instagram-feed-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
  }

  .instagram-post {
    height: 620px;
  }

  .fm-about-header {
    margin-bottom: 44px;
  }

  .fm-about-header h2 {
    font-size: clamp(34px, 4vw, 58px);
    margin-bottom: 24px;
  }

  .fm-about-header > p:last-child {
    font-size: 16px;
    line-height: 1.65;
  }

  .fm-credential {
    border-radius: 15px;
    min-height: 90px;
    padding: 16px;
  }

  .fm-photo {
    border-radius: 0;
  }

  .fm-quote {
    border-radius: 20px;
    padding: 30px 26px;
  }

  .sub-banner {
    background-attachment: scroll;
    min-height: 480px;
  }

  .content-title p,
  .clients-intro p,
  .home-intro-copy {
    font-size: 17px;
  }

  .service-grid,
  .clients-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    gap: 18px;
  }

  .client-type {
    min-height: 220px;
  }

  .client-number {
    margin-bottom: 50px;
  }

  .site-footer {
    min-height: 590px;
    padding: 78px 22px 120px;
  }

  .footer-brand {
    margin-bottom: 38px;
  }

  .footer-nav {
    gap: 14px 24px;
    margin-bottom: 38px;
  }

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

  .footer-cta {
    bottom: 14px;
    font-size: 11px;
    left: 14px;
  }

  .back-to-top {
    bottom: 14px;
    height: 48px;
    right: 14px;
    width: 48px;
  }
}

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


/* Clients page update: 3 centered cards + full-width player marquee */
.clients-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 980px;
}

.player-showcase {
  background: var(--surface-soft);
  overflow: hidden;
  padding: 88px 0 96px;
  width: 100%;
}

.player-showcase-header {
  margin-bottom: 42px;
  text-align: center;
}

.player-showcase-header h2 {
  font-size: clamp(32px, 3vw, 46px);
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.player-marquee {
  overflow: hidden;
  width: 100%;
}

.player-marquee-track {
  animation: player-marquee-scroll 34s linear infinite;
  display: flex;
  width: max-content;
  will-change: transform;
}

.player-marquee:hover .player-marquee-track {
  animation-play-state: paused;
}

.player-marquee-group {
  display: flex;
  flex-shrink: 0;
  gap: 24px;
  padding-left: 24px;
  padding-right: 24px;
}

.player-card {
  background: var(--white);
  border-radius: 0;
  flex: 0 0 auto;
  height: 420px;
  overflow: hidden;
  width: 315px;
}

.player-card img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

@keyframes player-marquee-scroll {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .player-marquee-track {
    animation: none;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .clients-grid--three {
    max-width: none;
  }

  .player-card {
    height: 380px;
    width: 286px;
  }
}

@media (max-width: 980px) {
  .clients-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .clients-grid--three {
    grid-template-columns: 1fr;
  }

  .player-showcase {
    padding: 78px 0 84px;
  }

  .player-showcase-header {
    margin-bottom: 34px;
  }

  .player-marquee-group {
    gap: 18px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .player-card {
    height: 320px;
    width: 240px;
  }
}


/* =========================================================
   HOME — Minimal Instagram gallery
   Scoped only to .instagram-section
   ========================================================= */

.instagram-section {
  background: var(--white);
  padding: 104px 0 112px;
}

.instagram-section .container {
  max-width: 1240px;
}

.instagram-section-header {
  margin: 0 auto 42px;
  max-width: 680px;
  text-align: center;
}

.instagram-section-header .eyebrow {
  margin-bottom: 16px;
}

.instagram-section-header h2 {
  font-size: clamp(32px, 3.4vw, 50px);
  letter-spacing: -0.025em;
}

.instagram-section .instagram-feed-grid {
  align-items: stretch;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1184px;
}

.instagram-section .instagram-photo {
  aspect-ratio: 1 / 1;
  background: var(--surface-soft);
  display: block;
  overflow: hidden;
  position: relative;
}

.instagram-section .instagram-photo::after {
  background: rgba(8, 8, 8, 0);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  transition: background-color 220ms ease;
  z-index: 2;
}

.instagram-section .instagram-photo:hover::after {
  background: rgba(8, 8, 8, 0.06);
}

.instagram-section .instagram-post {
  background: var(--surface-soft);
  border: 0;
  display: block;
  height: calc(100% + 190px);
  left: 0;
  min-width: 0;
  pointer-events: none;
  position: absolute;
  top: -72px;
  width: 100%;
}

@media (max-width: 980px) {
  .instagram-section .container {
    max-width: 760px;
  }

  .instagram-section .instagram-feed-grid {
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 700px;
  }
}

@media (max-width: 680px) {
  .instagram-section {
    padding: 82px 0 88px;
  }

  .instagram-section-header {
    margin-bottom: 32px;
  }

  .instagram-section .instagram-feed-grid {
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .instagram-section .instagram-post {
    height: calc(100% + 170px);
    top: -66px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .instagram-section .instagram-photo::after {
    transition: none;
  }
}

/* =========================================================
   COLLABORATION — Official Partners
   ========================================================= */

.official-partners {
  margin: 0 auto 96px;
  max-width: 1080px;
  text-align: center;
}

.official-partners h2 {
  color: var(--text);
  font-size: clamp(28px, 2.8vw, 40px);
  letter-spacing: -0.02em;
  margin-bottom: 46px;
}

.official-partners-grid {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 980px;
}

.partner-logo {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  justify-content: center;
  min-height: 190px;
  overflow: hidden;
  padding: 30px 28px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.partner-logo:hover {
  border-color: rgba(178, 138, 54, 0.55);
  box-shadow: 0 12px 30px rgba(24, 24, 24, 0.06);
  transform: translateY(-3px);
}

.partner-logo img {
  display: block;
  height: auto;
  max-height: 110px;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}

/* Individual optical sizing so different logo formats feel balanced. */
.partner-logo--fk img {
  max-height: 120px;
  max-width: 78%;
}

.partner-logo--sh img {
  max-height: 92px;
  max-width: 92%;
}

.partner-logo--iconic img {
  max-height: 78px;
  max-width: 96%;
}

@media (max-width: 860px) {
  .official-partners {
    margin-bottom: 78px;
  }

  .official-partners-grid {
    gap: 14px;
  }

  .partner-logo {
    min-height: 165px;
    padding: 24px 20px;
  }
}

@media (max-width: 680px) {
  .official-partners {
    margin-bottom: 68px;
  }

  .official-partners h2 {
    margin-bottom: 34px;
  }

  .official-partners-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .partner-logo {
    min-height: 150px;
  }

  .partner-logo--fk img {
    max-height: 110px;
  }

  .partner-logo--sh img {
    max-height: 82px;
  }

  .partner-logo--iconic img {
    max-height: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-logo {
    transition: none;
  }

  .partner-logo:hover {
    transform: none;
  }
}


/* =========================================================
   HOME — F10 page loader
   ========================================================= */

body.home-page.is-loading {
  overflow: hidden;
}

.page-loader {
  align-items: center;
  background: var(--black);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 1;
  position: fixed;
  transition: opacity 420ms ease, visibility 420ms ease;
  visibility: visible;
  z-index: 9999;
}

.page-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.page-loader-ball {
  align-items: center;
  display: flex;
  height: 82px;
  justify-content: center;
  width: 82px;
  animation: f10-loader-spin 1.8s linear infinite;
}

.page-loader-ball img {
  display: block;
  filter: brightness(0) invert(1);
  height: 100%;
  width: 100%;
  animation: f10-loader-pulse 1.15s ease-in-out infinite;
}

@keyframes f10-loader-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes f10-loader-pulse {
  0%,
  100% {
    opacity: 0.82;
    transform: scale(0.92);
  }

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

@media (max-width: 680px) {
  .page-loader-ball {
    height: 68px;
    width: 68px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader,
  .page-loader-ball,
  .page-loader-ball img {
    animation: none;
    transition-duration: 0.01ms;
  }
}
