/* ==========================================================================
   Bespoke Editorial CSS - High End Agency Feel
   ========================================================================== */
:root {
    --bg-color: #070708; /* Very deep rich black */
    --surface-color: #111113;
    --accent-color: #E5C158; /* Elegant muted gold/yellow instead of bright primary */
    --text-primary: #F4F4F5;
    --text-secondary: #8A8A93;
    --font-heading: 'Syne', sans-serif; /* High fashion / architectural font */
    --font-body: 'Manrope', sans-serif; /* Clean, modern sans */
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

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

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.text-accent {
    color: var(--accent-color);
}

.section-padding {
    padding: 150px 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
.editorial-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

/* ==========================================================================
   Navigation (Minimalist)
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.navbar .logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 50px;
    align-items: center;
    list-style: none;
}

.nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.6;
}

.btn-contact {
    border: 1px solid var(--text-primary);
    padding: 10px 24px;
    border-radius: 40px;
    transition: all 0.3s ease !important;
}
.btn-contact:hover {
    background: var(--text-primary);
    color: var(--bg-color) !important;
    opacity: 1 !important;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-left: 5%;
    padding-right: 5%;
    position: relative;
    overflow: visible;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    z-index: -1;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    background: linear-gradient(to right, rgba(7,7,8,0.9) 0%, rgba(7,7,8,0.4) 100%), 
                url('https://images.unsplash.com/photo-1518605368461-1e1e38ce8ba9?auto=format&fit=crop&q=80&w=2000') center/cover no-repeat;
    filter: grayscale(100%);
    z-index: -1;
    transform: scale(1.05);
    animation: slowZoom 20s infinite alternate linear;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-content {
    width: 100%;
    max-width: 100%;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6.5vw, 6rem);
    font-weight: 800;
    line-height: 0.95;
    display: flex;
    flex-direction: column;
}

.hero-title .indent {
    margin-left: 4vw;
}

.hero-subtitle {
    margin-top: 3rem;
    font-size: 1rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

/* ==========================================================================
   About Section (Asymmetric)
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
}

.decorative-line {
    width: 100px;
    height: 2px;
    background-color: var(--accent-color);
    margin-top: 2rem;
}

.about-text .lead {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-image-large {
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.about-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

/* ==========================================================================
   Team Section (Editorial Layout)
   ========================================================================== */
.team-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 80px;
}

.team-profile {
    position: relative;
}

.profile-image-wrapper {
    width: 100%;
    height: 700px;
    overflow: hidden;
    position: relative;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-filter: grayscale(100%) contrast(1.1);
    filter: grayscale(100%) contrast(1.1);
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.7s ease, -webkit-filter 0.7s ease;
    will-change: filter, transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.massamba-crop {
    object-position: center 5%; /* Focus heavily on the top of the head/shoulders */
    transform: scale(1.4); /* Massive zoom to push bottom watermarks completely out of frame */
}

.team-profile:hover .profile-img {
    transform: scale(1.05);
    -webkit-filter: grayscale(0%) contrast(1.1);
    filter: grayscale(0%) contrast(1.1);
}

.team-profile:hover .massamba-crop {
    transform: scale(1.45); /* Adjust hover scale for the extreme crop */
}

.profile-content {
    background: var(--surface-color);
    padding: 40px;
    width: 80%;
    margin-top: -80px;
    position: relative;
    z-index: 2;
    margin-left: 10%;
}

.profile-content .role {
    color: var(--accent-color);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.profile-content h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.profile-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ==========================================================================
   Coach Quotes
   ========================================================================== */
.coach-quote {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 600;
    color: var(--accent-color);
    margin: 20px 0 25px 0;
    padding-left: 20px;
    border-left: 3px solid var(--accent-color);
    line-height: 1.3;
}

/* ==========================================================================
   Services Section (List instead of generic cards)
   ========================================================================== */
.service-list {
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.service-item {
    display: flex;
    align-items: flex-start;
    padding: 50px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
}

.service-item:hover {
    padding-left: 20px;
    border-bottom-color: var(--accent-color);
}

.service-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-secondary);
    width: 100px;
    flex-shrink: 0;
}

.service-details h3 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-details p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
}

/* ==========================================================================
   SVG World Map
   ========================================================================== */
.world-map-wrapper {
    margin-top: 60px;
    border: 1px solid rgba(229, 193, 88, 0.15);
}

.world-svg {
    width: 100%;
    display: block;
}

.landmass {
    fill: #16161a;
    stroke: rgba(229, 193, 88, 0.25);
    stroke-width: 0.8;
}

.dot {
    fill: var(--accent-color);
    filter: drop-shadow(0 0 4px rgba(229,193,88,0.8));
}

.pulse {
    fill: none;
    stroke: var(--accent-color);
    stroke-width: 1;
    opacity: 0;
    animation: svg-pulse 2.5s ease-out infinite;
}

.loc-group:nth-child(2) .pulse  { animation-delay: 0.2s; }
.loc-group:nth-child(3) .pulse  { animation-delay: 0.5s; }
.loc-group:nth-child(4) .pulse  { animation-delay: 0.8s; }
.loc-group:nth-child(5) .pulse  { animation-delay: 1.0s; }
.loc-group:nth-child(6) .pulse  { animation-delay: 1.2s; }
.loc-group:nth-child(7) .pulse  { animation-delay: 1.5s; }
.loc-group:nth-child(8) .pulse  { animation-delay: 0.3s; }
.loc-group:nth-child(9) .pulse  { animation-delay: 0.7s; }
.loc-group:nth-child(10) .pulse { animation-delay: 1.1s; }
.loc-group:nth-child(11) .pulse { animation-delay: 1.8s; }
.loc-group:nth-child(12) .pulse { animation-delay: 0.4s; }
.loc-group:nth-child(13) .pulse { animation-delay: 0.9s; }
.loc-group:nth-child(14) .pulse { animation-delay: 0.6s; }
.loc-group:nth-child(15) .pulse { animation-delay: 1.3s; }
.loc-group:nth-child(16) .pulse { animation-delay: 1.6s; }
.loc-group:nth-child(17) .pulse { animation-delay: 1.9s; }

@keyframes svg-pulse {
    0%   { r: 4;  opacity: 0.8; }
    100% { r: 18; opacity: 0; }
}

.loc-label {
    font-family: var(--font-heading);
    font-size: 7px;
    fill: var(--accent-color);
    text-anchor: middle;
    letter-spacing: 0.5px;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .world-map-wrapper { margin-top: 40px; }
    .loc-label { font-size: 5px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.minimal-footer {
    padding: 100px 0 40px 0;
    background: var(--surface-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.footer-brand h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 5px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-align: center;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-in { opacity: 0; transform: translateY(20px); transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.slide-up { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.slide-up.visible { opacity: 1; transform: translateY(0); }

.slide-in-left { opacity: 0; transform: translateX(-40px); transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.slide-in-left.visible { opacity: 1; transform: translateX(0); }

.slide-in-right { opacity: 0; transform: translateX(40px); transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.slide-in-right.visible { opacity: 1; transform: translateX(0); }

/* ==========================================================================
   Hamburger & Mobile Menu
   ========================================================================== */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    transform-origin: center;
    margin-bottom: 5px;
}

.hamburger span:last-child {
    margin-bottom: 0;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    z-index: 150;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu ul li {
    margin: 20px 0;
}

.mobile-menu ul li a {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    transition: color 0.3s;
}

.mobile-menu ul li a:hover {
    color: var(--accent-color);
}

/* ==========================================================================
   Responsive — Tablet (max 900px)
   ========================================================================== */
@media (max-width: 900px) {
    .section-padding { padding: 100px 0; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .team-container { grid-template-columns: 1fr; gap: 60px; }
    .hero-title { font-size: clamp(3rem, 8vw, 5rem); }
    .hero-title .indent { margin-left: 0; }
    .service-item { flex-direction: column; gap: 15px; }
    .service-details h3 { font-size: 2rem; }
    .footer-content { flex-direction: column; gap: 40px; text-align: center; }
    .profile-content { width: 90%; margin-left: 5%; }
    .team-profile[style*="margin-top: 100px"] { margin-top: 0 !important; }
}

/* ==========================================================================
   Responsive — Mobile (max 768px)
   ========================================================================== */
@media (max-width: 768px) {
    /* Nav */
    .nav-links { display: none !important; }
    .hamburger { display: flex; }
    .navbar { mix-blend-mode: normal !important; background: rgba(7,7,8,0.9); padding: 20px 5%; }

    /* Hero */
    .section-padding { padding: 80px 0; }
    .editorial-title { font-size: 2.5rem; }
    .hero-content { max-width: 100%; width: 100%; }
    .hero-title { font-size: clamp(2rem, 9vw, 3.5rem); }
    .hero-title .indent { margin-left: 0 !important; }
    .hero-subtitle { font-size: 0.7rem; letter-spacing: 4px; margin-top: 1.2rem; }
    .hero-subtitle { font-size: 0.75rem; letter-spacing: 5px; margin-top: 1.5rem; }

    /* About */
    .about-image-large { height: 40vh; }

    /* Team */
    .profile-image-wrapper { height: 420px; }
    .profile-content { width: 92%; margin-left: 4%; margin-top: -50px; padding: 25px; }
    .profile-content h3 { font-size: 1.8rem; }
    .massamba-crop { transform: scale(1.2); }
    .team-profile:hover .massamba-crop { transform: scale(1.25); }

    /* Coaches */
    .coach-quote { font-size: 1.1rem; }

    /* Services */
    .service-number { width: 60px; font-size: 1.1rem; }
    .service-details h3 { font-size: 1.5rem; }
    .service-item { padding: 30px 0; }

    /* Footer */
    .minimal-footer { padding: 60px 0 30px; }
    .footer-brand h2 { font-size: 1.5rem; }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 20px; }
}

/* ==========================================================================
   Touch devices — photos in color by default (no hover on mobile)
   ========================================================================== */
@media (hover: none) {
    .profile-img {
        -webkit-filter: grayscale(0%) contrast(1.05) !important;
        filter: grayscale(0%) contrast(1.05) !important;
    }
}

/* ==========================================================================
   Responsive — Small phones (max 480px)
   ========================================================================== */
@media (max-width: 480px) {
    .editorial-title { font-size: 2rem; }
    .hero-title { font-size: clamp(2.2rem, 12vw, 3.5rem); }
    .profile-image-wrapper { height: 320px; }
    .profile-content h3 { font-size: 1.5rem; }
    .service-details h3 { font-size: 1.2rem; }
    .mobile-menu ul li a { font-size: 1.8rem; }
}

/* ==========================================================================
   Global Network & Map
   ========================================================================== */
.network-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 50px 0;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-top: 10px;
    display: block;
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 500px;
    margin: 0 auto 60px;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/e/ec/World_map_blank_without_borders.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: invert(1) brightness(2) opacity(0.15);
    z-index: 1;
    pointer-events: none;
}

.pin {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--accent-color);
    border-radius: 50%;
    z-index: 2;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(229,193,88,0.5);
}

.pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { width: 12px; height: 12px; opacity: 0.8; }
    100% { width: 45px; height: 45px; opacity: 0; }
}

.pin::before {
    content: attr(data-label);
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--surface-color);
    color: var(--text-primary);
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, bottom 0.3s;
    border: 1px solid rgba(229,193,88,0.3);
}

.pin:hover::before {
    opacity: 1;
    bottom: 30px;
}

/* Rough Map Coordinates */
.europe-1 { top: 30%; left: 49%; } /* Lux */
.europe-2 { top: 27%; left: 53%; } /* Poland */
.europe-3 { top: 23%; left: 54%; } /* Lithuania */
.europe-4 { top: 31%; left: 55%; } /* Romania */
.europe-5 { top: 18%; left: 52%; } /* Sweden */
.europe-6 { top: 33%; left: 51%; } /* Italy */
.europe-7 { top: 38%; left: 57%; } /* Cyprus */
.europe-8 { top: 20%; left: 60%; } /* Russia */
.europe-9 { top: 33%; left: 47%; } /* France */
.europe-10 { top: 31%; left: 49%; } /* Belgium */
.asia-1 { top: 42%; left: 61%; } /* Saudi Arabia */
.asia-2 { top: 48%; left: 78%; } /* Vietnam */
.africa-1 { top: 60%; left: 53%; } /* DRC */
.africa-2 { top: 48%; left: 44%; } /* Senegal */

/* Marquee */
.marquee-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    background: var(--surface-color);
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 50px;
}

.marquee {
    display: flex;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.marquee span {
    flex-shrink: 0;
    padding-right: 50px;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.15);
    letter-spacing: 5px;
    white-space: nowrap;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .network-stats { flex-direction: column; gap: 30px; }
    .map-container { height: 250px; }
    .europe-1 { top: 30%; left: 50%; }
    .europe-2 { top: 25%; left: 54%; }
    .europe-3 { top: 20%; left: 55%; }
    .europe-4 { top: 33%; left: 56%; }
    .europe-5 { top: 18%; left: 52%; }
    .europe-6 { top: 35%; left: 51%; }
    .europe-7 { top: 39%; left: 57%; }
    .europe-8 { top: 15%; left: 62%; }
    .europe-9 { top: 32%; left: 47%; }
    .europe-10 { top: 30%; left: 49%; }
    .asia-1 { top: 47%; left: 62%; }
    .asia-2 { top: 50%; left: 78%; }
    .africa-1 { top: 65%; left: 53%; }
    .africa-2 { top: 50%; left: 42%; }
    .marquee span { font-size: 1.5rem; }
}
