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

  :root {
    --navy:        #0B1D3A;
    --navy-mid:    #162D55;
    --navy-light:  #1E3D6E;
    --white:       #FFFFFF;
    --off-white:   #F5F7FA;
    --silver:      #8A9BB0;
    --silver-light:#C8D4E0;
    --gold:        #C4A35A;
    --gold-light:  #E2C48A;
    --charcoal:    #2C3E55;
    --text-muted:  #6B7A8E;
    --border:      #DDE4ED;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
  }

  /* ── TYPOGRAPHY ── */
  h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.15; }
  h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 700; }
  h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 600; }
  h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
  p  { font-size: 1.0625rem; color: var(--text-muted); line-height: 1.8; }

  .eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
  }

  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--silver);
    display: block;
    margin-bottom: 0.75rem;
  }

  /* ── LAYOUT ── */
  .container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
  section { padding: 6rem 0; }

  /* ── BUTTONS ── */
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    background: var(--gold);
    color: var(--navy);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.875rem 2.2rem;
    background: transparent;
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.45);
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

  .btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.875rem 2.2rem;
    background: transparent;
    color: var(--navy);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--navy);
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s, color 0.25s;
  }
  .btn-outline-dark:hover { background: var(--navy); color: var(--white); }

  /* ── NAVIGATION ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.35s, padding 0.35s, box-shadow 0.35s;
  }
  nav.scrolled {
    background: rgba(255,255,255,0.97);
    padding: 1rem 2rem;
    box-shadow: 0 1px 0 var(--border);
  }
  nav.scrolled .nav-logo { color: var(--navy); }
  nav.scrolled .nav-logo .logo-dot { color: var(--gold); }
  nav.scrolled .nav-links a { color: var(--charcoal); }
  nav.scrolled .nav-links a:hover { color: var(--gold); }
  nav.scrolled .nav-cta { background: var(--navy); color: var(--white); }
  nav.scrolled .nav-cta:hover { background: var(--gold); color: var(--navy); }

  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.04em;
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: color 0.35s;
  }
  .nav-logo .logo-wordmark { display: flex; align-items: center; gap: 0.4em; }
  .nav-logo .logo-dot { color: var(--gold); font-size: 0.7em; }
  .nav-logo .logo-rule {
    height: 1px;
    background: var(--gold);
    width: 100%;
    opacity: 0.7;
    margin-top: 1px;
  }
  .nav-logo .logo-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.48rem;
    letter-spacing: 0.3em;
    font-weight: 600;
    color: var(--silver);
    text-transform: uppercase;
    margin-top: 1px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
  }
  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.6rem 1.4rem;
    background: var(--gold);
    color: var(--navy);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
  }
  .nav-cta:hover { background: var(--gold-light); }

  .hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    flex-direction: column;
    gap: 5px;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: background 0.25s;
  }
  nav.scrolled .hamburger span { background: var(--navy); }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--white);
    text-decoration: none;
    text-align: center;
  }
  .mobile-menu a:hover { color: var(--gold); }
  .mobile-menu .close-btn {
    position: absolute;
    top: 1.5rem; right: 2rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
  }

  .hero-geo {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  .hero-geo-line {
    position: absolute;
    background: rgba(196,163,90,0.08);
  }
  .hero-geo-line.hl1 { width: 1px; height: 60%; top: 0; right: 28%; }
  .hero-geo-line.hl2 { width: 1px; height: 40%; bottom: 0; right: 28%; background: rgba(196,163,90,0.05); }
  .hero-geo-line.hl3 { height: 1px; width: 35%; top: 35%; right: 0; }
  .hero-geo-line.hl4 { height: 1px; width: 25%; top: 65%; right: 3%; background: rgba(196,163,90,0.05); }
  .hero-grid {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 35%;
    background-image:
      linear-gradient(rgba(196,163,90,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(196,163,90,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
  }
  .hero-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(196,163,90,0.06);
  }
  .hero-circle.hc1 { width: 600px; height: 600px; bottom: -200px; right: -100px; }
  .hero-circle.hc2 { width: 380px; height: 380px; bottom: -80px; right: 50px; border-color: rgba(196,163,90,0.1); }

  .hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1160px;
    margin: 0 auto;
    padding: 10rem 2rem 6rem;
    width: 100%;
  }

  .hero-content { max-width: 680px; }
  .hero h1 { color: var(--white); margin-bottom: 1.5rem; }
  .hero h1 em { color: var(--gold); font-style: normal; }
  .hero .hero-sub {
    font-size: 1.125rem;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    max-width: 540px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
  }

  .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }

  .hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2.5rem;
    flex-wrap: wrap;
  }
  .hero-stat { }
  .hero-stat .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
  }
  .hero-stat .stat-num span { color: var(--gold); }
  .hero-stat .stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--silver);
    margin-top: 0.4rem;
  }

  /* ── LOGO MARK (big centered display) ── */
  .logo-display {
    background: var(--off-white);
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .logo-display-inner {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .logo-wordmark-lg {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.12em;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 0.5em;
  }
  .logo-wordmark-lg .lw-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
    flex-shrink: 0;
    margin-bottom: 0.05em;
  }
  .logo-rule-lg {
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .logo-tagline-lg {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--silver);
    font-weight: 600;
  }

  /* ── PARTNERS BAR ── */
  .partners-bar {
    background: var(--white);
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--border);
  }
  .partners-bar p.bar-label {
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 2.5rem;
  }
  .partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
  }

  /* ── SERVICES ── */
  .services { background: var(--white); }
  .services .section-header { margin-bottom: 4rem; }
  .services .section-header h2 { max-width: 480px; }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
  }

  .service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    transition: background 0.3s;
    cursor: default;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height 0.4s ease;
  }
  .service-card:hover::before { height: 100%; }
  .service-card:hover { background: var(--off-white); }

  .service-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 1.5rem;
  }
  .service-card h3 { margin-bottom: 1rem; font-size: 1.25rem; }
  .service-card p { font-size: 0.9375rem; }
  .service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    padding-top: 1.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    transition: color 0.2s, gap 0.2s;
  }
  .service-card .service-link:hover { color: var(--gold); gap: 0.6rem; }
  .service-link-arrow { font-size: 1rem; }

  /* ── ABOUT ── */
  .about {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .about::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: rgba(196,163,90,0.03);
    pointer-events: none;
  }
  .about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .about-left h2 { color: var(--white); margin-bottom: 1.5rem; }
  .about-left h2 em { color: var(--gold); font-style: normal; }
  .about-left p { color: rgba(255,255,255,0.65); margin-bottom: 1.5rem; }
  .about-right { }

  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.07);
  }
  .about-stat {
    background: rgba(255,255,255,0.03);
    padding: 2rem 1.75rem;
    transition: background 0.3s;
  }
  .about-stat:hover { background: rgba(196,163,90,0.07); }
  .about-stat .astat-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
  }
  .about-stat .astat-num span { color: var(--gold); }
  .about-stat .astat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--silver);
  }

  /* ── SPORTS ── */
  .sports { background: var(--off-white); }
  .sports .section-header { margin-bottom: 3.5rem; }
  .sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  .sport-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .sport-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(11,29,58,0.08);
  }
  .sport-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.25rem;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
  }
  .sport-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
  .sport-card p { font-size: 0.875rem; }
  .sport-tag {
    display: inline-block;
    margin-top: auto;
    padding-top: 1rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-bottom: 0.25rem;
    background: rgba(196,163,90,0.1);
    color: var(--gold);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
  }

  /* ── SPONSORS ── */
  .sponsors {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .sponsors-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: clamp(8rem, 18vw, 18rem);
    font-weight: 700;
    color: rgba(255,255,255,0.02);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.03em;
  }
  .sponsors-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
  }
  .sponsors-left h2 { color: var(--white); margin-bottom: 0.75rem; }
  .sponsors-left h2 em { color: var(--gold); font-style: normal; }
  .sponsors-left .lead {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 2rem;
    font-weight: 300;
  }

  .sponsor-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }
  .sponsor-pillar {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
  }
  .pillar-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-top: 0.15rem;
  }
  .pillar-text h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.25rem;
  }
  .pillar-text p { font-size: 0.875rem; color: rgba(255,255,255,0.55); }

  .sponsors-right {
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2.5rem;
    background: rgba(255,255,255,0.03);
  }
  .sponsors-right h3 { color: var(--white); margin-bottom: 0.5rem; font-size: 1.3rem; }
  .sponsors-right .form-sub { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-bottom: 2rem; }

  /* ── PARTNERS CTA ── */
  .partners-cta {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .partners-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .partner-cta-block {
    padding: 4rem 3rem;
    border-right: 1px solid var(--border);
    transition: background 0.3s;
  }
  .partner-cta-block:last-child { border-right: none; }
  .partner-cta-block:hover { background: var(--white); }
  .partner-cta-block h3 { margin-bottom: 0.75rem; }
  .partner-cta-block p { margin-bottom: 2rem; font-size: 0.9375rem; }

  /* ── CONTACT ── */
  .contact { background: var(--white); }
  .contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 6rem;
    align-items: start;
  }
  .contact-left h2 { margin-bottom: 1rem; }
  .contact-left p { margin-bottom: 2rem; font-size: 0.9375rem; }
  .contact-details { display: flex; flex-direction: column; gap: 1rem; }
  .contact-detail {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .contact-detail .cd-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--silver);
  }
  .contact-detail .cd-value {
    font-size: 0.9375rem;
    color: var(--navy);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
  }
  .contact-detail .cd-value:hover { color: var(--gold); }

  /* ── FORM ── */
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  .form-grid.full { grid-template-columns: 1fr; }
  .form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .form-field.span-2 { grid-column: span 2; }
  .form-field label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--charcoal);
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    background: var(--off-white);
    font-family: 'Barlow', sans-serif;
    font-size: 0.9375rem;
    color: var(--navy);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    resize: none;
    -webkit-appearance: none;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    border-color: var(--gold);
    background: var(--white);
  }
  .form-field textarea { min-height: 130px; }

  .form-submit { margin-top: 1.5rem; }
  .form-submit .btn-primary { width: 100%; justify-content: center; padding: 1.1rem; font-size: 0.82rem; }
  .form-note {
    font-size: 0.8rem;
    color: var(--silver);
    text-align: center;
    margin-top: 0.75rem;
  }

  .form-success {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
  }
  .form-success .success-icon {
    width: 56px;
    height: 56px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.3rem;
    color: var(--gold);
  }
  .form-success h3 { margin-bottom: 0.5rem; }
  .form-success p { font-size: 0.9375rem; }

  /* ── FOOTER ── */
  footer {
    background: var(--navy);
    color: var(--white);
    padding: 5rem 0 2.5rem;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 2rem;
  }
  .footer-brand .foot-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 0.4em;
    margin-bottom: 0.3rem;
  }
  .foot-logo .fl-dot { color: var(--gold); font-size: 0.7em; }
  .footer-rule { height: 1px; background: var(--gold); opacity: 0.5; width: 80%; margin-bottom: 1rem; }
  .footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.7; }

  .footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
  .footer-col ul a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-col ul a:hover { color: var(--white); }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
  .social-links { display: flex; gap: 1.25rem; }
  .social-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
  }
  .social-links a:hover { color: var(--gold); }

  /* ── PARTNER LOGOS ── */
  .partner-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    transition: opacity 0.3s;
    cursor: default;
  }
  .partner-logo-item:hover { opacity: 1; }
  .partner-logo-item svg { display: block; }
  .partner-logo-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--silver);
  }

  /* ── TEAM ── */
  .team { background: var(--off-white); }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
  }
  .team-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transition: background 0.3s;
  }
  .team-card:hover { background: #f8f9fc; }
  .team-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
  }
  .team-avatar-initials {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
  }
  .team-card h3 { font-size: 1.2rem; margin-bottom: 0.2rem; }
  .team-role {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.1rem;
  }
  .team-bio { font-size: 0.9rem; margin-bottom: 1.5rem; line-height: 1.75; flex: 1; }
  .team-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
    margin-top: 0;
  }
  .credential-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
  }
  .credential-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 1px;
    border: 1px solid rgba(196,163,90,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    color: var(--gold);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
  }
  .credential-text {
    font-size: 0.8125rem;
    color: var(--charcoal);
    line-height: 1.5;
  }
  .credential-text strong {
    display: block;
    font-size: 0.62rem;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--silver);
    font-weight: 600;
    margin-bottom: 0.1rem;
  }

  /* ── TALENT PRIDE ── */
  .talent-pride {
    background: var(--navy);
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
  }
  .talent-pride::before {
    content: 'TALENT';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Playfair Display', serif;
    font-size: clamp(6rem, 13vw, 13rem);
    font-weight: 700;
    color: rgba(255,255,255,0.025);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
  }
  .talent-pride-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .talent-pride-left h2 { color: var(--white); margin-bottom: 1rem; }
  .talent-pride-left h2 em { color: var(--gold); font-style: normal; }
  .talent-pride-left p { color: rgba(255,255,255,0.6); font-size: 1.0625rem; margin-bottom: 1.75rem; max-width: 500px; }
  .talent-sports-right { display: flex; flex-direction: column; gap: 1rem; }
  .talent-sport-block {
    border: 1px solid rgba(255,255,255,0.09);
    padding: 1.4rem 1.75rem;
    background: rgba(255,255,255,0.03);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: background 0.3s, border-color 0.3s;
  }
  .talent-sport-block:hover { background: rgba(196,163,90,0.06); border-color: rgba(196,163,90,0.3); }
  .talent-sport-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(196,163,90,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  .talent-sport-label { flex: 1; }
  .talent-sport-label h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.2rem;
  }
  .talent-sport-label p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin: 0; }
  .talent-badge {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(196,163,90,0.35);
    padding: 0.22rem 0.65rem;
    flex-shrink: 0;
  }
  @media (max-width: 900px) {
    .talent-pride-inner { grid-template-columns: 1fr; gap: 3rem; }
    .team-grid { grid-template-columns: 1fr !important; }
  }
  @media (max-width: 1100px) {
    .team-grid { grid-template-columns: repeat(2, 1fr) !important; }
  }

  /* ── SCROLL ANIMATIONS ── */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .about-inner, .sponsors-inner, .contact-inner, .partners-cta-inner { grid-template-columns: 1fr; gap: 3rem; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .form-grid { grid-template-columns: 1fr; }
    .form-field.span-2 { grid-column: span 1; }
    .hero-stats { gap: 2rem; }
    .hero-circle { display: none; }
  }
  @media (max-width: 600px) {
    section { padding: 4rem 0; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .partner-cta-block { padding: 3rem 1.5rem; border-right: none; border-bottom: 1px solid var(--border); }
    .services-grid { grid-template-columns: 1fr; }
  }