Standard  ·  High Performance

Get Hooked on Boxing That Reignites Your Energy

Ready to Transform Your Body, Sharpen Your Mind, and Unleash Your Inner Fighter? Join Hooked Boxing — Where it Training Means Purpose.

Start Your Boxing Journey Today Let's see if Hooked fits your professional life
Limited Spots Available · Apply Now to Reserve Yours

What's Inside Hooked?

01
Boxing That Fits Your Professional Life

Our 8:1 member-to-coach ratio means you'll learn proper boxing techniques in a time-efficient format designed for busy schedules. Every session combines technical boxing skills with high-energy conditioning that delivers maximum results without wasting your precious time. No wandering around equipment. No inefficiencies, just show up, get an expert-led workout, and get on with your day.

02
Boxing Training That Respects Your Calendar

Whether you've never thrown a punch or you've trained before, our structured approach fits the needs of busy professionals. We understand early mornings and late deadlines. That's why our program is designed to deliver results in just three sessions per week — making it realistic for even the busiest professionals to maintain.

03
Community of Like-Minded Professionals

Train alongside people who understand the demands of your career, the packed schedules, the mental load, the need for efficiency. Here, there are no fitness influencers but time-aherers, just fellow professionals who value both their careers and their wellbeing. This isn't just a workout — it's your professional network in boxing gloves.

04
Performance That Extends Beyond The Gym

Yes, our members transform physically like Celia, who dropped 6kg. But what they value most? The mental clarity and sustained energy that improves their professional performance. The confidence that carries into their presentations. The stress relief that makes them more effective leaders and colleagues.

Limited Spots Available

What You'll Get.

3 Efficient Boxing Sessions Weekly

Learn authentic boxing skills in bite-sized, customised 60-minute sessions.

Book a Call Now
Flexible Scheduling Options

Morning and evening classes that work around your professional commitments.

Book a Call Now
Small Group Environment

Never more than 8 people per coach.

Book a Call Now
Performance-Focused Approach

Training designed to amplify your energy and focus for work.

Book a Call Now
A Professional Network

Connect with like-minded individuals who value both careers and wellbeing.

Book a Call Now
Testimonials

Real People. Real Results.

What Our Members Are Saying

"I leave every session feeling unstoppable."
"From zero experience to completely obsessed."
"It's not just a workout — it changed my mindset."
"The best investment I've made in myself."
Book a Call Now Let's see if Hooked fits your professional life
Limited Spots Available · Apply Now

You're One Step Closer to Becoming the Strongest Version of Yourself

We just need a few quick details to make sure we can help you hit your goals.
Fill out the short application below and we'll review it ASAP.

All fitness levels welcome
Real coaches. Real results.
No experience needed
🇬🇧 +44

This is so we can contact you when we have boxing coaching spots available.



Standard · High Performance © 2025 Hooked Boxing. All rights reserved.
// ─── PHONE — intl-tel-input ─────────────────────────────── var itiPhone; document.addEventListener('DOMContentLoaded', function () { var phoneInput = document.getElementById('phone'); if (phoneInput && window.intlTelInput) { itiPhone = window.intlTelInput(phoneInput, { initialCountry: 'gb', preferredCountries: ['gb', 'ie', 'us', 'au', 'ca'], separateDialCode: true, utilsScript: 'https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.19/js/utils.js' }); } }); // ─── FORM SUBMISSION ────────────────────────────────────────── async function handleFormSubmit() { const btn = document.getElementById('submitBtn'); const btnText = document.getElementById('submitBtnText'); const firstName = document.getElementById('fname').value.trim(); const phone = itiPhone ? itiPhone.getNumber() : document.getElementById('phone').value.trim(); const email = document.getElementById('email').value.trim(); const goal = document.getElementById('goal').value; const budget = document.getElementById('budget').value; const readiness = document.querySelector('input[name="readiness"]:checked'); const commit = document.querySelector('input[name="commit"]:checked'); if (!firstName || !phone || !email || !goal || !budget || !readiness || !commit) { alert('Please fill in all required fields before submitting.'); return; } btn.disabled = true; btnText.textContent = 'Submitting…'; const payload = { firstName, phone, email, goal, budget, readiness: readiness.value, commitment: commit.value, source: 'Hooked VSL Page', submittedAt: new Date().toISOString() }; // Send to GHL webhook — URLSearchParams bypasses CORS preflight (simple request) try { const params = new URLSearchParams(); params.append('firstName', firstName); params.append('phone', phone); params.append('email', email); params.append('goal', goal); params.append('budget', budget); params.append('readiness', readiness.value); params.append('commitment', commit.value); params.append('source', 'Hooked VSL Page'); params.append('submittedAt', new Date().toISOString()); await fetch('https://services.leadconnectorhq.com/hooks/uDVSj00wMRAOYoX8kwq8/webhook-trigger/1ed57a15-cb6e-49e4-bc8d-3cf62a0fd760', { method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded' }, body: params.toString(), mode: 'no-cors' }); } catch (err) { console.warn('Webhook error (non-blocking):', err); } if (budget === 'C | Less than £100') { window.location.href = 'https://go.hookedboxingclub.com/pay-as-you-go'; } else { window.location.href = 'https://go.hookedboxingclub.com/calendar'; } } // Fix anchor scrolling (overflow-x:hidden on body breaks native anchors) document.querySelectorAll('a[href="#apply"]').forEach(btn => { btn.addEventListener('click', e => { e.preventDefault(); document.getElementById('apply').scrollIntoView({ behavior: 'smooth', block: 'start' }); }); }); // Scroll reveal const reveals = document.querySelectorAll('.reveal'); const obs = new IntersectionObserver((entries) => { entries.forEach((e, i) => { if (e.isIntersecting) { setTimeout(() => e.target.classList.add('visible'), i * 80); obs.unobserve(e.target); } }); }, { threshold: 0.1 }); reveals.forEach(el => obs.observe(el)); // Nav backdrop on scroll const nav = document.querySelector('nav'); window.addEventListener('scroll', () => { if (window.scrollY > 60) { nav.style.backdropFilter = 'blur(12px)'; nav.style.background = 'rgba(13,12,11,0.92)'; } else { nav.style.backdropFilter = 'blur(0px)'; nav.style.background = 'linear-gradient(to bottom, rgba(13,12,11,0.95), transparent)'; } });