/* ============================================================
   EIKON SPORTS — Premium Dark Cinematic Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0a0a0a;
  --bg-2:      #111111;
  --bg-3:      #181818;
  --gold:      #0099ff;
  --gold-dim:  #0077cc;
  --gold-glow: rgba(0,153,255,.18);
  --white:     #ffffff;
  --grey:      #888888;
  --grey-lt:   #bbbbbb;
  --border:    rgba(255,255,255,.07);
  --radius:    4px;
  --nav-h:     80px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Typography ───────────────────────────────────────────── */
.font-display { font-family: 'Bebas Neue', cursive; letter-spacing: .04em; }

h1,h2,h3 { font-family: 'Bebas Neue', cursive; letter-spacing: .05em; line-height: 1; }

/* ── Utility ──────────────────────────────────────────────── */
.container  { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.text-gold  { color: var(--gold); }
.text-grey  { color: var(--grey); }
.sr-only    { position: absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gold);
}

/* Gold divider line */
.gold-line {
  width: 48px; height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background: #33aaff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,153,255,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-ghost:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-2px);
}
.btn svg { width:16px; height:16px; transition: transform .25s; }
.btn:hover svg { transform: translateX(4px); }

/* ── Animations ───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }
.fade-up.delay-4 { transition-delay: .4s; }

/* ── NAVIGATION ───────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .4s, box-shadow .4s;
}
#nav.scrolled {
  background: rgba(10,10,10,.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
#nav .container {
  width: 100%;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 42px; width: auto; filter: brightness(0) invert(1); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transition: color .25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { padding: 10px 22px; font-size: .7rem; white-space: nowrap; }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(10,10,10,.98);
  backdrop-filter: blur(20px);
  padding: 32px 24px 48px;
  z-index: 999;
  border-top: 1px solid var(--border);
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s, opacity .3s;
}
.nav-mobile.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.nav-mobile a {
  display: block;
  font-family: 'Bebas Neue', cursive;
  font-size: 2.2rem;
  letter-spacing: .06em;
  color: rgba(255,255,255,.7);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--gold); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: auto;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 580px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg);
}
.hero-bg::after { display: none; }

/* Image band — sits below the text content, above the stats bar */
.hero-img-band {
  position: absolute;
  bottom: 140px;
  left: 0; right: 0;
  height: 420px;
  z-index: 1;
  background-image: url('../images/PHOTO-2026-03-30-13-28-51.jpg');
  background-size: cover;
  background-position: center 70%;
}
.hero-img-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 18%;
  background: linear-gradient(to bottom, var(--bg), transparent);
  z-index: 2;
}
.hero-img-band::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 3;
}
.hero h1 {
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: .9;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 32px; right: 40px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 18px; height: 18px; }

@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

/* Hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: linear-gradient(90deg, rgba(0,153,255,.12) 0%, transparent 100%);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(8px);
  padding: 20px 0;
}
.hero-stats .container {
  display: flex;
  gap: 48px;
}
.hero-stat { text-align: left; }
.hero-stat-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-top: 2px;
}

/* Sub-hero (inner pages) */
.page-hero {
  position: relative;
  height: 45vh;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  padding-bottom: 60px;
  overflow: hidden;
  background: var(--bg-2);
}
.page-hero::before {
  content: '';
  flex: 1 1 0%;
  min-height: calc(var(--nav-h) + 40px);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .25;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, var(--bg) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  text-transform: uppercase;
}
.page-hero .breadcrumb {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 12px;
}
.page-hero .breadcrumb span { color: var(--gold); }

/* ── ABOUT SECTION (homepage) ─────────────────────────────── */
.about-home {
  padding: 120px 0;
  position: relative;
}
.about-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-home-text h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  margin-bottom: 24px;
}
.about-home-text p {
  color: var(--grey-lt);
  line-height: 1.85;
  margin-bottom: 18px;
  font-weight: 300;
}
.about-home-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
  max-width: 85%;
}
.about-home-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.about-home-img:hover img { transform: scale(1.04); }
.about-home-img::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0,153,255,.25);
  border-radius: 2px;
  z-index: 1;
  pointer-events: none;
}
.about-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
  background: var(--gold);
  color: #fff;
  padding: 16px 24px;
  font-family: 'Bebas Neue', cursive;
  font-size: 1rem;
  letter-spacing: .08em;
  line-height: 1.2;
}
.about-badge strong { display: block; font-size: 2.2rem; line-height: 1; }

/* ── SERVICES SECTION ─────────────────────────────────────── */
.services-home {
  padding: 80px 0 120px;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.services-home::before {
  content: 'SERVICES';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Bebas Neue', cursive;
  font-size: 20vw;
  color: rgba(255,255,255,.015);
  pointer-events: none;
  white-space: nowrap;
}
.services-header {
  text-align: center;
  margin-bottom: 72px;
}
.services-header h2 { font-size: clamp(2.5rem, 5vw, 5rem); }
.services-header p {
  color: var(--grey-lt);
  max-width: 620px;
  margin: 24px auto 0;
  font-weight: 300;
  line-height: 1.85;
}
.services-header .section-label { justify-content: center; }
.services-header .section-label::before { display: none; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--bg-3);
  padding: 52px 40px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .5s ease;
}
.service-card:hover { background: #1a1a1a; }
.service-card:hover::after { width: 100%; }

.service-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-glow);
  border: 1px solid rgba(0,153,255,.2);
  border-radius: 2px;
  margin-bottom: 28px;
  color: var(--gold);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.service-items { margin-bottom: 28px; }
.service-items li {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-items li::before {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── CLIENTS SECTION ──────────────────────────────────────── */
.clients-home { padding: 120px 0; }
.clients-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.clients-header h2 { font-size: clamp(2.5rem, 5vw, 5rem); }
.clients-header p { color: var(--grey-lt); max-width: 380px; font-weight: 300; }

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.client-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg-3);
  cursor: pointer;
}
.client-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .6s ease;
  filter: grayscale(20%);
}
.client-card:hover img {
  transform: scale(1.06);
  filter: grayscale(0%);
}
.client-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.95) 0%, transparent 55%);
  transition: opacity .3s;
}
.client-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
  transform: translateY(0);
}
.client-card-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.15rem;
  letter-spacing: .05em;
  line-height: 1.1;
  margin-bottom: 4px;
}
.client-card-club {
  font-size: .7rem;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Full clients page grid */
.clients-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials {
  padding: 120px 0;
  background: var(--bg-2);
  overflow: hidden;
  position: relative;
}
.testimonials-inner { position: relative; }
.testimonials-header { text-align: center; margin-bottom: 72px; }
.testimonials-header h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.testimonials-header .section-label { justify-content: center; }
.testimonials-header .section-label::before { display: none; }

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 44px 36px;
  position: relative;
  transition: border-color .3s, transform .3s;
  text-align: center;
}
.testimonial-card:hover {
  border-color: rgba(0,153,255,.3);
  transform: translateY(-4px);
}
.testimonial-card::before { display: none; }
.testimonial-quote {
  font-size: .9rem;
  line-height: 1.85;
  color: var(--grey-lt);
  font-weight: 300;
  font-style: italic;
  position: relative;
  padding-top: 40px;
}
.testimonial-quote::before {
  content: '\201C';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: .7;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.testimonial-author-img {
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  margin-bottom: 6px;
}
.testimonial-author-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.testimonial-author-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.4rem;
  letter-spacing: .05em;
}
.testimonial-author-club {
  font-size: .7rem;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.about-intro {
  padding: 100px 0;
  background: var(--bg);
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-intro h2 { font-size: clamp(2.5rem, 4vw, 4rem); margin-bottom: 28px; }
.about-intro p {
  color: var(--grey-lt);
  line-height: 1.9;
  margin-bottom: 16px;
  font-weight: 300;
}
.about-intro-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.about-intro-img img { width: 100%; height: 100%; object-fit: cover; }
.about-intro-img::after {
  content: '';
  position: absolute;
  bottom: -2px; right: -2px;
  width: 80px; height: 80px;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
}

.team-section { padding: 100px 0; background: var(--bg-2); }
.team-header { text-align: center; margin-bottom: 80px; }
.team-header h2 { font-size: clamp(2.5rem, 5vw, 5rem); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.team-card { text-align: left; }
.team-card-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 28px;
}
.team-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(30%);
  transition: filter .4s, transform .6s;
}
.team-card:hover .team-card-img img {
  filter: grayscale(0%);
  transform: scale(1.04);
}
.team-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0,153,255,.2);
  pointer-events: none;
}
.team-card-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.6rem;
  letter-spacing: .05em;
  margin-bottom: 4px;
}
.team-card-role {
  font-size: .78rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
}
.team-card-bio {
  font-size: .85rem;
  color: var(--grey-lt);
  margin-top: 14px;
  line-height: 1.75;
  font-weight: 300;
}

/* ── SERVICES PAGE ────────────────────────────────────────── */
.services-detail { padding: 100px 0; }
.services-detail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.services-detail-block:last-child { border-bottom: none; }
.services-detail-block.reverse { direction: rtl; }
.services-detail-block.reverse > * { direction: ltr; }
.services-detail-text h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 20px; }
.services-detail-text p { color: var(--grey-lt); line-height: 1.9; font-weight: 300; margin-bottom: 28px; }
.services-detail-img { aspect-ratio: 4/3; overflow: hidden; border-radius: 2px; }
.services-detail-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.services-detail-img:hover img { transform: scale(1.04); }

.services-top { padding: 80px 0 40px; }
.services-intro {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.services-intro h2 { font-size: clamp(2.5rem, 5vw, 5rem); margin-bottom: 24px; }
.services-intro p { color: var(--grey-lt); font-weight: 300; line-height: 1.85; }

/* ── NEWS PAGE ────────────────────────────────────────────── */
.news-section { padding: 100px 0; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.news-card:hover {
  border-color: rgba(0,153,255,.3);
  transform: translateY(-4px);
}
.news-card-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-3);
}
.news-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.news-card:hover .news-card-thumb img { transform: scale(1.06); }
.news-card-body { padding: 28px; }
.news-card-tag {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.news-card-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.3rem;
  line-height: 1.1;
  margin-bottom: 12px;
}
.news-card-excerpt { font-size: .83rem; color: var(--grey); line-height: 1.7; }

/* Instagram embed fallback */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.insta-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--bg-3);
  position: relative;
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.insta-item:hover img { transform: scale(1.06); }
.insta-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.insta-item:hover .insta-item-overlay { opacity: 1; }
.insta-item-overlay svg { width: 28px; height: 28px; color: #fff; }

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-section { padding: 100px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
.contact-info h2 { font-size: clamp(2rem, 4vw, 4rem); margin-bottom: 28px; }
.contact-info p { color: var(--grey-lt); line-height: 1.85; font-weight: 300; margin-bottom: 40px; }
.contact-channels { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.contact-channel {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}
.contact-channel:hover { border-color: transparent; }
.contact-channel-icon {
  width: 56px; height: 56px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: background .2s, border-color .2s, transform .2s;
}
.contact-channel:hover .contact-channel-icon {
  background: var(--gold-glow);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.contact-channel-icon svg { width: 24px; height: 24px; }
.contact-channel-label {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 4px;
}
.contact-channel-value { font-weight: 500; font-size: .9rem; }

/* Follow Us block */
.contact-follow { margin-top: 48px; }
.contact-follow-heading {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .01em;
  margin-bottom: 10px;
  color: var(--white);
}
.contact-follow-sub {
  color: var(--grey-lt);
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 380px;
}
.contact-follow-icons { display: flex; gap: 16px; }
.contact-follow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  color: var(--gold);
  transition: background .2s, border-color .2s, transform .2s;
}
.contact-follow-icon svg { width: 24px; height: 24px; }
.contact-follow-icon:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* Form */
.contact-form-wrap {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 52px;
}
.contact-form-wrap h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  margin-bottom: 36px;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: border-color .3s, background .3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(0,153,255,.05);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Recruit CTA */
.recruit-cta {
  padding: 100px 0;
  background: var(--bg-2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.recruit-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,153,255,.06) 0%, transparent 70%);
}
.recruit-cta h2 { font-size: clamp(2.5rem, 5vw, 5rem); margin-bottom: 20px; position: relative; }
.recruit-cta p { color: var(--grey-lt); max-width: 480px; margin: 0 auto 40px; font-weight: 300; position: relative; }
.recruit-cta .btn { position: relative; }

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  padding: 100px 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,153,255,.07) 0%, transparent 60%);
}
.cta-banner-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-banner h2 { font-size: clamp(2.2rem, 4vw, 4rem); max-width: 600px; }
.cta-banner h2 em { color: var(--gold); font-style: normal; }

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: #000;
  border-top: 1px solid var(--border);
}
.footer-main {
  padding: 80px 0 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
}
.footer-brand-logo img { height: 44px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-brand-desc { font-size: .85rem; color: var(--grey); line-height: 1.75; max-width: 280px; }
.footer-col h5 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1rem;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: .82rem;
  color: var(--grey);
  transition: color .25s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--grey);
  transition: background .3s, color .3s, border-color .3s;
}
.footer-social a:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: .75rem; color: var(--grey); }
/* ── DIGITAL PARTNER CREDIT ───────────────────────────────── */
.footer-digital-partner {
  font-size: 16px;
  color: #aaaaaa;
  text-decoration: none;
  transition: filter .25s;
}
.footer-digital-partner:hover { filter: brightness(1.35); }

/* Liquid metal effect on "ai" in fluidflowai */
.liquid-metal-ai {
  font-weight: 600;
  display: inline-block;
  background: linear-gradient(
    90deg,
    #1a1a1a  0%,
    #6e6e6e 10%,
    #c0c0c0 20%,
    #ffffff 30%,
    #e8e8e8 40%,
    #a0a0a0 50%,
    #f5f5f5 60%,
    #c0c0c0 70%,
    #6e6e6e 85%,
    #1a1a1a 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter:
    drop-shadow(0 0 8px  rgba(192,192,192,0.6))
    drop-shadow(0 0 16px rgba(255,255,255,0.3))
    drop-shadow(0 0 24px rgba(192,192,192,0.2));
  animation:
    liquid-metal-flow 3s ease-in-out infinite alternate,
    liquid-metal-skew 2s ease-in-out infinite alternate;
}
@keyframes liquid-metal-flow {
  from { background-position: 0%   50%; }
  to   { background-position: 100% 50%; }
}
@keyframes liquid-metal-skew {
  from { transform: skewX(-1deg); }
  to   { transform: skewX(1deg); }
}

/* Gold bar at very bottom */
.footer-gold-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dim) 50%, transparent 100%);
}

/* ── TICKER / MARQUEE ─────────────────────────────────────── */
.ticker {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 80px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-family: 'Bebas Neue', cursive;
  font-size: 1rem;
  letter-spacing: .12em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.ticker-dot {
  width: 6px; height: 6px;
  background: rgba(255,255,255,.5);
  border-radius: 50%;
  flex-shrink: 0;
  align-self: center;
}
.ticker-logo {
  padding: 0 32px;
}
.ticker-logo img {
  height: 36px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}
.ticker-logo-screen img {
  mix-blend-mode: screen;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .ticker-track { animation-duration: 8s; gap: 40px; }
}

/* ── NUMBER STRIP ─────────────────────────────────────────── */
.numbers-strip {
  padding: 80px 0;
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.number-item-num {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3rem, 6vw, 6rem);
  color: var(--gold);
  line-height: 1;
}
.number-item-label {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 8px;
}

/* ── PLAYER PROFILE PAGE ──────────────────────────────────── */
.player-profile { padding: 80px 0 100px; }
.player-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}
.player-photo {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.player-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top;
  border-radius: 2px;
  max-height: 600px;
}
.player-photo::after {
  content: '';
  position: absolute;
  bottom: -2px; right: -2px;
  width: 56px; height: 56px;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
}
.player-stats-wrap .section-label { margin-bottom: 28px; }
.player-table {
  width: 100%;
  border-collapse: collapse;
}
.player-table tr { border-bottom: 1px solid var(--border); }
.player-table td {
  padding: 14px 0;
  font-size: .88rem;
  vertical-align: top;
}
.player-table td:first-child {
  color: var(--grey);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  width: 150px;
  padding-right: 24px;
}
.player-table td:last-child {
  color: var(--white);
  font-weight: 500;
}
.player-bio-wrap {
  border-top: 1px solid var(--border);
  padding-top: 52px;
  margin-bottom: 52px;
}
.player-bio-wrap h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.player-bio-wrap p {
  color: var(--grey-lt);
  line-height: 1.95;
  font-weight: 300;
  font-size: .93rem;
  max-width: 820px;
}


/* Player media (video + playlist) */
.player-media {
  border-top: 1px solid var(--border);
  padding-top: 52px;
  margin-bottom: 52px;
}
.player-media h3 {
  font-size: 2rem;
  margin-bottom: 28px;
}
.player-video-wrap {
  position: relative;
  padding-top: min(56.25%, 360px); /* 16:9, capped at 640×360 */
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 28px;
  max-width: 640px;
}
.player-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.btn-playlist {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #0a0a0a;
  border: 1px solid var(--border);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color var(--transition), color var(--transition);
}
.btn-playlist:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-transfermarkt {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: #111;
  border: 1px solid var(--border);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: border-color var(--transition), color var(--transition);
  margin-bottom: 20px;
}
.btn-transfermarkt:hover { border-color: var(--gold); color: var(--gold); }
.tm-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #1d3461;
  border-radius: 4px;
  font-size: .68rem;
  font-weight: 800;
  font-style: italic;
  color: #fff;
  letter-spacing: 0;
  text-transform: lowercase;
  flex-shrink: 0;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { gap: 20px; }
}
@media (max-width: 1024px) and (orientation: portrait) {
  .hero { height: auto; min-height: 0; padding-bottom: 450px; }
  .hero-img-band { height: 300px; bottom: 100px; background-size: contain; background-repeat: no-repeat; background-position: center center; }
}

@media (max-width: 1024px) {
  .about-home-grid        { gap: 48px; }
  .services-grid          { grid-template-columns: 1fr; }
  .clients-grid           { grid-template-columns: repeat(3, 1fr); }
  .testimonials-track     { grid-template-columns: 1fr 1fr; }
  .footer-grid            { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid           { grid-template-columns: 1fr; }
  .about-intro-grid       { grid-template-columns: 1fr; }
  .team-grid              { grid-template-columns: 1fr 1fr; }
  .services-detail-block  { grid-template-columns: 1fr; }
  .services-detail-block.reverse { direction: ltr; }
  .cta-banner-inner       { flex-direction: column; text-align: center; }
  .numbers-grid           { grid-template-columns: repeat(2, 1fr); }
  .news-grid              { grid-template-columns: 1fr 1fr; }
  .insta-grid             { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .hero { height: auto; min-height: 0; padding-top: calc(var(--nav-h) + 48px); padding-bottom: 360px; }
  .hero-img-band { height: 230px; bottom: 160px; background-image: url('../images/PHOTO-2026-03-30-13-28-51.jpg'); background-size: contain; background-repeat: no-repeat; background-position: center center; }
  .player-grid { grid-template-columns: 1fr; gap: 40px; }
  :root { --nav-h: 68px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger           { display: flex; }
  .about-home-grid      { grid-template-columns: 1fr; gap: 48px; }
  .about-badge          { left: 0; }
  .clients-grid         { grid-template-columns: 1fr 1fr; gap: 12px; }
  .clients-header       { flex-direction: column; align-items: flex-start; gap: 16px; }
  .testimonials-track   { grid-template-columns: 1fr; }
  .footer-grid          { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom        { flex-direction: column; gap: 12px; text-align: center; }
  .hero-stats .container { gap: 24px; flex-wrap: wrap; }
  .hero-scroll          { display: none; }
  .team-grid            { grid-template-columns: 1fr; }
  .contact-form-wrap    { padding: 32px 24px; }
  .form-row             { grid-template-columns: 1fr; }
  .news-grid            { grid-template-columns: 1fr; }
  .insta-grid           { grid-template-columns: repeat(2, 1fr); }
  .clients-full-grid    { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 680px) and (max-width: 768px) and (orientation: portrait) {
  .hero { padding-bottom: 430px; }
  .hero-img-band { height: 280px; bottom: 120px; }
}

@media (max-width: 480px) {
  .clients-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 3.5rem; }
  .hero-actions { flex-direction: column; }
  .clients-full-grid { grid-template-columns: 1fr; }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    height: auto;
    min-height: 100svh;
    padding-top: calc(var(--nav-h) + 24px);
    padding-bottom: 240px;
  }
  .hero-img-band { height: 150px; bottom: 90px; background-size: contain; background-repeat: no-repeat; background-position: center center; }
  .hero-stats { padding: 12px 0; }
  .hero h1 { font-size: 2.8rem; }
  .hero-sub { display: none; }
}

@media (min-width: 769px) {
  .hero-img-band::before { display: none; }
  .hero-img-band::after { display: none; }
}
